···11+<!-- DO NOT EDIT .fp/FP_CLAUDE.md: This file is managed by fp. Run 'fp setup claude' to update. -->
22+33+## FP Issue Tracking
44+55+This project uses **fp** for issue tracking. AI agents must follow these rules.
66+77+### Task Tracking
88+99+- Use `fp issue` for all task tracking - do not use built-in todo tools
1010+- Create subissues with `--parent` flag - never use markdown checklists (`- [ ]`)
1111+- Break work into atomic tasks (1-3 hours each)
1212+1313+### Work Session Flow
1414+1515+1. `fp issue list --status todo` - find available work
1616+2. `fp issue update --status in-progress <id>` - claim it before starting
1717+3. Work and commit frequently
1818+4. `fp comment <id> "progress..."` - log at every milestone
1919+5. `fp issue assign <id> --rev <commit>` - attach commits to the issue
2020+6. `fp issue update --status done <id>` - mark complete when finished
2121+2222+### Commit Discipline
2323+2424+- Commit early and often with descriptive messages
2525+- Always commit before session ends
2626+- Always commit before context compaction
2727+2828+### Progress Logging
2929+3030+- Run `fp comment <id> "..."` at every milestone
3131+- Log after significant commits
3232+- Always leave a final comment before ending session
3333+3434+### Commands Reference
3535+3636+```bash
3737+fp tree # View issue hierarchy
3838+fp issue list --status X # Filter by status (todo/in-progress/done)
3939+fp issue create --title "..." --parent X
4040+fp issue update --status X <id>
4141+fp issue assign <id> --rev X # Attach commit(s) to issue
4242+fp comment <id> "message"
4343+fp issue diff <id> # See changes since task started
4444+fp context <id> # Load full issue context
4545+```