Load fp context and pick a task to work on
Loads fp context and guides you through task selection and management workflow.
/plugin marketplace add fiberplane/claude-code-plugins/plugin install fp@fiberplane-claude-code-pluginswhich fp > /dev/null 2>&1 && echo "✓ Yes" || echo "✗ No"test -d .fp && echo "✓ Yes" || echo "✗ No"Based on the environment check above, follow ONE of these paths:
If fp CLI is NOT installed, inform the user:
The
fpCLI is not installed. To install it:curl -fsSL https://setup.fiberplane.com/install.sh | sh -sAfter installation, run
/fpagain.
Do NOT proceed further.
If fp CLI is installed but .fp directory doesn't exist, ask the user:
This project hasn't been initialized with fp. Would you like to initialize it?
If yes, run fp init and then proceed to Path C.
Then run these commands to load context:
fp tree # Show issue hierarchy
fp context --current --format compact # Current work (if any)
fp issue list --status todo # Available tasks
fp issue list --status in-progress # Active tasks
fp issue list --status done # Completed tasks
Then use AskUserQuestion to ask the user what they want to do:
Based on selection:
fp context --currentfp issue update --status in-progress <id>, then load context with fp context <id>fp issue createfp-planning skill to help break down the work into a hierarchy of issuesfp-review skill to analyze recent commits and assign them to issuesAfter task is selected, use TodoWrite to create a todo list based on the issue description.
Once working on a task:
fp comment <id> "message" - Log progress (do this frequently!)fp issue update --status done <id> - Mark completefp issue update --priority high <id> - Set priority (low/medium/high/critical)fp issue diff <id> - See changes since task startedfp issue files <id> - List changed filesfp issue assign <id> - Assign current commit to issue (for manual commit tracking)fp context <id> - Reload issue contextfp review to open web UI for reviewing uncommitted changesEnd of session:
fp-review skill to assign commits to correct issuesSee fp-workflow, fp-planning, and fp-review skills for detailed patterns.