Agent skill · Workflow & Productivity

ralph-autonomous

Use this skill when Ralph is working autonomously through Brain Dump backlogs. Covers ticket selection, implementation patterns, and autonomous workflow management.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill ralph-autonomous --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
Requires: opencode
Path: skills/agent/ralph-autonomous/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 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 =

What's inside
Steps it walks through
  1. Autonomous Mode Principles
  2. Core Philosophy
  3. Decision Framework
  4. Standard Operating Procedure
  5. Session Start
  6. Ticket Selection Algorithm
  7. Work Execution Pattern
  8. Intelligent Decision Making
  9. When Stuck on Implementation
  10. Handling Dependencies
  11. Scope Creep Prevention
  12. Code Implementation Patterns
  13. Read Before Writing
  14. Minimal Changes
Ships with 1 file
  • metadata.json
Commands it runs
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 =>
More from claude-skill-registry
All skills →
About this skill
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.

Keep going