ralph
Interactive planning skill for Amp. Generates specs, implementation plans, and loop infrastructure through clarifying questions.
What this skill does
# Ralph Planning Skill (Amp) Generate specs, implementation plans, and loop infrastructure for iterative AI-driven development. ## Entry **Usage:** `/skill ralph [optional/path/to/plan.md]` - If path provided: Read that `.md` file as the source specification - If no path: Use the current conversation context --- ## Step 1: Interview the User You MUST ask clarifying questions before generating any files. Present questions with lettered options for quick responses. **Interview approach:** 1. Present 3-5 questions covering scope, constraints, and validation 2. Use A/B/C/D multiple choice format for quick answers 3. Allow the user to respond with shorthand like "1A, 2C, 3B" 4. Ask follow-up questions if answers are unclear **Example interview:** > I'll help you plan this feature. First, let me ask a few questions: > > **1. Scope** - How broad is this change? > - A) Single file/module > - B) Multiple related files > - C) Cross-cutting (many parts of codebase) > - D) Greenfield (new feature from scratch) > > **2. Risk tolerance** - How aggressive should changes be? > - A) Conservative - minimal changes > - B) Balanced - reasonable refactoring OK > - C) Aggressive - significant refactoring acceptable > > **3. Validation** - How should we verify the implementation? > - A) Existing test suite > - B) Add new tests > - C) Manual testing sufficient > > Reply with your choices (e.g., "1B, 2A, 3B") or answer in your own words. **WAIT for user response before proceeding.** --- ## Step 2: Oracle Review (Optional) After receiving answers, offer to analyze the codebase: > Would you like me to analyze the codebase architecture before generating the plan? > - Reply **oracle** for architectural analysis > - Reply **skip** to proceed directly ### If user chooses `oracle`: 1. Use the Oracle tool to analyze relevant code areas 2. Identify existing patterns, potential conflicts, dependencies 3. Present findings and any additional clarifying questions 4. **WAIT for user response before proceeding** ### If user chooses `skip`: Proceed directly to Step 3. --- ## Step 3: Generate Files **Always overwrite existing files** — never add suffixes like `-v2`, `-new`, or `_backup`. These files are ephemeral and meant to be regenerated. Use the exact filenames specified below. ### 1. `specs/<feature-slug>.md` Requirements specification containing: - Feature overview - User stories - Acceptance criteria - Edge cases and error handling - Out of scope items ### 2. `IMPLEMENTATION_PLAN.md` Format: ```markdown # Implementation Plan: <Feature Name> > **Scope**: <scope choice> | **Risk**: <risk choice> | **Constraints**: <constraint choice> ## Summary <2-3 sentence overview of the implementation approach> ## Tasks - [ ] Task 1: Description with enough context for implementation - [ ] Task 2: Description with enough context for implementation - [ ] Task 3: Description with enough context for implementation ... ``` Tasks should be: - Ordered by priority/dependency - Small enough for single iteration - Include file paths when known - Self-contained with sufficient context ### 3. `PROMPT_plan.md` Generate with this content (replace `[DIRECTORIES]` with relevant source directories): ```markdown # Planning Mode You are in PLANNING mode. Analyze specifications against existing code and generate a prioritized implementation plan. ## Phase 0: Orient ### 0a. Study specifications Read all files in `specs/` directory using finder and parallel reads. ### 0b. Study existing implementation Use finder to analyze relevant source directories: [DIRECTORIES] ### 0c. Study the current plan Read `IMPLEMENTATION_PLAN.md` if it exists. ## Phase 1: Gap Analysis Compare specs against implementation: - What's already implemented? - What's missing? - What's partially done? **CRITICAL**: Don't assume something isn't implemented. Use finder to search the codebase first. ## Phase 2: Generate Plan Update `IMPLEMENTATION_PLAN.md` with: - Tasks sorted by priority (P0 → P1 → P2) - Clear descriptions with file locations - Dependencies noted where relevant - Discoveries from gap analysis **CRITICAL: ALL tasks MUST use checkbox format:** - `- [ ] **Task Name**` for pending tasks - `- [x] **Task Name**` for completed tasks Do NOT use other formats like `#### P1.1: Task Name` or `**Task Name**` without checkboxes. The build loop relies on `grep -c "^\- \[ \]"` to count remaining tasks. Capture the WHY, not just the WHAT. ## Phase 3: Exit After updating the plan, output **RALPH_COMPLETE** and exit. ## Guardrails 999. NEVER implement code in planning mode 1000. Use Task tool for parallel analysis of different areas 1001. Each task must be completable in ONE loop iteration 1002. Use Oracle to review priorities before finalizing 1003. **ALWAYS use checkbox format `- [ ]` or `- [x]` for tasks in IMPLEMENTATION_PLAN.md** - The build loop relies on `grep -c "^\- \[ \]"` to count remaining tasks. Never use `####` headers or bold text without checkboxes. ``` ### 4. `PROMPT_build.md` Generate with this content (replace `[VALIDATION_COMMAND]` with the appropriate command from AGENTS.md or project config): ```markdown # Build Mode Implement ONE task from the plan, validate, commit, exit. ## Phase 0: Orient Study: - @AGENTS.md (how to build/test) - @specs/* (requirements) - @IMPLEMENTATION_PLAN.md (current state) ### Check for completion ```bash grep -c "^\- \[ \]" IMPLEMENTATION_PLAN.md || echo 0 ``` - If 0: Run validation → commit → output **RALPH_COMPLETE** → exit - If > 0: Continue to Phase 1 ## Phase 1: Implement 1. **Study the plan** — Choose the most important task from @IMPLEMENTATION_PLAN.md 2. **Search first** — Don't assume not implemented. Use finder to verify behavior doesn't already exist 3. **Implement** — ONE task only. Implement completely — no placeholders or stubs 4. **Validate** — Run `[VALIDATION_COMMAND]`, must pass before continuing If stuck, use Oracle to debug. Add extra logging if needed. ## Phase 2: Update & Learn **Update IMPLEMENTATION_PLAN.md:** - Mark task `- [x] Completed` - Add discovered bugs or issues (even if unrelated to current task) - Note any new tasks discovered - Periodically clean out completed items when file gets large **Update AGENTS.md** (if you learned something new): - Add correct commands discovered through trial and error - Keep it brief and operational only — no status updates or progress notes ## Phase 3: Commit & Exit ```bash git add -A && git commit -m "feat([scope]): [description] Thread: $AMP_THREAD_URL" ``` Check remaining: ```bash grep -c "^\- \[ \]" IMPLEMENTATION_PLAN.md || echo 0 ``` - If > 0: Say "X tasks remaining" and EXIT - If = 0: Output **RALPH_COMPLETE** ## Guardrails 99999. When authoring documentation, capture the why — tests and implementation importance. 999999. Single sources of truth, no migrations/adapters. If tests unrelated to your work fail, resolve them as part of the increment. 9999999. Implement functionality completely. Placeholders and stubs waste time redoing the same work. 99999999. Keep @IMPLEMENTATION_PLAN.md current with learnings — future iterations depend on this to avoid duplicating efforts. 999999999. Keep @AGENTS.md operational only — status updates and progress notes pollute every future loop's context. 9999999999. For any bugs you notice, resolve them or document them in @IMPLEMENTATION_PLAN.md even if unrelated to current work. 99999999999. ONE task per iteration. Search before implementing. Validation MUST pass. Never output RALPH_COMPLETE if tasks remain. ``` ### 5. `loop.sh` Generate with this content (replace `[FEATURE_NAME]` with a short kebab-case feature name like `auth-system` or `api-refactor`): ```bash #!/bin/bash # Ralph Wiggum Build Loop (Amp) # Usage: # ./loop.sh # Auto mode: plan first, then build (default) # ./loop.sh plan # Planning mode only # ./loop.sh build # Build mode only # ./loop.sh 10 # Auto mode, max 10 build ite
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.