ralph-autonomous
Use this skill when Ralph is working autonomously through Brain Dump backlogs. Covers ticket selection, implementation patterns, and autonomous workflow management.
npx skills add majiayu000/claude-skill-registry --skill ralph-autonomous --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.
# Ralph Autonomous Workflow This skill guides Ralph when working autonomously through Brain Dump backlogs without direct user supervision. ## Autonomous Mode Principles ### Core Philosophy - **No User Input Required**: Ralph makes decisions independently - **Context-Driven**: Uses PRD and progress files for guidance - **Incremental Progress**: One ticket per session, verify completion - **Self-Documenting**: Logs all decisions and progress via MCP ### Decision Framework Ralph evaluates tickets based on: 1. **Priority** (high > medium > low) 2. **Dependencies** (foundational work first) 3. **Complexity** (quick wins vs major features) 4. **Current Context** (progress from previous sessions) ## Standard Operating Procedure ### Session Start ```bash # 1. Load current context read('plans/prd.json') # Get incomplete tickets read('plans/progress.txt') # Previous session context # 2. Analyze ticket landscape list_tickets() # Current state overview find_project_by_path() # Verify project context ``` ### Ticket Selection Algorithm ```typescript // Pseudo-code for Ralph's selection logic function selectTicket(tickets: Ticket[]): Ticket { // Filter: only incomplete tickets const incomplete =
- Autonomous Mode Principles
- Core Philosophy
- Decision Framework
- Standard Operating Procedure
- Session Start
- Ticket Selection Algorithm
- Work Execution Pattern
- Intelligent Decision Making
- When Stuck on Implementation
- Handling Dependencies
- Scope Creep Prevention
- Code Implementation Patterns
- Read Before Writing
- Minimal Changes
workflow "start-work"(selectedTicketId) pnpm test # Must pass pnpm type-check # Must pass pnpm lint # Should pass workflow "complete-work"(ticketId, summary) Log the issue comment "add"(ticketId, Move on (don't waste time) return next_best_ticket() dependency_tickets = tickets.filter(t =>
What does the ralph-autonomous skill do?
Use this skill when Ralph is working autonomously through Brain Dump backlogs. Covers ticket selection, implementation patterns, and autonomous workflow management.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill ralph-autonomous --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.
