Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Plan execution path, produce executable plan, dispatch subagents, collect and analyze results
.claude/skills/yogsoth-ai-implementation-planning/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-15 | ✗→✓ | ▲ Improved | 90% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 461% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 28% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 2% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 92% | 0% |
Positioning: "How to do it + do it" — from validated experiment design to executed results.
Before entering this campaign, the following must be true:
If any gate fails, STOP and return to the appropriate upstream campaign.
Transform a validated experiment design into:
| Situation | Strategy | Key Question | |-----------|----------|--------------| | Need shortest execution path | critical-path-planning | What is the shortest path? | | Obstacles block direct execution | prerequisite-planning | What obstacles are in the way? | | Ready to format executable plan | plan-writing | How to write it as an executable plan? | | Plan ready, execute tasks | experiment-running | How to execute? | | Results collected, need analysis | result-analysis | What do the results tell us? |
Typical flow: critical-path-planning → prerequisite-planning → plan-writing → experiment-running → result-analysis
| Phase | Max Budget | Checkpoint | |-------|-----------|------------| | Planning (strategies 1-3) | 20% of total | Plan document produced | | Execution (strategy 4) | 60% of total | All tasks DONE or BLOCKED | | Analysis (strategy 5) | 20% of total | Statistical report produced |
If any phase exceeds budget, STOP and report partial results.
Even if execution is partial, this campaign MUST produce:
本 campaign 的实现段(plan-writing → experiment-running → result-analysis)不自造, 而是直接 Skill load superpowers/ponytail 外部 skill 当 SOP。DARE 原生的排程 (CPM/PERT/TOC)与统计分析(bootstrap/ROPE/复现)夹在两端,是三明治:
排程层(DARE: CPM/PERT/TOC)
→ plan-writing: superpowers:brainstorming → superpowers:writing-plans
→ experiment-running: superpowers:using-git-worktrees
→ superpowers:executing-plans | superpowers:subagent-driven-development
→ superpowers:verification-before-completion
→ superpowers:finishing-a-development-branch
→ result-analysis(DARE: 统计 + 复现)ponytail 三道 gate 贯穿执行段(硬接线进 dependencies,钉在前/后):
| ponytail gate | 时机 | |---|---| | ponytail:ponytail | executing 之前载入(边写边精简) | | ponytail:ponytail-review | code-review 之后载入(逐 diff 查过度工程) | | ponytail:ponytail-debt | finishing 之前载入(收集欠债标记) |
舍弃(YAGNI):ponytail:ponytail-audit(全库扫,错粒度)、ponytail:ponytail-help(速查卡)。
研究过程经 context-management 落盘,与最终报告分属不同文件:
implementation-planning,建立本 campaign 的过程 context 文件。init 幂等——同 Phase 重入返回原文件。
strategy 的过程与中间产出 append 进上一步的过程文件。
另起 implementation-planning-report 文件落盘(见该 SOP)。
<!-- BEGIN available-tables (generated) --> <!-- external rows hand-maintained; do not regenerate this file -->
Optional, no fixed order; the final leaf is always a sop.
| Strategy | When to use | | --- | --- | | critical-path-planning | Identify the shortest execution path via CPM forward/backward pass, resource leveling, and buffer insertion | | experiment-running | Execute the plan by dispatching fresh subagents per task, monitoring status, and collecting results | | plan-writing | Format critical path and prerequisites into bite-sized executable plan following superpowers:writing-plans conventions | | prerequisite-planning | Identify obstacles blocking direct achievement and design intermediate objectives to overcome each | | result-analysis | Statistically analyze collected results, verify reproducibility, and synthesize findings |
Optional, no fixed order; the final leaf is always a sop.
| Tactic | When to use | | --- | --- | | checkpoint-and-recover | Checkpoint state before risky operations, detect anomalies, and recover gracefully | | result-validation-loop | Validate results through statistical testing, ROPE judgment, reproducibility re-runs, and final synthesis | | subagent-execution-loop | Orchestrate task execution via fresh subagents with dispatch, monitoring, and result collection | | task-decomposition | Orchestrate the breakdown of experiment design into sequenced, estimated, and formatted task plan |
Optional, no fixed order; the final leaf is always a sop.
| SOP | When to use | | --- | --- | | context-checkpoint | Append research process and results to the current Phase's context file. Each append MUST contain >=500 lines of markdown covering both process and results. Use this skill at plan-designated checkpoint points — typically after each strategy completes or at key decision nodes within a research Phase. | | context-init | Create a new context file for a research Phase. Called once at Phase start to initialize the file that subsequent context-checkpoint calls will append to. Use this skill whenever a new research Phase begins and a fresh context file is needed. | | execution-synthesis | Synthesize complete execution report from all results, tests, and reproducibility data | | experiment-execution-paper-overview | Import SOP: paper landscape scan (from literature-engine skill) | | experiment-execution-paper-research | Import SOP: paper full-text reading (from literature-engine skill) | | experiment-execution-paper-search | Import SOP: paper AI summary reading (from literature-engine skill) | | experiment-execution-quality-gate-check | Shared SOP: verify quality gate criteria are met before proceeding | | experiment-execution-saturation-detection | Shared SOP: detect information saturation — know when to stop searching/analyzing | | experiment-execution-web-research | Import SOP: deep full-page content analysis (from web-browsing skill) | | experiment-execution-web-search | Import SOP: quick web scan discovery (from web-browsing skill) | | ponytail:ponytail | Lazy-senior reflex: simplest thing that holds; mark every deliberate shortcut | | ponytail:ponytail-debt | Harvest ponytail debt markers before finishing | | ponytail:ponytail-review | Audit the diff for over-engineering (delete/stdlib/native/yagni/shrink) | | superpowers:brainstorming | Turn the experiment design into an implementation spec (clarify -> approaches -> spec -> self-review -> user gate) | | superpowers:executing-plans | Execute the plan task-by-task in the current session with checkpoints | | superpowers:finishing-a-development-branch | Verify tests -> merge / PR / branch cleanup | | superpowers:receiving-code-review | Verify review feedback before applying; push back when wrong | | superpowers:requesting-code-review | Dispatch a code-reviewer subagent after each task | | superpowers:subagent-driven-development | Execute the plan via a fresh subagent per task with two-stage review | | superpowers:test-driven-development | RED -> GREEN -> REFACTOR per task | | superpowers:using-git-worktrees | Create an isolated worktree + run baseline tests before implementing | | superpowers:verification-before-completion | Run the proving command and confirm output before claiming done | | superpowers:writing-plans | Produce a bite-sized, TDD-structured implementation plan from the spec |
<!-- END available-tables (generated) -->
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-15 | fail→pass | 27,090 | 17,809 | -34% | 1 | 1 | 0% | 1,959 | 3,721 | +90% | 0 | 0 | — |
case-21 | fail→fail | 4,859 | 39,500 | +713% | 1 | 1 | 0% | 739 | 10,140 | +1272% | 0 | 0 | — |
case-01 | fail→fail | 64,954 | 440,347 | +578% | 1 | 1 | 0% | 7,297 | 2,400 | -67% | 0 | 0 | — |
case-02 | fail→pass | 23,067 | 68,573 | +197% | 1 | 1 | 0% | 1,271 | 7,132 | +461% | 0 | 0 | — |
case-03 | fail→fail | 41,958 | 57,551 | +37% | 1 | 1 | 0% | 4,413 | 2,377 | -46% | 0 | 0 | — |
case-04 | fail→pass | 22,731 | 11,684 | -49% | 1 | 1 | 0% | 2,285 | 2,930 | +28% | 0 | 0 | — |
case-05 | fail→pass | 21,623 | 15,711 | -27% | 1 | 1 | 0% | 3,166 | 3,238 | +2% | 0 | 0 | — |
case-06 | pass→pass | 12,564 | 15,505 | +23% | 1 | 1 | 0% | 2,165 | 2,958 | +37% | 0 | 0 | — |
case-07 | fail→pass | 28,205 | 30,331 | +8% | 1 | 1 | 0% | 2,674 | 5,128 | +92% | 0 | 0 | — |
case-08 | fail→fail | 21,433 | 42,570 | +99% | 1 | 1 | 0% | 2,922 | 2,753 | -6% | 0 | 0 | — |
case-09 | fail→pass | 18,477 | 14,880 | -19% | 1 | 1 | 0% | 1,984 | 3,162 | +59% | 0 | 0 | — |
case-10 | fail→pass | 30,261 | 12,836 | -58% | 1 | 1 | 0% | 2,072 | 3,221 | +55% | 0 | 0 | — |
case-11 | fail→pass | 12,733 | 11,500 | -10% | 1 | 1 | 0% | 1,089 | 3,102 | +185% | 0 | 0 | — |
case-12 | fail→pass | 18,958 | 4,167 | -78% | 1 | 1 | 0% | 2,233 | 2,493 | +12% | 0 | 0 | — |
case-13 | fail→fail | 11,309 | 2,885 | -74% | 1 | 1 | 0% | 2,092 | 2,375 | +14% | 0 | 0 | — |
case-14 | fail→pass | 17,005 | 6,299 | -63% | 1 | 1 | 0% | 2,168 | 2,963 | +37% | 0 | 0 | — |
case-16 | fail→pass | 14,625 | 10,764 | -26% | 1 | 1 | 0% | 1,500 | 2,502 | +67% | 0 | 0 | — |
case-17 | pass→pass | 27,764 | 11,989 | -57% | 1 | 1 | 0% | 2,320 | 2,869 | +24% | 0 | 0 | — |
case-18 | pass→pass | 18,426 | 20,130 | +9% | 1 | 1 | 0% | 2,395 | 3,322 | +39% | 0 | 0 | — |
case-19 | fail→fail | 30,829 | 14,298 | -54% | 1 | 1 | 0% | 6,339 | 3,545 | -44% | 0 | 0 | — |
case-20 | pass→fail | 34,008 | 18,553 | -45% | 1 | 1 | 0% | 6,387 | 5,583 | -13% | 0 | 0 | — |
case-22 | fail→pass | 15,141 | 11,643 | -23% | 1 | 1 | 0% | 2,811 | 3,954 | +41% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted, and 19 counted toward the lift figure. The other 3 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +50 percentage points is the difference between those two pass rates over the 19 comparable cases. 1 case got worse with the skill loaded, and it is included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.