@graypark/ralph-codex 0.2.0 → 0.2.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
CHANGED
|
@@ -150,11 +150,37 @@ To cancel at any time: `/ralph-loop:cancel-ralph`
|
|
|
150
150
|
|
|
151
151
|
## Conversation Flow
|
|
152
152
|
|
|
153
|
+
### Standard Flow
|
|
154
|
+
|
|
153
155
|
```
|
|
154
156
|
[User] → Describes the task
|
|
155
157
|
[Assistant] → Asks interview questions (1 round, max 5 questions)
|
|
156
158
|
[User] → Answers
|
|
157
159
|
[Assistant] → Generates Phase plan + command blocks
|
|
158
|
-
[
|
|
159
|
-
[
|
|
160
|
+
[Assistant] → Asks: "Run Phase 1 now? (y/n)"
|
|
161
|
+
[User] → "y"
|
|
162
|
+
[Assistant] → Executes the /ralph-loop:ralph-loop command immediately via Skill tool
|
|
160
163
|
```
|
|
164
|
+
|
|
165
|
+
### Quick-Run Flow
|
|
166
|
+
|
|
167
|
+
If the user includes phrases like "run immediately", "just do it", "바로 실행", "바로 시작", or "--run" in their initial message:
|
|
168
|
+
|
|
169
|
+
1. Conduct the interview as normal (skip if enough context is provided).
|
|
170
|
+
2. Generate the command blocks.
|
|
171
|
+
3. **Immediately execute Phase 1** without asking for confirmation.
|
|
172
|
+
4. Show the command that was executed so the user can see what's running.
|
|
173
|
+
|
|
174
|
+
### Post-Generation Action
|
|
175
|
+
|
|
176
|
+
After generating all command blocks, ALWAYS end with this prompt:
|
|
177
|
+
|
|
178
|
+
```
|
|
179
|
+
---
|
|
180
|
+
**Ready to run?**
|
|
181
|
+
- **y** / **yes** / **실행** → I'll start Phase 1 immediately
|
|
182
|
+
- **n** / **no** / **아니오** → Commands are above, copy-paste when ready
|
|
183
|
+
- **edit** / **수정** → Tell me what to change
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
When the user confirms, execute the Phase 1 command by invoking the `ralph-loop:ralph-loop` skill with the generated arguments. For multi-phase work, after each Phase completes, prompt to run the next Phase.
|