FAQ
manifest-dev is a Claude Code plugin with 76 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes auto-optimize-prompt, compress-prompt, harden-task-file. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
> /plugin marketplace add doodledood/manifest-dev> /plugin install manifest-dev@manifest-dev
Repo: doodledood/manifest-dev
Not broken code โ wrong code. It compiles. The tests pass. And it solves a problem you don't have, because the agent started typing before it understood what you meant.
/figure-out is the pushback. An adversarial thinking partner. It digs through your codebase on its own and presses on the question that decides the work. It refuses to touch code until you both know what "right" is, holds its position under pushback, and changes its mind when the evidence changes.
npx skills add doodledood/manifest-dev --skill figure-out
/figure-out why do half my background jobs silently stall?
A minute in, it has read your code and come back with the question you hadn't thought to ask. That first question is the fastest way to find out whether this tool is for you.
Every skill here works standalone. Take what you want. No framework to adopt, nothing else to install. If you never run another command from this repo, /figure-out still earns its keep.
Everyone's writing loops now: the shift from prompting an agent by hand to designing the system that prompts it. But a loop pointed at a shallow understanding just ships the wrong thing faster. And the loop vouches for itself. It runs, declares victory on a confident summary. You find out in review.
The leverage lives upstream of the while: understand the problem before anything is built, define what "done" means, then verify it independently. That's the rest of manifest-dev: loop engineering, with a stop condition you can trust.
manifest-dev puts understanding first, adversarially, before /define writes anything down. Most spec-driven tools generate the spec straight from your description, so the spec runs only as deep as what you already said.
manifest-dev rides on top of whatever runs your loop, including your host's own /loop and /goal, and leaves scheduling jobs and managing worktrees to that runtime. It supplies the part those primitives leave to you: what to verify, and how to know you're actually done.
The one-skill door is above. The full system installs as a plugin:
# Claude Code (primary)
/plugin marketplace add doodledood/manifest-dev
/plugin install manifest-dev@manifest-dev
For OpenCode, Codex CLI, and Pi, see Multi-CLI Support below.
Then work through the three beats:
/figure-out <topic or problem> # 1. Figure it out โ understand before acting
/define <what you want to build> # 2. Encode what you'd accept into a manifest
/do <manifest-path> # 3. Execute and verify every criterion inline
/do <manifest-path> --verification per-gate # opt in to one verifier per gate
/do <manifest-path> --verification self # opt in to executor verification
/auto <what you want to build> # Or run all three, chained, no approval gates
/define takes the understanding you reached and encodes it into a manifest, auto-invoking /figure-out first if you skipped ahead. /do implements toward the manifest and can't call it done until every criterion has fresh evidence under the selected mode, keeping a default-on execution log of deviations and dead ends as it goes (--no-log skips it). The default consolidated mode has one independent verifier evaluate the outstanding gate set each round โ one coherent view, one artifact read; opt-in per-gate runs one fresh independent verifier per gate for maximum rigor, and opt-in self trades independence for the lowest execution cost. --verifier-model <model> optionally selects the independent verifier model and is invalid with self. /auto chains all three with no waiting and forwards the same execution flags without putting them in the manifest.
For unattended runs of /do or /auto (the recommended way to run both), set your host's goal-setting or continuation capability to the completion contract those skills print; see the manifest-dev plugin README for the full contract text and why it's shaped that way.
Babysit an existing PR through review without any manifest-dev setup: /babysit-pr [pr-url]. Details in the manifest-dev-tools README.
Pass --canvas to /figure-out for a refreshable, browser-rendered map of the session alongside the chat, readable on any screen: the crux tree with the question you're standing on marked on it, what's still open around it, and how much ground is still unsurveyed. Annotate it in place and hand your notes back in one paste.
flowchart TD
A["/figure-out 'problem'"] --> B["Shared understanding"]
B --> C["/define"]
C --> D["Manifest = what you'd accept"]
D --> E["/do manifest.md"]
E --> F{"For each Deliverable"}
F --> G["Implement toward ACs"]
G --> H["Evaluate gates under selected mode"]
H -->|any FAIL| I["Fix everything the round found"]
I -->|re-verify per head| H
H -->|all PASS| J["/done"]
F -->|risk surfaces| K["Consult trade-offs, adjust approach"]
K -->|reachable| F
K -->|stuck| L["/escalate"]
classDef gate fill:#15803D,stroke:#0F172A,color:#FFFFFF;
classDef done fill:#0F172A,stroke:#15803D,color:#FFFFFF;
classDef stop fill:#B45309,stroke:#0F172A,color:#FFFFFF;
class H gate;
class J done;
class L stop;
FAIL routes back to a fix; a real blocker (amber) routes to /escalate.
Your first pass lands closer to done, and the fix loop cleans up what's left on its own. Writing acceptance criteria also keeps you engaged with your own code. That matters more the more you lean on the agent, right when the codebase starts to feel like someone else wrote it.
[!TIP] Resist the urge to jump in mid-
/do. It won't nail everything first try; that's expected. You invested in understanding the problem, so let the loop run.
You've burned out on the weekly "game-changing AI coding tool" cycle and want something grounded that works. You're an experienced developer who cares more about output quality than raw speed, and you've learned the hard way that AI code needs guardrails more than cheerleading. If you count every cent per token, or want the fastest possible output regardless of what it costs you in review, this isn't your thing.
The Claude Code plugins are the source of truth. The same components run in OpenCode, Codex CLI, and Pi through native per-CLI distributions under dist/, all carrying the same topology-neutral gate schema and run-level verification modes.
| CLI | Install | Details |
|---|---|---|
| Claude Code | /plugin install manifest-dev@manifest-dev | Primary target |
| OpenCode | clone + one config line | README |
| Codex CLI | codex plugin marketplace add doodledood/manifest-dev | README |
| Pi | pi install git:github.com/doodledood/manifest-dev@main | README |
Individual skills also install into 18+ agents (Cursor, Copilot, Cline, and more) via npx skills add doodledood/manifest-dev --skill <name>.
Each linked README covers that CLI's install, upgrade, and uninstall path. Architecture decisions behind the multi-CLI design are indexed in docs/adr/.
| Plugin | Description |
|---|---|
manifest-dev | The core workflow (/figure-out, /define, /do, /done, /escalate, /auto, /figure-out-team) and the verification skills, including review-code's per-dimension quality gates. |
manifest-dev-tools | Tools alongside the workflow: /review-pr, /babysit-pr, /walk-pr for PR collaboration, plus /prompt-engineering, /handoff, and /teach-me. |
Full plugin and skill catalogs live in claude-plugins/README.md and each plugin's own README.
# Setup (first time)
./scripts/setup.sh
source .venv/bin/activate
# Lint, format, typecheck
ruff check --fix claude-plugins/ && black claude-plugins/ && mypy
After changing plugin components, run /sync-tools to regenerate the dist/ distributions.
See CONTRIBUTING.md for plugin development guidelines.
MIT
Built by developers who understand LLM limitations, and design around them.
Follow along: @aviramkofman
.agents/
plugins/
marketplace.json
skills/
auto
auto-optimize-prompt
babysit-pr
check-pr
compress-prompt
define
do
done
escalate
figure-out
figure-out-team
handoff
harden-task-file
learn-from-session
optimize-prompt-token-efficiency
poll-slack
prompt-engineering
review-code
review-pr
review-prompt
sync-claude-code-plugins
sync-tools
teach-me
walk-pr
.claude/
.claude-plugin/
marketplace.json
.claude-code-plugins-sync.json
agents/
prompt-compression-verifier.md
prompt-token-efficiency-verifier.md
settings.json
skills/
auto
auto-optimize-prompt/
SKILL.md
babysit-pr
check-pr
compress-prompt/
SKILL.md
define
do
done
escalate
figure-out
figure-out-team
handoff
harden-task-file/
SKILL.md
learn-from-session/
SKILL.md
optimize-prompt-token-efficiency/
SKILL.md
poll-slack
prompt-engineering
review-code
review-pr
review-prompt
sync-claude-code-plugins/
SKILL.md
sync-tools/
references/
codex-cli.md
opencode-cli.md
pi-cli.md
SKILL.md
teach-me
walk-pr
.gitignore
AGENTS.md
assets/
logo.png
claude-plugins/
manifest-dev/
manifest-dev-tools/
.claude-plugin/
plugin.json
README.md
skills/
babysit-pr/
SKILL.md
handoff/
SKILL.md
prompt-engineering/
references/
agents.md
knowledge-skills.md
metaprompting.md
patterns.md
review.md
skills.md
system-prompts.md
SKILL.md
review-pr/
references/
JUDGMENT_PASS.md
LOOP.md
MANIFEST_MODE.md
SKILL.md
review-prompt/
SKILL.md
teach-me/
SKILL.md
walk-pr/
assets/
canvas-reference.html
references/
CANVAS_MODE.md
SKILL.md
.claude-plugin/
plugin.json
README.md
skills/
auto/
SKILL.md
check-pr/
SKILL.md
define/
references/
BABYSIT_MODE.md
MULTI_REPO.md
WRITING-REFERENCE.md
SKILL.md
tasks/
BLOG.md
BUG.md
CODING.md
DOCUMENT.md
FEATURE.md
PLANNING.md
PR_LIFECYCLE.md
PROMPTING.md
REFACTOR.md
references/
MAP_CONVENTION.md
research/
agentic-systems.md
ai-failure-modes.md
epistemology.md
fact-checking.md
information-science.md
intelligence-analysis.md
README.md
systematic-reviews.md
research/
RESEARCH.md
sources/
SOURCE_WEB.md
TECH_DESIGN.md
WRITING.md
do/
references/
consolidated-verification.md
LOG.md
per-gate-verification.md
self-verification.md
SKILL.md
done/
SKILL.md
escalate/
SKILL.md
figure-out/
figure-out-team/
SKILL.md
assets/
canvas-template.html
references/
ADR_FORMAT.md
autonomous.md
CANVAS.md
LOG.md
SCRATCH.md
slack-mrkdwn.md
TASTE.md
team.md
WITH_DOCS.md
SKILL.md
tasks/
BUG.md
CODING.md
DIAGNOSIS.md
FEATURE.md
PLANNING.md
REFACTOR.md
RESEARCH.md
TECH_DESIGN.md
poll-slack/
SKILL.md
review-code/
references/
change-intent.md
code-bugs.md
code-design.md
code-maintainability.md
code-simplicity.md
code-testability.md
context-file-adherence.md
contracts.md
docs.md
operational-readiness.md
prose-value.md
test-quality.md
type-safety.md
SKILL.md
PLUGIN_TEMPLATE/
.claude-plugin/
plugin.json
README.md
skills/
example/
SKILL.md
README.md
CLAUDE.md
CONTEXT.md
CONTRIBUTING.md
dist/
codex/
.sync-meta.json
plugins/
manifest-dev/
manifest-dev-tools/
.codex-plugin/
plugin.json
skills/
babysit-pr/
SKILL.md
handoff/
SKILL.md
prompt-engineering/
references/
agents.md
knowledge-skills.md
metaprompting.md
patterns.md
review.md
skills.md
system-prompts.md
SKILL.md
review-pr/
references/
JUDGMENT_PASS.md
LOOP.md
MANIFEST_MODE.md
SKILL.md
review-prompt/
SKILL.md
teach-me/
SKILL.md
walk-pr/
assets/
canvas-reference.html
references/
CANVAS_MODE.md
SKILL.md
.codex-plugin/
plugin.json
skills/
auto/
SKILL.md
check-pr/
SKILL.md
define/
references/
BABYSIT_MODE.md
MULTI_REPO.md
WRITING-REFERENCE.md
SKILL.md
tasks/
BLOG.md
BUG.md
CODING.md
DOCUMENT.md
FEATURE.md
PLANNING.md
PR_LIFECYCLE.md
PROMPTING.md
REFACTOR.md
references/
MAP_CONVENTION.md
research/
agentic-systems.md
ai-failure-modes.md
epistemology.md
fact-checking.md
information-science.md
intelligence-analysis.md
README.md
systematic-reviews.md
research/
RESEARCH.md
sources/
SOURCE_WEB.md
TECH_DESIGN.md
WRITING.md
do/
references/
consolidated-verification.md
LOG.md
per-gate-verification.md
self-verification.md
SKILL.md
done/
SKILL.md
escalate/
SKILL.md
figure-out/
figure-out-team/
SKILL.md
assets/
canvas-template.html
references/
ADR_FORMAT.md
autonomous.md
CANVAS.md
LOG.md
SCRATCH.md
slack-mrkdwn.md
TASTE.md
team.md
WITH_DOCS.md
SKILL.md
tasks/
BUG.md
CODING.md
DIAGNOSIS.md
FEATURE.md
PLANNING.md
REFACTOR.md
RESEARCH.md
TECH_DESIGN.md
poll-slack/
SKILL.md
review-code/
references/
change-intent.md
code-bugs.md
code-design.md
code-maintainability.md
code-simplicity.md
code-testability.md
context-file-adherence.md
contracts.md
docs.md
operational-readiness.md
prose-value.md
test-quality.md
type-safety.md
SKILL.md
README.md
opencode/
.sync-meta.json
AGENTS.md
plugin/
index.js
package.json
README.md
skills/
auto/
SKILL.md
babysit-pr/
SKILL.md
check-pr/
SKILL.md
define/
references/
BABYSIT_MODE.md
MULTI_REPO.md
WRITING-REFERENCE.md
SKILL.md
tasks/
BLOG.md
BUG.md
CODING.md
DOCUMENT.md
FEATURE.md
PLANNING.md
PR_LIFECYCLE.md
PROMPTING.md
REFACTOR.md
references/
MAP_CONVENTION.md
research/
agentic-systems.md
ai-failure-modes.md
epistemology.md
fact-checking.md
information-science.md
intelligence-analysis.md
README.md
systematic-reviews.md
research/
RESEARCH.md
sources/
SOURCE_WEB.md
TECH_DESIGN.md
WRITING.md
... 289 moreยฉ 2026 Flowy ยท Free and open source
Built for Claude Code ยท Not affiliated with Anthropic