Agent skill · AI & Agents

smart-ralph

Core Smart Ralph skill defining common arguments, execution modes, and shared behaviors across all Ralph plugins.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill smart-ralph-tzachbon-smart-ralph --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
Version: 0.1.0
Path: skills/agent/smart-ralph-tzachbon-smart-ralph/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

# Smart Ralph Core skill for all Ralph plugins. Defines common arguments, execution modes, and shared behaviors. ## Common Arguments All Ralph commands support these standard arguments: | Argument | Short | Description | Default | |----------|-------|-------------|---------| | `--quick` | `-q` | Skip interactive phases, auto-generate artifacts, start execution immediately | false | | `--commit` | `-c` | Commit and push spec/feature files after generation | true (normal), false (quick) | | `--no-commit` | | Explicitly disable committing files | - | | `--max-task-iterations` | `-m` | Max retries per failed task before stopping | 5 | | `--fresh` | `-f` | Force new spec/feature, overwrite if exists | false | ## Argument Parsing Rules ```text Priority Order (highest to lowest): 1. --no-commit (explicit disable) 2. --commit (explicit enable) 3. --quick mode default (false) 4. Normal mode default (true) ``` ### Parsing Logic ```text commitSpec = true // default if "--no-commit" in args: commitSpec = false else if "--commit" in args: commitSpec = true else if "--quick" in args: commitSpec = false // quick mode defaults to no commit // else keep default (true) ``` ## Execution Modes ### Nor

What's inside
Steps it walks through
  1. Common Arguments
  2. Argument Parsing Rules
  3. Parsing Logic
  4. Execution Modes
  5. Normal Mode (Interactive)
  6. Quick Mode (--quick)
  7. State File Structure
  8. Commit Behavior
  9. Execution Loop (Self-Contained)
  10. Coordinator Prompt
  11. Task Completion Protocol
  12. Executor Signals
  13. Coordinator Signals
  14. Error Handling
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the smart-ralph skill do?

Core Smart Ralph skill defining common arguments, execution modes, and shared behaviors across all Ralph plugins.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill smart-ralph-tzachbon-smart-ralph --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