Quick Start
[view as markdown]
Could not copy markdown source body. Please use "view as markdown".
This guide walks through the core fp workflow: creating issues, building a hierarchy, and tracking progress.
Create Issues
Section titled “Create Issues”fp issue create --title "Add authentication"fp generates a unique ID (e.g., FP-abcd) and creates the issue with todo status.
Build a Hierarchy
Section titled “Build a Hierarchy”Break work into smaller tasks with --parent:
fp issue create --title "Design auth flow" --parent FP-abcdfp issue create --title "Implement OAuth provider" --parent FP-abcdfp issue create --title "Add session management" --parent FP-abcdfp issue create --title "Write tests" --parent FP-abcdView the tree:
fp treeFP-abcd [todo] Add authentication├── FP-efgh [todo] Design auth flow├── FP-ijkl [todo] Implement OAuth provider├── FP-mnop [todo] Add session management└── FP-qrst [todo] Write testsWork on an Issue
Section titled “Work on an Issue”Claim the issue:
fp issue update --status in-progress FP-ijklLog progress as you go:
fp comment FP-ijkl "Implemented Google OAuth provider"fp comment FP-ijkl "Added token refresh logic"Mark complete:
fp issue update --status done FP-ijklThe Agent Workflow
Section titled “The Agent Workflow”When Claude Code (or another agent) is configured, you can simply ask:
“Plan out the authentication feature”
The agent creates a hierarchy of issues automatically using fp.
“Work on FP-ijkl”
The agent claims the issue, works on it, logs progress with comments, and marks it done.
If you want to customize issue properties, or the workflow, take a look at the Extensions docs.
Next Steps
Section titled “Next Steps”- CLI Overview — Full command reference
- Issue Tracking — Deep dive into issues, comments, and context
- Claude Code Workflow — Agent workflow best practices