This directory contains category-based tracking files for team visibility and development continuity.
These files provide persistent tracking across development sessions and team members, ensuring:
- Visibility: Current work status across all categories
- Handoffs: Easy transitions between developers
- Planning: Historical context for future work
- Reviews: Complete picture of changes
features.md- New functionality, enhancements, capabilitiesbugfixes.md- Bug resolutions, corrections, patchesrefactoring.md- Code improvements without behavior changesdocumentation.md- Docs updates, README changesinfrastructure.md- Build, CI/CD, deployment changesperformance.md- Optimization work, performance improvements
- Choose the appropriate category file
- Add a new entry using the template format
- Set status to "In Progress"
- Add initial task list
- Update task checkboxes as you complete work
- Add files to the "Files Modified" section
- Document important decisions in "Notes"
- Mark all tasks as complete
- Change status to "Completed"
- Add final summary of what was accomplished
## [YYYY-MM-DD] [Brief Description]
**Status**: [In Progress | Completed | Cancelled]
**Developer**: [Name/Username]
**Related Issues**: [#123, #456]
### Summary
Brief description of the work being done.
### Tasks
- [x] Task 1 description
- [x] Task 2 description
- [ ] Task 3 description
### Files Modified
- `path/to/file1.go` - Description of changes
- `path/to/file2.go` - Description of changes
### Notes
Any important decisions, blockers, or context for future developers.
---- Be specific: Use descriptive titles and detailed task descriptions
- Update frequently: Keep files current as work progresses
- Link issues: Reference GitHub issues when applicable
- Document decisions: Record why certain approaches were chosen
- Team awareness: Check existing entries before starting similar work
This system complements the todo_write tool usage:
- Use
todo_writefor immediate session planning and tracking - Use tracking files for persistent, team-visible documentation
- Update both as work progresses for maximum visibility