Installation
Quick Install
Section titled “Quick Install”Install fp with a single command:
curl -fsSL https://setup.fp.dev/install.sh | sh -sThis downloads the latest fp binary for your platform and adds it to your path.
Requirements
Section titled “Requirements”- macOS (Apple Silicon or Intel) or Linux (x86_64)
- Git — fp tracks commits alongside issues
- Claude Code — for agent-driven workflows (optional but recommended)
Verify Installation
Section titled “Verify Installation”fp --versionInitialize a Project
Section titled “Initialize a Project”Navigate to your project directory and run:
cd your-projectfp initfp init creates a .fp/ directory with project configuration and offers to run fp setup claude for Claude Code integration.
For non-interactive setup (CI, scripts):
fp init --prefix FP --yesConfigure Claude Code Integration
Section titled “Configure Claude Code Integration”Claude integration is managed directly by fp — no marketplace plugin required:
fp setup claudeThis sets up:
- Skills in
.claude/skills/for planning, implementing, and reviewing - Hook in
.claude/settings.local.jsonfor automatic issue detection - FP_CLAUDE.md with workflow instructions for the agent
- CLAUDE.md reference to
@FP_CLAUDE.md
For non-interactive setup:
fp setup claude --yesWhat Gets Created
Section titled “What Gets Created”your-project/├── FP_CLAUDE.md # Agent workflow instructions├── CLAUDE.md # Updated with @FP_CLAUDE.md reference└── .fp/ ├── config.toml # Project config (issue prefix, etc.) └── integrations.json # Integration state and managed resourcesIssue data is stored globally at ~/.fiberplane/projects/<project-name>/.
Next Steps
Section titled “Next Steps”Head to the Quick Start to create your first issues and learn the fp workflow.