بنقرة واحدة
setup-ralph
Setup the Ralph autonomous AI coding loop - ships features while you sleep
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Setup the Ralph autonomous AI coding loop - ships features while you sleep
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
Create and optimize MEMORY.md memory files or .agent/rules/ modular rules for Antigravity projects. Comprehensive guidance on file hierarchy, content structure, path-scoped rules, best practices, and anti-patterns. Use when working with MEMORY.md files, .agent/rules directories, setting up new projects, or improving Antigravity's context awareness.
Comprehensive code review following OWASP, SOLID, and best practices
Expert guidance for creating Antigravity slash commands. Use when working with slash commands, creating custom commands, understanding command structure, or learning YAML configuration.
Expert guidance for creating, building, and using Antigravity subagents and the Task tool. Use when working with subagents, setting up agent configurations, understanding how agents work, or using the Task tool to launch specialized agents.
Expert guidance for creating Antigravity Workflows. Use when creating new workflows, understanding workflow structure, or learning YAML configuration.
| name | setup-ralph |
| description | Setup the Ralph autonomous AI coding loop - ships features while you sleep |
| argument-hint | <project-path> [-i/--interactive] [-f/--feature <name>] |
Set up the Ralph autonomous coding loop in any project. Ralph runs AI agents in a loop, picking tasks from a PRD, implementing one at a time, committing after each, and accumulating learnings until all tasks are complete.
This skill ONLY sets up Ralph - you run the commands yourself.
Setup Ralph interactively (recommended):
/setup-ralph -i
Setup for specific feature:
/setup-ralph -f 01-add-authentication
What this does:
.agent/ralph/ structure in your projectAfter setup, you run:
bun run .agent/ralph/ralph.sh -f <feature-name>
🛑 NEVER run ralph.sh or any execution commands automatically 🛑 NEVER execute the loop - only set up files and show instructions ✅ ALWAYS let the user copy and run commands themselves ✅ ALWAYS end by showing the exact command to run
Use this skill when:
Don't use for:
| Flag | Description |
|---|---|
<project-path> | Path to the project (defaults to current directory) |
-i, --interactive | Interactive mode: brainstorm PRD with AI assistance |
-f, --feature <name> | Feature folder name (e.g., 01-add-auth) |
Examples:
/setup-ralph /path/to/project -i # Interactive PRD creation
/setup-ralph . -f 01-add-auth # Setup for specific feature
/setup-ralph -i -f 02-user-dashboard # Interactive with specific name
| Variable | Type | Description |
|---|---|---|
{project_path} | string | Absolute path to target project |
{ralph_dir} | string | Path to .agent/ralph in project |
{feature_name} | string | Feature folder name (e.g., 01-add-auth) |
{feature_dir} | string | Path to task folder |
{interactive_mode} | boolean | Whether to brainstorm PRD interactively |
{prd_content} | string | PRD markdown content |
{user_stories} | array | User stories extracted from PRD |
{branch_name} | string | Git branch for the feature |
Load resources/steps/step-00-init.md
| Step | File | Purpose |
|---|---|---|
| 00 | resources/steps/step-00-init.md | Parse flags, run setup script, create structure |
| 01 | resources/steps/step-01-interactive-prd.md | Interactive PRD brainstorming and creation |
| 02 | resources/steps/step-02-create-stories.md | Transform PRD into user stories (prd.json) |
| 03 | resources/steps/step-03-finish.md | Show run command (user runs it themselves) |
| Script | Purpose |
|---|---|
scripts/setup.sh | Creates all Ralph files in the project |
✅ Ralph structure created at {project_path}/.agent/ralph ✅ Feature folder created with PRD.md, prd.json, progress.txt ✅ User stories properly formatted in prd.json ✅ Clear run command provided to user (they run it themselves)