Workflows
23 recipes, filter by use case, license, or difficulty.
One AGENTS.md, no drift: prove CLAUDE.md is a real symlink and the generated files are in sync
Keep one AGENTS.md as the single source of agent rules, symlink CLAUDE.md to it, and prove with CI that the symlink is committed as a symlink (not a Windows-materialised copy) and that any generated per-tool file byte-matches a fresh regeneration from the source, so nothing silently drifts.
Self-host CodeWiki on private code: validate the config before you spend tokens
Configure the open-source FSoft CodeWiki to generate architecture-aware docs on your own machine (so private code never leaves it), and validate the provider and model config before a full, token-spending run.
codebase-memory-mcp: wire the knowledge graph, stop re-reading files
Point your MCP client at a codebase-memory-mcp server so your coding agent queries the repo's knowledge graph instead of re-reading files into context on every question, cutting token spend without changing answer quality.
Kilo Code: add an MCP tool and bind it to one mode
Enable an MCP server's tools only on the mode that needs it (a researcher), so its tool definitions don't load into every conversation and burn tokens.
Kilo Code: a mode that can only edit the files you let it
Build a docs mode that can read the whole repo but only write to Markdown, using a fileRegex restriction on the edit group.
Kilo Code: ship a big feature as isolated subtasks with Orchestrator
Define the orchestrator's delegate modes (architect, code, debug) so a large task runs as isolated subtasks, each in its own clean context.
OpenCode: add an MCP tool, then lock it to one agent
Plug in an MCP server (live docs via Context7) but disable it globally and switch it on only for the one agent that needs it, so it does not burn tokens every turn.
OpenCode: run it headless in scripts and CI, with JSON output
Use opencode run non-interactively with --format json and a read-only agent so a pipeline gets machine-readable events and can never edit or execute.
OpenCode: a reviewer subagent gated to exactly the git commands you allow
Define a Markdown agent whose bash access is scoped per command (git diff and grep yes, everything else no) and that can never write.
OpenCode: a model-routed team, cheap to plan, strong to build
Give each agent its own model so planning and review run on a cheap model and only the build runs on your best one.
OpenCode: a read-only Plan pass that cannot touch your files
Separate think from touch: lock the plan agent to read-only (edit + bash deny) so it proposes before it edits, then Tab into build to execute.
Repomix + Fable 5: Pack a Repo for a Long-Context Review
Flatten an entire codebase into a single file and let Fable 5 hold all of it at once for a whole-system review.
OpenHands + Fable 5: Autonomous Issue to Pull Request
Hand Fable 5 a GitHub issue and let OpenHands plan, edit, run tests, and open a PR in a Docker sandbox.
Aider + Fable 5: Codebase-Wide Migrations from Your Terminal
Point Fable 5 at a repo and let Aider refactor across hundreds of files as real git commits you can undo.
Cline + Fable 5: Build or Fix Something Without Writing Code
Use a coding agent inside VS Code that builds and fixes code while you just describe what you want, powered by Fable's stamina.
Codex: A Markdown Folder to a Live Docusaurus Docs Site
Drop a folder of markdown into a Docusaurus project and have Codex assemble the site, fix broken links, then deploy a Vercel preview.
Codex: A Data File to a Live Next.js + Recharts Dashboard
Point Codex at a JSON file and have it build a Next.js + Recharts dashboard, then deploy a Vercel preview and return the link.
Codex: Screenshot to a Live Vite + React Landing Page
Hand Codex a screenshot or a brief and have it build a responsive Vite + React landing page, then deploy a Vercel preview and return the URL.
Agent Review Gate: a Schema-Forced Approve or Block in CI
Run a coding agent as a read-only reviewer that returns a schema-forced approve/block verdict, and let CI fail the merge on block.
Self-Healing Test Loop: an Agent that Fixes Until Green
Wrap a coding agent in a bounded loop that re-runs your tests and fixes the code until the suite passes or it runs out of attempts.
Pi: The Reusable Team Skill
Encode a multi-step task once as an Agent Skill your whole team installs.
Pi: The Reusable Prompt Template
Turn a prompt you retype into a permanent Pi slash command.
Pi: The Safe Diff Reviewer
A code reviewer that reads your staged diff and structurally cannot modify it.