auto
Autonomous task execution with testing and security. Works through all tasks without stopping.
npx skills add majiayu000/claude-skill-registry --skill auto-djnsty23-claude-auto-dev --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Auto Mode Fully autonomous development. Works through all tasks without stopping until complete. ## Current State !`git status --short` !`node -e "try{const p=require('./prd.json');const sp=p.sprints?p.sprints[p.sprints.length-1]:p;const s=Object.values(sp.stories||p.stories||{});const name=sp.id||sp.name||p.sprint||'unknown';const done=s.filter(x=>x.passes===true).length;const pend=s.filter(x=>x.passes===null||x.passes===false).length;console.log('Sprint:',name,'| Done:',done,'| Pending:',pend,'| Total:',s.length)}catch(e){console.log('No prd.json')}"` ## Entry Flow ``` auto |-- Activate: write .claude/auto-active |-- Check prd.json exists? | |-- No -> Bootstrap from context | +-- Yes -> Check pending tasks | |-- None pending -> IDLE Detection | +-- Has pending -> Execute tasks | +-- Execute until done or interrupted +-- Deactivate: delete .claude/auto-active ``` ## Auto-Active Flag (Continuous Execution) On start, create the flag file: ```bash echo '{"started":"'$(date -Iseconds)'","sprint":"current"}' > .claude/auto-active ``` PowerShell: `@{started=(Get-Date -Format o)} | ConvertTo-Json > .claude/auto-active` This flag tells the Stop hook to block Claude from stopping. Claude
- Current State
- Entry Flow
- Auto-Active Flag (Continuous Execution)
- Autonomous Behavior
- Persist to prd.json
- Lightweight Mode
- Bootstrap (No prd.json)
- Pre-flight (Quick)
- Task Execution
- Find Next Task
- Execute Each Task
- Context Loading (before writing any code)
- Verification
- Self-Verification (after each task)
echo '{"started":"'$(date -Iseconds)'","sprint":"current"}' > .claude/auto-active
rm -f .claude/auto-active
git status --short
npm run build 2>&1 | tail -5
agent-browser open http://localhost:3000/path
agent-browser snapshot -i
agent-browser errors
agent-browser network requests
npm run typecheck 2>/dev/null || npx tsc --noEmit 2>/dev/null
npm test -- --passWithNoTests --watchAll=false 2>/dev/nullWhat does the auto skill do?
Autonomous task execution with testing and security. Works through all tasks without stopping.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill auto-djnsty23-claude-auto-dev --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
