Agent skill · Security

auto

Autonomous task execution with testing and security. Works through all tasks without stopping.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Allowed tools: BashReadWriteEditGrepGlobTaskTaskCreateTaskUpdateTaskList
Path: skills/agent/auto-djnsty23-claude-auto-dev/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Current State
  2. Entry Flow
  3. Auto-Active Flag (Continuous Execution)
  4. Autonomous Behavior
  5. Persist to prd.json
  6. Lightweight Mode
  7. Bootstrap (No prd.json)
  8. Pre-flight (Quick)
  9. Task Execution
  10. Find Next Task
  11. Execute Each Task
  12. Context Loading (before writing any code)
  13. Verification
  14. Self-Verification (after each task)
Ships with 1 file
  • metadata.json
Commands it runs
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/null
More from claude-skill-registry
All skills →
About this skill
What 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.

Keep going