advisor
Advisor mode. Consult a stronger (or different) model at key checkpoints: before major decisions, when stuck on an error, and before declaring a task done. Use…
Explain the Ralph Loop plugin, how it works, and available skills. Use when the user asks for help with ralph loop, wants to understand the technique, or needs usage examples.
$ npx -y skills add cursor/plugins --skill ralph-loop-help --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/ralph-loop-helpContext preview
The summary Claude sees to decide when to auto-load this skill.
Explain the Ralph Loop plugin, how it works, and available skills. Use when the user asks for help with ralph loop, wants to understand the technique, or needs usage examples.
name: ralph-loop-help description: Explain the Ralph Loop plugin, how it works, and available skills. Use when the user asks for help with ralph loop, wants to understand the technique, or needs usage examples.
The user asks what Ralph Loop is, how it works, or needs usage guidance.
Ralph Loop implements the Ralph Wiggum technique — an iterative development methodology based on continuous AI loops, pioneered by Geoffrey Huntley.
Core concept: the same prompt is fed to the agent repeatedly. The "self-referential" aspect comes from the agent seeing its own previous work in the files and git history, not from feeding output back as input.
Each iteration: 1. The agent receives the SAME prompt 2. Works on the task, modifying files 3. Tries to exit 4. Stop hook intercepts and feeds the same prompt again 5. The agent sees its previous work in the files 6. Iteratively improves until completion
Tell the agent your task along with options:
Start a ralph loop: "Build a REST API for todos" --max-iterations 20 --completion-promise "COMPLETE"
Options:
How it works: 1. Creates `.cursor/ralph/scratchpad.md` state file 2. Agent works on the task 3. Stop hook intercepts exit and feeds the same prompt back 4. Agent sees its previous work and iterates 5. Continues until promise detected or max iterations reached
Ask the agent to cancel the ralph loop. It will remove the state file and report the iteration count.
To signal completion, the agent outputs a `<promise>` tag:
<promise>TASK COMPLETE</promise>
The stop hook looks for this specific tag. Without it (or `--max-iterations`), Ralph runs indefinitely.
**Good for:**
**Not good for:**
Present the above information clearly to the user, tailored to their specific question.
Official Cursor plugins for popular developer tools, frameworks, and SaaS products. Each plugin is a standalone directory at the repository root with its own .cursor-plugin/plugin.json manifest.
Repo: cursor/plugins
Advisor mode. Consult a stronger (or different) model at key checkpoints: before major decisions, when stuck on an error, and before declaring a task done. Use…
Run the full repository compatibility pass: scanner score, startup path, validation loop, and docs reliability.
Designs or reviews CLIs so coding agents can run them reliably: non-interactive flags, layered --help with examples, stdin/pipelines, fast actionable errors,…
Orchestrate continual learning by delegating transcript mining and AGENTS.md updates to `agents-memory-updater`.
Create a new Cursor plugin scaffold with a valid manifest, component directories, and marketplace wiring. Use when starting a new plugin or adding a plugin to…
Audit a Cursor plugin for marketplace readiness. Use when validating manifests, component metadata, discovery paths, and submission quality before publishing.