From jacked
Use when starting any significant feature or non-trivial task that deserves a thorough development cycle. Triggers on "jack it up", "do this right", "full cycle", "build this properly", or when the user wants quality-first development over speed.
npx claudepluginhub jackneil/claude-jacked --plugin jackedThis skill uses the workspace's default tool permissions.
Iterative development cycle that prioritizes getting it right over getting it done. Each phase builds on the last, and review cycles continue until the work scores a 10/10 — not just functional, but polished.
Guides strict Test-Driven Development (TDD): write failing tests first for features, bugfixes, refactors before any production code. Enforces red-green-refactor cycle.
Guides systematic root cause investigation for bugs, test failures, unexpected behavior, performance issues, and build failures before proposing fixes.
Guides A/B test setup with mandatory gates for hypothesis validation, metrics definition, sample size calculation, and execution readiness checks.
Iterative development cycle that prioritizes getting it right over getting it done. Each phase builds on the last, and review cycles continue until the work scores a 10/10 — not just functional, but polished.
The goal is NOT to finish the work. The goal is to do the work perfectly.
digraph mindset {
"Just ship it" [shape=box, style=filled, fillcolor=lightcoral, label="Getting it done\n(wrong mindset)"];
"Is this excellent?" [shape=diamond];
"Ship it" [shape=box, style=filled, fillcolor=lightgreen, label="Ship it\n(right mindset)"];
"Refine" [shape=box, label="Refine further"];
"Is this excellent?" -> "Ship it" [label="yes — genuinely"];
"Is this excellent?" -> "Refine" [label="no"];
"Refine" -> "Is this excellent?";
}
Be inquisitive, not just task-completing. Ask "is this the best way?" at every stage. This is NOT scope creep — it is thoroughness. The difference: scope creep adds features nobody asked for; thoroughness ensures the requested features work flawlessly.
These thoughts mean the work is drifting toward "just get it done":
| Thought | What to do instead |
|---|---|
| "This is good enough" | Run /dc. If it finds issues, it's not good enough. |
| "Let me skip the review, it's simple" | Simple things break in subtle ways. Review it. |
| "I'll fix that later" | Fix it now. "Later" means "never." |
| "The tests pass, we're done" | Tests passing is the minimum. Review quality, not just correctness. |
| "This review cycle is overkill" | The review found issues last time. Trust the process. |
digraph cycle {
rankdir=TB;
node [shape=box];
brainstorm [label="1. Brainstorm\n(superpowers:brainstorming)"];
plan [label="2. Write Plan\n(superpowers:writing-plans)"];
review_plan [label="3. Review Plan\n(/dc on plan)"];
execute [label="4. Execute Plan\n(superpowers:subagent-driven-development)"];
review_impl [label="5. Double-Check Review\n(/dc on implementation)"];
clean [shape=diamond, label="Clean pass?"];
ship [label="6. Ship It\n(/pr)"];
done [label="PR created", shape=doublecircle];
brainstorm -> plan;
plan -> review_plan;
review_plan -> execute [label="plan passes"];
review_plan -> plan [label="plan has issues\n(fix and re-review)"];
execute -> review_impl;
review_impl -> clean;
clean -> ship [label="yes"];
clean -> plan [label="no — findings become\nspec for next plan"];
ship -> done;
}
REQUIRED SUB-SKILL: superpowers:brainstorming
Explore the user's intent, requirements, and design space before touching code. Do not assume the first idea is the right one. Ask questions. Challenge assumptions. Consider alternatives.
Output: A clear understanding of what to build and why.
REQUIRED SUB-SKILL: superpowers:writing-plans
Turn the brainstorm output into a concrete, task-by-task implementation plan with complete code, exact file paths, test commands, and commit messages. No placeholders. No "TBD."
Output: A plan document saved to docs/superpowers/plans/.
Invoke /dc (which auto-detects planning phase). The double-check review spawns reviewers and a pre-mortem analyst to stress-test the plan.
Output: A reviewed, clean plan.
REQUIRED SUB-SKILL: superpowers:subagent-driven-development
Always use subagent-driven development — a fresh subagent per task with two-stage review (spec compliance, then code quality). Do not use superpowers:executing-plans (that is the inline fallback for environments without subagent support).
Implement the plan task by task. Each task follows TDD (test first, implement, verify). Commit after each task.
Output: Working implementation with passing tests.
Invoke /dc (which auto-detects implementation/post-implementation phase). The review:
superpowers:writing-plans to turn findings into a fix planPhases 4 and 5 repeat until a clean pass. Each cycle:
Do NOT declare "done" until the final /dc review passes with no CRITICAL or MEDIUM findings.
Invoke /pr to create or update the pull request. The /pr command runs the pr-workflow-checker agent which now includes a pre-flight verification phase that automatically checks for:
The pre-flight never auto-cleans — it reports findings with proof of what's safe to clean and what needs attention, then asks. NEEDS ATTENTION items are warnings, not blockers.
After pre-flight, the agent handles PR creation with issue linking and a comprehensive description.
Output: PR URL. The cycle is complete.
The /dc skill already implements the findings-to-plan pipeline for implementation reviews (Phase 5). This skill orchestrates the full cycle around it. When /dc produces a reviewed fix plan, this skill picks it up and executes it, then runs /dc again.