Agent skill

ralph-autonomous-dev

Enables autonomous development loops that run until all tasks pass. Use when the user says "until done", "keep going", "finish this", "終わるまでやれ", or requests long-running autonomous iteration with fix_plan.md tracking.

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill ralph-autonomous-dev-daisuke134-anicca-products --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/agent/ralph-autonomous-dev-daisuke134-anicca-products/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

# Ralph-Style Autonomous Development Skill ## When to Use This Skill Invoke this skill when: - User says "until done", "keep going until complete", "finish this" - Task requires multiple iterations (tests passing, all features complete) - Long-running autonomous development is requested - User explicitly mentions "Ralph" or "autonomous loop" ## Core Concept Ralph is a bash wrapper for Claude Code that **keeps you running until the job is done**. This skill teaches you to work in a Ralph-compatible way, even without the external wrapper. ## The Ralph Pattern ``` 1. Read fix_plan.md → Pick next incomplete task 2. Implement → Run tests 3. Update fix_plan.md → Mark complete or note blockers 4. Repeat until ALL tasks complete 5. Output EXIT_SIGNAL: true when truly done ``` ## File Structure Maintain these files in `.ralph/`: | File | Purpose | |------|---------| | `PROMPT.md` | High-level project goals and rules | | `fix_plan.md` | Checkbox task list (current work) | | `AGENT.md` | Build/test commands | ## fix_plan.md Format ```markdown # Current Sprint Tasks ## Priority 1 (Critical) - [ ] Task description here - [x] Completed task ## Priority 2 (Important) - [ ] Another task ## Blocker

What's inside
Steps it walks through
  1. When to Use This Skill
  2. Core Concept
  3. The Ralph Pattern
  4. File Structure
  5. fixplan.md Format
  6. Working Loop Behavior
  7. Before Each Implementation
  8. After Each Implementation
  9. Completion Detection
  10. Circuit Breaker Rules
  11. Example Workflow
  12. Integration with CLAUDE.md
  13. Commands Reference
  14. Key Principles
Ships with 1 file
  • metadata.json
Commands it runs
Build & Test iOS
cd aniccaios && fastlane test
Build & Test API
cd apps/api && npm test
Run E2E Tests
maestro test maestro/ --include-tags smokeTest
More from claude-skill-registry
All skills →
About this skill
What does the ralph-autonomous-dev skill do?

Enables autonomous development loops that run until all tasks pass. Use when the user says "until done", "keep going", "finish this", "終わるまでやれ", or requests long-running autonomous iteration with fix_plan.md tracking.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill ralph-autonomous-dev-daisuke134-anicca-products --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