feat: Add Harness Loop (Ralph Wiggum Technique) for Autonomous Development#4
Merged
guicheffer merged 1 commit intomainfrom Jan 19, 2026
Merged
feat: Add Harness Loop (Ralph Wiggum Technique) for Autonomous Development#4guicheffer merged 1 commit intomainfrom
guicheffer merged 1 commit intomainfrom
Conversation
…pment Ports the Ralph Wiggum external harness pattern from spec-machine, enabling fully autonomous development by running Claude Code in an external bash loop with spec-based progress tracking. **Commands Added:** - `devorch harness init <feature>` - Initialize feature folder structure - `devorch harness create-specs <feature>` - Generate specs interactively - `devorch harness loop <feature>` - Run autonomous loop until completion - `devorch harness list` - List all features with status - `devorch harness status <feature>` - Show detailed progress **Key Features:** - Autonomous execution without manual intervention - Progress tracking via acceptance criteria checkboxes - Iteration logs for every loop cycle - Graceful completion with "COMPLETED" marker **Components:** - CLI commands: `src/cli/commands/harness/` - Harness lib: `src/cli/lib/harness/` - Claude runner: `src/cli/lib/claude-runner/` - Skill: `templates/skills/workflow/harness/` - Docs: `docs/user-guide/harness-loop.md` - Visual assets: `docs/assets/ralph.gif`, `docs/assets/harness-flow.jpg` Learn more: https://ghuntley.com/ralph/ Co-Authored-By: Claude <noreply@anthropic.com>
guicheffer
added a commit
that referenced
this pull request
Jan 22, 2026
feat: Add Harness Loop (Ralph Wiggum Technique) for Autonomous Development
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Implements Ralph Wiggum external harness pattern to devorch, enabling fully autonomous development by running Claude Code in an external bash loop with spec-based progress tracking.
What's Included
CLI Commands:
devorch harness init <feature>- Initialize feature folder structure with templatesdevorch harness create-specs <feature>- Boot Claude to investigate and write detailed specsdevorch harness loop <feature>- Run autonomous loop until all tasks completedevorch harness list- List all features with their statusdevorch harness status <feature>- Show detailed progress for a featureKey Features:
Components Added:
src/cli/commands/harness/src/cli/lib/harness/src/cli/lib/claude-runner/(for spawning Claude processes)templates/skills/workflow/harness/SKILL.md(/workflow:harness)docs/user-guide/harness-loop.mddocs/assets/ralph.gif,docs/assets/harness-flow.jpgExample Usage
How It Works
Learn More
/workflow:harnessin Claude CodeTest Plan
devorch harness init test-featuredevorch harness listdevorch harness status test-feature🤖 Generated with Claude Code