Skip to main content

help

Explain Ralph Loop plugin and available commands Use when this capability is needed.

インストールへ移動

ソース情報

リポジトリ
tomevault-io/tomes
ソースの最終更新活動
2026年7月23日 21:48
検出された SKILL.md の言語
英語
スター
1
フォーク
0

インストール方法

デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。

ソースファイルを確認

インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。

SKILL.md を表示中

SKILL.md
ソースの指示 · 読み取り専用プレビュー
name
help
description
Explain Ralph Loop plugin and available commands Use when this capability is needed.
metadata
{"author":"charfeng1"}
# Ralph Loop Help The Ralph Loop plugin provides auto-continuation for complex tasks in opencode. ## Available Commands ### `/ralph-loop <task>` Start an iterative development loop that automatically continues until the task is complete. Example: ``` /ralph-loop Build a REST API with authentication ``` The AI will work on your task and automatically continue until completion. ### `/cancel-ralph` Cancel an active Ralph Loop before it completes. Example: ``` /cancel-ralph ``` ## How It Works 1. **Start**: `/ralph-loop` creates a state file at `.opencode/ralph-loop.local.md` 2. **Loop**: When the AI goes idle, the plugin checks if `<promise>DONE</promise>` was output 3. **Continue**: If not found, it injects "Continue from where you left off" 4. **Stop**: Loop continues until DONE is found or max iterations (100) reached 5. **Cleanup**: State file is deleted when complete ## Completion Signal When the task is fully complete, the AI outputs: ``` <promise>DONE</promise> ``` This signals the loop to stop. The AI should ONLY output this when the task is truly complete. ## State File Located at `.opencode/ralph-loop.local.md` (add to `.gitignore`): ```markdown --- active: true iteration: 3 maxIterations: 100 sessionId: ses_abc123 --- Your original task prompt ``` ## Credits - Inspired by [Anthropic's Ralph Wiggum](https://github.com/anthropics/claude-code/tree/main/plugins/ralph-wiggum) plugin for Claude Code - Standalone extraction from [oh-my-opencode](https://github.com/code-yeongyu/oh-my-opencode) --- > Source: [charfeng1/opencode-ralph-loop](https://github.com/charfeng1/opencode-ralph-loop) — distributed by [TomeVault](https://tomevault.io). <!-- tomevault:4.0:skill_md:2026-07-09 -->
GitHubで見る