@graypark/ralph-codex 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/skills/ralph-interview/SKILL.md +17 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graypark/ralph-codex",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Ralph Loop for Codex CLI & Claude Code — iterative dev loops with multi-agent orchestration, interactive interview, and stop hooks",
|
|
6
6
|
"license": "MIT",
|
|
@@ -265,12 +265,13 @@ To cancel at any time: `/ralph-loop:cancel-ralph`
|
|
|
265
265
|
|
|
266
266
|
### Quick-Run Flow
|
|
267
267
|
|
|
268
|
-
If the user includes phrases like "run immediately", "just do it", "바로 실행", "바로 시작", or "--run" in their initial message:
|
|
268
|
+
If the user includes phrases like "run immediately", "just do it", "run it", "바로 실행", "바로 시작", or "--run" in their initial message:
|
|
269
269
|
|
|
270
270
|
1. Conduct the interview as normal (skip if enough context is provided).
|
|
271
271
|
2. Generate the command blocks.
|
|
272
|
-
3.
|
|
273
|
-
4. Show the command
|
|
272
|
+
3. For multi-phase: write state file with queue via Bash.
|
|
273
|
+
4. Show the generated command briefly.
|
|
274
|
+
5. Immediately call the Skill tool with skill="ralph-loop:ralph-loop" and the Phase 1 args. Do NOT wait for user confirmation.
|
|
274
275
|
|
|
275
276
|
### Post-Generation Action
|
|
276
277
|
|
|
@@ -299,15 +300,21 @@ After generating all command blocks, ALWAYS end with this prompt:
|
|
|
299
300
|
|
|
300
301
|
### Execution Modes
|
|
301
302
|
|
|
303
|
+
IMPORTANT: When the user confirms execution, you MUST actually start the loop by calling the Skill tool with skill "ralph-loop:ralph-loop" and the generated args. Do NOT just write a state file or print the command. The Skill tool invocation is what triggers the real loop.
|
|
304
|
+
|
|
302
305
|
**Pipeline mode (default for "y"):**
|
|
303
306
|
|
|
304
|
-
1.
|
|
305
|
-
2.
|
|
306
|
-
3.
|
|
307
|
-
4. Continues until all phases complete — no user intervention between phases
|
|
307
|
+
1. For multi-phase: write the state file with queue via Bash
|
|
308
|
+
2. Call the Skill tool: skill="ralph-loop:ralph-loop", args="<Phase 1 prompt> --max-iterations N --completion-promise PROMISE"
|
|
309
|
+
3. The stop hook handles phase transitions automatically
|
|
308
310
|
|
|
309
311
|
**Manual mode ("step"):**
|
|
310
312
|
|
|
311
|
-
1.
|
|
312
|
-
2. When Phase 1 completes,
|
|
313
|
-
|
|
313
|
+
1. Call the Skill tool: skill="ralph-loop:ralph-loop", args="<Phase 1 prompt> --max-iterations N --completion-promise PROMISE"
|
|
314
|
+
2. When Phase 1 completes, ask user before calling Skill tool again for Phase 2
|
|
315
|
+
|
|
316
|
+
**Single-phase ("y"):**
|
|
317
|
+
|
|
318
|
+
1. Call the Skill tool: skill="ralph-loop:ralph-loop", args="<prompt> --max-iterations N --completion-promise PROMISE"
|
|
319
|
+
|
|
320
|
+
After the user says "y", "yes", or similar, you MUST immediately use the Skill tool. Do not just describe what would happen. Do not tell the user to copy-paste. Actually invoke the skill.
|