planning-workflow — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited planning-workflow (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
<!-- TOC: Philosophy | THE EXACT PROMPT | Process Overview | References -->
Core Philosophy: "Planning tokens are a lot fewer and cheaper than implementation tokens."
>
The models are far smarter when reasoning about a detailed plan that fits within their context window. This is the key insight behind spending 80%+ of time on planning.
You have a usable plan when all of the following hold:
br ready --json without re-reading the plan.You have NOT delivered if any of these is true: the plan is < ~1,500 lines for a non-trivial project (under-specified); the plan is > ~10,000 lines with no decomposition (impossible to act on); the human is still being asked "what should this do?" mid-implementation (planning was abandoned, not completed); beads exist but have no dependency edges (the plan's structure was lost in conversion).
Reach for something else if:
codebase-archaeology or idea-wizard first; planning is for execution, not discovery.porting-to-rust or testing-conformance-harnesses; the plan is the spec itself.When a planning model proposes architecture, the proposal is a hypothesis. Ground every load-bearing claim in a verifiable source before letting it survive a review round:
git log, or use codebase-archaeology to confirm structural claims before they shape the plan.<tool> for X," confirm the tool's current contract supports X. Linkrot in plans is a quiet failure mode.A plan that survived review without grounding is a plan that will surprise you in implementation. Cheap verification at planning time beats expensive rework after the code is half-written.
After each review round, before sending the plan back for another pass, run all four:
If any of these fails, the plan is not ready for beads conversion — do another review round.
Carefully review this entire plan for me and come up with your best revisions in terms of better architecture, new features, changed features, etc. to make it better, more robust/reliable, more performant, more compelling/useful, etc. For each proposed change, give me your detailed analysis and rationale/justification for why it would make the project better along with the git-diff style change versus the original plan shown below:
<PASTE YOUR EXISTING COMPLETE PLAN HERE>After GPT Pro finishes (may take 20-30 minutes), paste output into Claude Code:
OK, now integrate these revisions to the markdown plan in-place; use ultrathink and be meticulous. At the end, you can tell me which changes you wholeheartedly agree with, which you somewhat agree with, and which you disagree with:
---
## Process Overview
└─► Explain goals, intent, workflows, tech stack
└─► 4-5 rounds of revision until steady-state
└─► Gemini 3.1 Pro Deep Think, Grok4 Heavy, Opus 4.7 └─► GPT Pro as final arbiter
└─► Self-contained tasks with dependency structure
└─► Cross-model review, never oversimplify
---
## What Makes a Great Plan
| Good Plan | Great Plan |
|-----------|------------|
| Describes what to build | Explains WHY you're building it |
| Lists features | Details user workflows and interactions |
| Mentions tech stack | Justifies tech choices with tradeoffs |
| Has tasks | Has tasks with dependencies and rationale |
| ~500 lines | ~3,500+ lines after refinement |
### Essential Elements
1. **Self-contained** — Never need to refer back to external docs
2. **Granular** — Break complex features into specific subtasks
3. **Dependency-aware** — What blocks what?
4. **Justified** — Include reasoning, not just instructions
5. **User-focused** — How does each piece serve the end user?
---
## Common Mistakes
1. **Starting implementation too early** — 3 hours of planning saves 30 hours of rework
2. **Single-round review** — You continue to get improvements even at round 6+
3. **Not using GPT Pro** — Extended Reasoning is uniquely good for this
4. **Skeleton-first coding** — One big comprehensive plan beats incremental coding
5. **Losing context** — Convert plans to beads so agents don't need the original
---
## References
| Topic | Reference |
|-------|-----------|
| All exact prompts | [PROMPTS.md](references/PROMPTS.md) |
| Real-world examples | [EXAMPLES.md](references/EXAMPLES.md) |
| FAQ | [FAQ.md](references/FAQ.md) |~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.