ralph-cycle — for Claude Code ralph-cycle, tilt-hydrometer-web, community, for Claude Code, ide skills, prd.json, progress.md, Development, executes, single

v1.0.0

About this Skill

Perfect for Development Agents needing streamlined task implementation and verification, particularly those utilizing the Ralph Wiggum Methodology. Execute a single Ralph development cycle by selecting a failing task, implementing it, verifying with tests, and committing. Use when ready to implement the next feature from the backlog.

Features

Ralph Development Cycle
Before starting a cycle:
✅ prd.json exists with backlog
✅ progress.md exists
✅ .windsurf/rules/tech-stack.md exists

# Core Topics

davisschenk davisschenk
[0]
[0]
Updated: 3/12/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Locale and body language aligned
Review Score
8/11
Quality Score
26
Canonical Locale
en
Detected Body Locale
en

Perfect for Development Agents needing streamlined task implementation and verification, particularly those utilizing the Ralph Wiggum Methodology. Execute a single Ralph development cycle by selecting a failing task, implementing it, verifying with tests, and committing. Use when ready to implement the next feature from the backlog.

Core Value

Empowers agents to automate development cycles by reading `prd.json` and `progress.md`, analyzing backlogs, and executing tasks based on the Ralph Wiggum Methodology, utilizing files like `.windsurf/rules/tech-stack.md` for informed decision-making.

Ideal Agent Persona

Perfect for Development Agents needing streamlined task implementation and verification, particularly those utilizing the Ralph Wiggum Methodology.

Capabilities Granted for ralph-cycle

Automating single development cycles following the Ralph Wiggum Methodology
Implementing and verifying tasks based on backlog analysis from `prd.json`
Committing tasks after successful verification, streamlining the development process

! Prerequisites & Limits

  • Requires `prd.json` with backlog
  • Needs `progress.md` to exist
  • Dependent on `.windsurf/rules/tech-stack.md` for technical stack information

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is ralph-cycle?

Perfect for Development Agents needing streamlined task implementation and verification, particularly those utilizing the Ralph Wiggum Methodology. Execute a single Ralph development cycle by selecting a failing task, implementing it, verifying with tests, and committing. Use when ready to implement the next feature from the backlog.

How do I install ralph-cycle?

Run the command: npx killer-skills add davisschenk/tilt-hydrometer-web/ralph-cycle. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for ralph-cycle?

Key use cases include: Automating single development cycles following the Ralph Wiggum Methodology, Implementing and verifying tasks based on backlog analysis from `prd.json`, Committing tasks after successful verification, streamlining the development process.

Which IDEs are compatible with ralph-cycle?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for ralph-cycle?

Requires `prd.json` with backlog. Needs `progress.md` to exist. Dependent on `.windsurf/rules/tech-stack.md` for technical stack information.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add davisschenk/tilt-hydrometer-web/ralph-cycle. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use ralph-cycle immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

ralph-cycle

Install ralph-cycle, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Ralph Development Cycle

This skill executes a single development cycle following the Ralph Wiggum Methodology: pick one task, implement it, verify it, commit it.

Prerequisites

Before starting a cycle:

  • prd.json exists with backlog
  • progress.md exists
  • .windsurf/rules/tech-stack.md exists

Cycle Steps

Step 1: Smart Context Selection

Read prd.json and progress.md. Analyze the backlog to determine the most logical next step.

Selection Logic: Do not simply pick the first item. Select the task that:

  • Is currently failing (passes: false)
  • Is unblocked by other tasks (dependencies are met)
  • Makes the most sense to implement given the current state of the code

Announce: "I have selected [task name] because [reason]."

Constraint: PICK ONLY ONE TASK AT A TIME! Do not skip tasks unless blocked. If blocked, document the blocking reason in progress.md.

Step 2: Planning & Journaling

Append a new entry to progress.md with the header "## Working on [Task Name]"

Write a brief plan of execution in the log including:

  • What files will be modified/created
  • What approach you'll take
  • Any potential challenges
  • How you'll verify completion

Constraint: Do not modify code yet.

Step 3: Implementation

Implement the feature described in the selected task using the smallest change that satisfies the acceptance criteria.

Constraints:

  • Work ONLY on this specific task
  • Do not refactor unrelated code
  • Modify only files required for the selected task
  • Adhere to the standards in .windsurf/rules/tech-stack.md
  • Follow the acceptance criteria from prd.json

Step 4: Verification

Execute the verification command (e.g., npm test, pytest, etc.) relevant to this task.

Reference .windsurf/rules/tech-stack.md for the correct verification commands. If it does not list any, infer minimal verification and document it in progress.md.

Retry Logic:

If the command fails:

  1. Read the error output
  2. Attempt to fix the code
  3. Re-run verification
  4. Repeat up to 3 times

If it still fails after 3 tries, document the failure and next hypothesis in progress.md, then stop.

Step 5: Completion & Commit

If verification passes:

  1. Update prd.json: set passes to true for this task
  2. Update progress.md: Append "Result: Success"
  3. Run git add .
  4. Run git commit --no-gpg-sign -m "feat: [task description]"

Supporting Resources

Reference these files for guidance:

  • cycle-checklist.md - Quick reference checklist
  • verification-examples.md - Common verification patterns

Anti-Patterns to Avoid

❌ Do not work on multiple tasks simultaneously ❌ Do not mark task as passing without running verification ❌ Do not commit code that fails tests ❌ Do not refactor unrelated code during implementation

Related Skills

Looking for an alternative to ralph-cycle or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

openclaw-release-maintainer is an AI agent skill for openclaw release maintainer.

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

flags is an AI agent skill for use this skill when adding or changing framework feature flags in next.js internals.

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

pr-review is an AI agent skill for pytorch pr review skill.

98.6k
0
Developer