48 lines
1015 B
Markdown
48 lines
1015 B
Markdown
# Session Logs
|
|
|
|
This directory contains logs from development sessions. Use these to track progress and maintain context between sessions.
|
|
|
|
## File Naming Convention
|
|
|
|
```
|
|
YYYY-MM-DD-session-brief-description.md
|
|
```
|
|
|
|
Example: `2025-06-13-audio-system-implementation.md`
|
|
|
|
## Template for Session Logs
|
|
|
|
```markdown
|
|
# Session Log - [Date] - [Brief Description]
|
|
|
|
## Session Goals
|
|
- [Primary objective]
|
|
- [Secondary objectives]
|
|
|
|
## Accomplished
|
|
- [What was completed]
|
|
- [Decisions made]
|
|
- [Problems solved]
|
|
|
|
## Challenges
|
|
- [Issues encountered]
|
|
- [Workarounds used]
|
|
- [Items needing follow-up]
|
|
|
|
## Next Session
|
|
- [Top priority task]
|
|
- [Preparation needed]
|
|
|
|
## Notes
|
|
- [Technical insights]
|
|
- [Performance observations]
|
|
- [Ideas for future]
|
|
```
|
|
|
|
## Session Log Maintenance
|
|
|
|
- Create a new log file for each development session
|
|
- Keep entries concise but specific
|
|
- Focus on decisions and discoveries rather than detailed code
|
|
- Archive logs monthly to prevent clutter
|
|
- Use logs to identify patterns in development workflow |