fp is an agent-native issue tracking tool for [Claude Code](https://docs.anthropic.com/en/docs/claude-code) and beyond. It works from the terminal, integrates directly with your coding agents, and stores everything locally.

## Quick Start

Install fp and initialize in your project:

```bash
curl -fsSL https://setup.fp.dev/install.sh | sh -s
cd your-project
fp init
```

Then ask your coding agent to plan work:

> "Plan out the authentication feature"

The agent creates a hierarchy of issues automatically:

```
FP-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 tests
```

[Get started →](/docs/getting-started/installation)

## Quick Links

- [Installation](/docs/getting-started/installation) — install fp in under a minute
- [CLI Reference](/docs/cli/overview) — full command reference
- [Mac App](/docs/mac/overview) — native desktop companion
- [Claude Code Workflow](/docs/guides/claude-code-workflow) — agent best practices
