Do It Skill — Testing skill for Claude Code
Claude Code skill: single-shot autonomous build pipeline (spec → plan → build → review → commit) with tiered review and a diminishing-returns judge.
How to install Do It Skill
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open nraford7/do-it-skill and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
What Do It Skill does
Claude Code skill: single-shot autonomous build pipeline (spec → plan → build → review → commit) with tiered review and a diminishing-returns judge.
Alternatives in Testing
- OpenAgentsControl — AI agent framework for plan-first development workflows with approval-based execution 4.8k ★
- Factory — Dark Factory Mode - Spec-in, software-out autonomous pipeline 2.8k ★
- Production Grade — Production Grade — route any build, feature, review, test, harden, ship, or docs request through the 14-agent 175 ★
README
do-it — Autonomous Build Pipeline Skill
A [Claude Code](https://claude.com/claude-code) skill for single-shot, end-to-end builds. You give one instruction; the pipeline drives spec → plan → build → review → commit → push without asking permission at every gate.
What it does
[0] Clarify (only if blocking)
[1] Spec draft → review loop (tiered: LIGHT / STANDARD / HEAVY)
[2] Plan → review loop
[3] Execution (no permission asks)
[4] Post-build review
[5] Verification gate → commit + push
Key ideas:
- Review-tier evaluator — a rubric scores each task and picks how heavy the review stack should be (
FASTmode skips the loops entirely for low-risk work). - Diminishing-returns judge — an independent judge decides CONTINUE / STOP / SPLIT after each review pass, so review effort stops when it stops paying.
- Mandatory artifacts — every run leaves a spec, a plan, and a run manifest in git. No rationalized skips.
- Watchdog —
scripts/watchdog.shsupervises long external review runs (stall detection, hard ceiling), tunable viaFE_*env vars.
Contents
| Path | Purpose |
|---|---|
do-it/SKILL.md |
The skill itself — pipeline, modes, artifact rules |
do-it/references/evaluator-rubric.md |
Review-tier scoring rubric |
do-it/references/judge-prompt.md |
Diminishing-returns judge prompt |
do-it/scripts/watchdog.sh |
Supervisor for long-running review subprocesses |
Install
Copy the `do-it/` directory into your Claude Code skills folder:
cp -R do-it ~/.claude/skills/do-it
Then trigger it with `/do-it ` (or "just build it", "do it end-to-end").
The skill references companion tooling from my setup ([superpowers](https://github.com/obra/superpowers) skills, a `fresheyes` second-model reviewer, and an [Agency](https://github.com/agentbureau/agency) execution layer). It degrades gracefully without them, but the review loops assume an independent reviewer is available.
License
MIT
Related Skills
V Epic
Drive an EPIC — chain several features into one autonomous, resumable, dependency-ordered build on a single br
Plan Freeze
Commit the active feature's spec.md + plan.md on a plan/ branch and open a PR for human review. Wraps scripts/
PM Working Backwards Agent
Multi-agent CrewAI pipeline that turns a product problem statement into a research brief, PRFAQ, BRD, and buil
Map Review Coach
Claude Code skill that reviews mining investor maps against institutional-grade cartographic standards — retur
Autorun
Run the full pipeline headlessly overnight — spec-review → plan → check → build → PR → merge
Reviewer Tester
You are reviewing one focused group of changed test files from a pull request for an automated pipeline. Your
Related Agents
Issue Subagents Code Reviewer
Code reviewer agent for issue-subagents skill. Feat classification only. One-shot read-only review of the diff
Code Security Reviewer
Performs structured code security and quality audits with restricted tool access. Supports tiered review (T1 p
Autopilot
Autonomous pipeline from idea to working code — specify, clarify, plan, review, tasks, implement, code review,