Codex, Pi, and Others
Could not copy markdown source body. Please use "view as markdown".
fp init # interactive — pick "Standard AGENTS.md" at the promptfp init --agent standard # equivalent, non-interactivefp init --agent codex # alias for `standard`--agent standard writes FP_AGENTS.md with lightweight fp workflow rules and ensures
AGENTS.md @-includes it. Agents that read AGENTS.md (Codex, Gemini,
Mistral, Cursor, Pi, and many others) will load the rules on every session without further
configuration.
--agent codexis an alias forstandard
To add or refresh AGENTS.md later without re-running fp init:
fp agent setup standard # idempotentfp agent setup codex # alias for `standard`Workflow primers
Section titled “Workflow primers”Instead of shipping skill files, fp bundles the skills in the cli itself.
All of these primers ship with the CLI:
fp guide plan # Planning skillfp guide implement # Implementation skillfp guide brainstorm # Brainstorm authoring (alias: bs)fp guide extension # Extension authoring (aliases: extensions, ext)Output is markdown. Ask your agent to look in the guides, or print them to skill files if you so desire.
Pass --references <name> to surface companion material, for
example fp guide brainstorm --references mermaid.
Working with fp
Section titled “Working with fp”Once FP_AGENTS.md is in place, the workflow is identical to Claude Code.
Some agents may need the primer text inlined or referenced explicitly:
Use the plan primer printed by `fp guide plan` to plan this featureFor the full workflow reference, see the Claude Code Workflow guide. The plan/implement loop is the same regardless of which agent you use.
If you want to build your own custom workflows, you should visit the Extensions docs asap.