oh-my-claude-sisyphus 3.3.6 → 3.3.7
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/README.md +70 -18
- package/agents/planner.md +7 -7
- package/agents/scientist-high.md +3 -3
- package/commands/cancel-ralph.md +3 -3
- package/commands/cancel-ultraqa.md +5 -5
- package/commands/cancel-ultrawork.md +4 -4
- package/commands/hud.md +8 -8
- package/commands/learner.md +2 -2
- package/commands/mcp-setup.md +194 -0
- package/commands/note.md +11 -11
- package/commands/omc-setup.md +18 -2
- package/commands/ralph-init.md +1 -1
- package/commands/ralplan.md +59 -6
- package/commands/release.md +2 -2
- package/commands/research.md +7 -7
- package/commands/ultraqa.md +6 -6
- package/dist/__tests__/installer.test.js +1 -1
- package/dist/installer/index.d.ts +1 -1
- package/dist/installer/index.js +1 -1
- package/docs/CLAUDE.md +27 -27
- package/docs/FULL-README.md +26 -24
- package/docs/MIGRATION-v3.md +6 -6
- package/docs/MIGRATION.md +43 -43
- package/package.json +1 -1
- package/skills/autopilot/SKILL.md +8 -8
- package/skills/cancel-autopilot/SKILL.md +3 -3
- package/skills/cancel-ralph/SKILL.md +3 -3
- package/skills/cancel-ultraqa/SKILL.md +5 -5
- package/skills/cancel-ultrawork/SKILL.md +4 -4
- package/skills/hud/SKILL.md +9 -9
- package/skills/learner/SKILL.md +3 -3
- package/skills/mcp-setup/SKILL.md +196 -0
- package/skills/note/SKILL.md +11 -11
- package/skills/omc-setup/SKILL.md +18 -2
- package/skills/ralph-init/SKILL.md +1 -1
- package/skills/ralplan/SKILL.md +59 -6
- package/skills/release/SKILL.md +2 -2
- package/skills/research/SKILL.md +17 -17
- package/skills/ultraqa/SKILL.md +6 -6
package/commands/ralplan.md
CHANGED
|
@@ -75,6 +75,38 @@ Ralplan maintains persistent state in `.omc/ralplan-state.json` to track progres
|
|
|
75
75
|
|
|
76
76
|
**Phases**: `planner_planning` → `architect_consultation` → `critic_review` → `handling_verdict` → `complete`
|
|
77
77
|
|
|
78
|
+
## Plan Mode Interaction (CRITICAL)
|
|
79
|
+
|
|
80
|
+
**When ralplan is invoked while Plan mode is active:**
|
|
81
|
+
|
|
82
|
+
The Planner agent has a PHASE 3.5 (CONFIRMATION) that normally requires user confirmation before proceeding. **This MUST be bypassed within ralplan because the Critic serves as the reviewer, not the user.**
|
|
83
|
+
|
|
84
|
+
### Mandatory Constraints
|
|
85
|
+
|
|
86
|
+
| Constraint | Rationale |
|
|
87
|
+
|------------|-----------|
|
|
88
|
+
| **Planner MUST skip PHASE 3.5 confirmation** | Critic reviews the plan, not the user |
|
|
89
|
+
| **Critic MUST run before any plan approval** | No plan is approved without Critic verdict |
|
|
90
|
+
| **DO NOT exit plan mode until Critic has rendered verdict** | Premature exit skips the review step |
|
|
91
|
+
| **Log `[RALPLAN] Critic review required before approval`** | Observability for debugging |
|
|
92
|
+
|
|
93
|
+
### Flow When Plan Mode Is Active
|
|
94
|
+
|
|
95
|
+
```
|
|
96
|
+
1. Orchestrator invokes ralplan skill
|
|
97
|
+
2. Log: [RALPLAN] Starting - Critic review will be required
|
|
98
|
+
3. Spawn Planner in DIRECT PLANNING MODE (no interview, no confirmation)
|
|
99
|
+
4. Planner outputs PLAN_READY: <path>
|
|
100
|
+
5. Log: [RALPLAN] Plan ready, invoking Critic for review
|
|
101
|
+
6. Spawn Critic with plan path <-- MUST HAPPEN
|
|
102
|
+
7. Critic renders OKAY or REJECT
|
|
103
|
+
8. ONLY THEN can plan be approved or refined
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
**CRITICAL: The Critic invocation is MANDATORY. If the Planner completes and signals plan ready, the orchestrator MUST invoke the Critic before any form of plan approval or user confirmation.**
|
|
107
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
78
110
|
## Execution Protocol
|
|
79
111
|
|
|
80
112
|
### Initialization
|
|
@@ -96,12 +128,15 @@ The skill begins by establishing the planning environment:
|
|
|
96
128
|
The Planner creates an initial plan based on task context:
|
|
97
129
|
|
|
98
130
|
- Invoke Planner in **direct planning mode** (bypassing interview since task context is pre-gathered)
|
|
131
|
+
- **CRITICAL: Planner MUST skip PHASE 3.5 (CONFIRMATION)** - the Critic will review, not the user
|
|
99
132
|
- Planner receives task context directly without preliminary questioning
|
|
100
133
|
- Planner mandatorily consults with Metis for gap detection
|
|
101
134
|
- Planner generates plan directly to `.omc/plans/[feature-name].md`
|
|
102
135
|
- Plan includes: requirements summary, concrete acceptance criteria, specific implementation steps with file references, risk identification with mitigations, and verification steps
|
|
103
136
|
- Signal completion with `PLAN_READY: .omc/plans/[filename].md`
|
|
137
|
+
- **After PLAN_READY: DO NOT approve or confirm the plan. Proceed to Critic Review.**
|
|
104
138
|
- Extract plan path from completion signal and update state
|
|
139
|
+
- Log: `[RALPLAN] Critic review required before approval`
|
|
105
140
|
|
|
106
141
|
### Architect Consultation (Conditional)
|
|
107
142
|
|
|
@@ -112,7 +147,11 @@ The Architect provides strategic guidance in two scenarios:
|
|
|
112
147
|
|
|
113
148
|
When invoked, the Architect receives file paths to read for analysis, not summaries. This enables thorough examination of the existing codebase context before providing recommendations.
|
|
114
149
|
|
|
115
|
-
### Critic Review
|
|
150
|
+
### Critic Review (MANDATORY - CANNOT BE SKIPPED)
|
|
151
|
+
|
|
152
|
+
**CRITICAL: This phase MUST execute. The Critic is the gatekeeper for plan approval.**
|
|
153
|
+
|
|
154
|
+
Log at start: `[RALPLAN] Invoking Critic for plan review`
|
|
116
155
|
|
|
117
156
|
The Critic examines the plan against quality standards:
|
|
118
157
|
|
|
@@ -120,6 +159,14 @@ The Critic examines the plan against quality standards:
|
|
|
120
159
|
- Critic conducts thorough review of plan completeness and feasibility
|
|
121
160
|
- Critic emits verdict: either `OKAY` (approval) or `REJECT` with specific issues
|
|
122
161
|
|
|
162
|
+
**Enforcement Rules:**
|
|
163
|
+
1. If Planner signals PLAN_READY, Critic MUST be invoked immediately
|
|
164
|
+
2. DO NOT exit ralplan loop before Critic verdict
|
|
165
|
+
3. DO NOT request user confirmation before Critic verdict
|
|
166
|
+
4. DO NOT trigger any plan mode exit behavior before Critic verdict
|
|
167
|
+
|
|
168
|
+
Log after Critic completes: `[RALPLAN] Critic verdict: <OKAY|REJECT>`
|
|
169
|
+
|
|
123
170
|
### Verdict Handling and Iteration
|
|
124
171
|
|
|
125
172
|
Based on Critic's verdict, the skill either approves the plan or continues iteration:
|
|
@@ -127,7 +174,7 @@ Based on Critic's verdict, the skill either approves the plan or continues itera
|
|
|
127
174
|
**If verdict is OKAY:**
|
|
128
175
|
- Mark plan as approved
|
|
129
176
|
- Log approval with iteration count
|
|
130
|
-
- Prepare plan for execution with `/ralph` or manual orchestration
|
|
177
|
+
- Prepare plan for execution with `/oh-my-claudecode:ralph` or manual orchestration
|
|
131
178
|
- Set state `active: false, current_phase: "complete"`
|
|
132
179
|
|
|
133
180
|
**If verdict is REJECT:**
|
|
@@ -203,15 +250,21 @@ CRITIC_FEEDBACK:
|
|
|
203
250
|
|
|
204
251
|
To stop an active ralplan session:
|
|
205
252
|
|
|
206
|
-
- Use `/cancel-ralph` (automatically detects ralplan via state file)
|
|
253
|
+
- Use `/oh-my-claudecode:cancel-ralph` (automatically detects ralplan via state file)
|
|
207
254
|
- Or manually delete `.omc/ralplan-state.json`
|
|
208
255
|
|
|
209
256
|
## Skill Workflow
|
|
210
257
|
|
|
211
258
|
1. **Initialize state** and log: `[RALPLAN Iteration 0/5] Initializing...`
|
|
212
259
|
2. **Parse task** from user input
|
|
213
|
-
3. **Spawn Planner** in direct planning mode
|
|
214
|
-
4. **
|
|
215
|
-
5. **
|
|
260
|
+
3. **Spawn Planner** in direct planning mode (SKIP Planner's PHASE 3.5 confirmation)
|
|
261
|
+
4. **Wait for PLAN_READY** signal from Planner
|
|
262
|
+
5. **Log:** `[RALPLAN] Critic review required before approval`
|
|
263
|
+
6. **Invoke Critic** with plan file path (MANDATORY - CANNOT BE SKIPPED)
|
|
264
|
+
7. **Log:** `[RALPLAN] Critic verdict: <verdict>`
|
|
265
|
+
8. **Handle verdict** - if REJECT, loop back to step 3 with feedback
|
|
266
|
+
9. **Complete** ONLY when Critic approves or max iterations reached with warnings
|
|
267
|
+
|
|
268
|
+
**HARD RULE:** Steps 5-7 are NON-NEGOTIABLE. No plan approval, user confirmation, or plan mode exit can occur before the Critic has rendered its verdict. This prevents the plan mode confirmation flow from short-circuiting the ralplan review loop.
|
|
216
269
|
|
|
217
270
|
The iterative loop refines the plan until it meets the rigorous standards of all three agents, ensuring comprehensive, architecturally sound work plans ready for execution.
|
package/commands/release.md
CHANGED
|
@@ -9,10 +9,10 @@ Automate the release process for oh-my-claudecode.
|
|
|
9
9
|
## Usage
|
|
10
10
|
|
|
11
11
|
```
|
|
12
|
-
/release <version>
|
|
12
|
+
/oh-my-claudecode:release <version>
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
-
Example: `/release 2.4.0` or `/release patch` or `/release minor`
|
|
15
|
+
Example: `/oh-my-claudecode:release 2.4.0` or `/oh-my-claudecode:release patch` or `/oh-my-claudecode:release minor`
|
|
16
16
|
|
|
17
17
|
## Release Checklist
|
|
18
18
|
|
package/commands/research.md
CHANGED
|
@@ -11,12 +11,12 @@ Orchestrate parallel scientist agents for comprehensive research workflows with
|
|
|
11
11
|
## Usage Examples
|
|
12
12
|
|
|
13
13
|
```
|
|
14
|
-
/research <goal> # Standard research with user checkpoints
|
|
15
|
-
/research AUTO: <goal> # Fully autonomous until complete
|
|
16
|
-
/research status # Check current research session status
|
|
17
|
-
/research resume # Resume interrupted research session
|
|
18
|
-
/research list # List all research sessions
|
|
19
|
-
/research report <session-id> # Generate report for session
|
|
14
|
+
/oh-my-claudecode:research <goal> # Standard research with user checkpoints
|
|
15
|
+
/oh-my-claudecode:research AUTO: <goal> # Fully autonomous until complete
|
|
16
|
+
/oh-my-claudecode:research status # Check current research session status
|
|
17
|
+
/oh-my-claudecode:research resume # Resume interrupted research session
|
|
18
|
+
/oh-my-claudecode:research list # List all research sessions
|
|
19
|
+
/oh-my-claudecode:research report <session-id> # Generate report for session
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
## Research Protocol
|
|
@@ -86,7 +86,7 @@ Sessions are stored at `.omc/research/{session-id}/` with:
|
|
|
86
86
|
## Cancellation
|
|
87
87
|
|
|
88
88
|
```
|
|
89
|
-
/cancel-research
|
|
89
|
+
/oh-my-claudecode:cancel-research
|
|
90
90
|
```
|
|
91
91
|
|
|
92
92
|
Or say: "stop research", "cancel research", "abort"
|
package/commands/ultraqa.md
CHANGED
|
@@ -18,11 +18,11 @@ Parse the goal from arguments. Supported formats:
|
|
|
18
18
|
|
|
19
19
|
| Invocation | Goal Type | What to Check |
|
|
20
20
|
|------------|-----------|---------------|
|
|
21
|
-
| `/ultraqa --tests` | tests | All test suites pass |
|
|
22
|
-
| `/ultraqa --build` | build | Build succeeds with exit 0 |
|
|
23
|
-
| `/ultraqa --lint` | lint | No lint errors |
|
|
24
|
-
| `/ultraqa --typecheck` | typecheck | No TypeScript errors |
|
|
25
|
-
| `/ultraqa --custom "pattern"` | custom | Custom success pattern in output |
|
|
21
|
+
| `/oh-my-claudecode:ultraqa --tests` | tests | All test suites pass |
|
|
22
|
+
| `/oh-my-claudecode:ultraqa --build` | build | Build succeeds with exit 0 |
|
|
23
|
+
| `/oh-my-claudecode:ultraqa --lint` | lint | No lint errors |
|
|
24
|
+
| `/oh-my-claudecode:ultraqa --typecheck` | typecheck | No TypeScript errors |
|
|
25
|
+
| `/oh-my-claudecode:ultraqa --custom "pattern"` | custom | Custom success pattern in output |
|
|
26
26
|
|
|
27
27
|
If no structured goal provided, interpret the argument as a custom goal.
|
|
28
28
|
|
|
@@ -106,7 +106,7 @@ Track state in `.omc/ultraqa-state.json`:
|
|
|
106
106
|
|
|
107
107
|
## Cancellation
|
|
108
108
|
|
|
109
|
-
User can cancel with `/cancel-ultraqa` which clears the state file.
|
|
109
|
+
User can cancel with `/oh-my-claudecode:cancel-ultraqa` which clears the state file.
|
|
110
110
|
|
|
111
111
|
## Important Rules
|
|
112
112
|
|
|
@@ -269,7 +269,7 @@ describe('Installer Constants', () => {
|
|
|
269
269
|
});
|
|
270
270
|
it('should match package.json version', () => {
|
|
271
271
|
// This is a runtime check - VERSION should match the package.json
|
|
272
|
-
expect(VERSION).toBe('3.3.
|
|
272
|
+
expect(VERSION).toBe('3.3.7');
|
|
273
273
|
});
|
|
274
274
|
});
|
|
275
275
|
describe('File Paths', () => {
|
|
@@ -31,7 +31,7 @@ export declare const VERSION_FILE: string;
|
|
|
31
31
|
*/
|
|
32
32
|
export declare const CORE_COMMANDS: string[];
|
|
33
33
|
/** Current version */
|
|
34
|
-
export declare const VERSION = "3.3.
|
|
34
|
+
export declare const VERSION = "3.3.7";
|
|
35
35
|
/** Installation result */
|
|
36
36
|
export interface InstallResult {
|
|
37
37
|
success: boolean;
|
package/dist/installer/index.js
CHANGED
|
@@ -37,7 +37,7 @@ export const VERSION_FILE = join(CLAUDE_CONFIG_DIR, '.omc-version.json');
|
|
|
37
37
|
*/
|
|
38
38
|
export const CORE_COMMANDS = [];
|
|
39
39
|
/** Current version */
|
|
40
|
-
export const VERSION = '3.3.
|
|
40
|
+
export const VERSION = '3.3.7';
|
|
41
41
|
/**
|
|
42
42
|
* Check if the current Node.js version meets the minimum requirement
|
|
43
43
|
*/
|
package/docs/CLAUDE.md
CHANGED
|
@@ -160,35 +160,35 @@ User says "stop", "cancel", "abort" → You determine what to stop:
|
|
|
160
160
|
|
|
161
161
|
| Skill | Purpose | Auto-Trigger | Manual |
|
|
162
162
|
|-------|---------|--------------|--------|
|
|
163
|
-
| `autopilot` | Full autonomous execution from idea to working code | "autopilot", "build me", "I want a" | `/autopilot` |
|
|
163
|
+
| `autopilot` | Full autonomous execution from idea to working code | "autopilot", "build me", "I want a" | `/oh-my-claudecode:autopilot` |
|
|
164
164
|
| `orchestrate` | Core multi-agent orchestration | Always active | - |
|
|
165
|
-
| `ralph` | Persistence until verified complete | "don't stop", "must complete" | `/ralph` |
|
|
166
|
-
| `ultrawork` | Maximum parallel execution | "fast", "parallel", "ulw" | `/ultrawork` |
|
|
167
|
-
| `planner` | Strategic planning with interview | "plan this", broad requests | `/planner` |
|
|
168
|
-
| `plan` | Start planning session | "plan" keyword | `/plan` |
|
|
169
|
-
| `ralplan` | Iterative planning (Planner+Architect+Critic) | "ralplan" keyword | `/ralplan` |
|
|
170
|
-
| `review` | Review plan with Critic | "review plan" | `/review` |
|
|
171
|
-
| `analyze` | Deep analysis/investigation | "analyze", "debug", "why" | `/analyze` |
|
|
172
|
-
| `deepsearch` | Thorough codebase search | "search", "find", "where" | `/deepsearch` |
|
|
173
|
-
| `deepinit` | Generate AGENTS.md hierarchy | "index codebase" | `/deepinit` |
|
|
165
|
+
| `ralph` | Persistence until verified complete | "don't stop", "must complete" | `/oh-my-claudecode:ralph` |
|
|
166
|
+
| `ultrawork` | Maximum parallel execution | "fast", "parallel", "ulw" | `/oh-my-claudecode:ultrawork` |
|
|
167
|
+
| `planner` | Strategic planning with interview | "plan this", broad requests | `/oh-my-claudecode:planner` |
|
|
168
|
+
| `plan` | Start planning session | "plan" keyword | `/oh-my-claudecode:plan` |
|
|
169
|
+
| `ralplan` | Iterative planning (Planner+Architect+Critic) | "ralplan" keyword | `/oh-my-claudecode:ralplan` |
|
|
170
|
+
| `review` | Review plan with Critic | "review plan" | `/oh-my-claudecode:review` |
|
|
171
|
+
| `analyze` | Deep analysis/investigation | "analyze", "debug", "why" | `/oh-my-claudecode:analyze` |
|
|
172
|
+
| `deepsearch` | Thorough codebase search | "search", "find", "where" | `/oh-my-claudecode:deepsearch` |
|
|
173
|
+
| `deepinit` | Generate AGENTS.md hierarchy | "index codebase" | `/oh-my-claudecode:deepinit` |
|
|
174
174
|
| `frontend-ui-ux` | Design sensibility for UI | UI/component context | (silent) |
|
|
175
175
|
| `git-master` | Git expertise, atomic commits | git/commit context | (silent) |
|
|
176
|
-
| `ultraqa` | QA cycling: test/fix/repeat | "test", "QA", "verify" | `/ultraqa` |
|
|
177
|
-
| `learner` | Extract reusable skill from session | "extract skill" | `/learner` |
|
|
178
|
-
| `note` | Save to notepad for memory | "remember", "note" | `/note` |
|
|
179
|
-
| `hud` | Configure HUD statusline | - | `/hud` |
|
|
180
|
-
| `doctor` | Diagnose installation issues | - | `/doctor` |
|
|
176
|
+
| `ultraqa` | QA cycling: test/fix/repeat | "test", "QA", "verify" | `/oh-my-claudecode:ultraqa` |
|
|
177
|
+
| `learner` | Extract reusable skill from session | "extract skill" | `/oh-my-claudecode:learner` |
|
|
178
|
+
| `note` | Save to notepad for memory | "remember", "note" | `/oh-my-claudecode:note` |
|
|
179
|
+
| `hud` | Configure HUD statusline | - | `/oh-my-claudecode:hud` |
|
|
180
|
+
| `doctor` | Diagnose installation issues | - | `/oh-my-claudecode:doctor` |
|
|
181
181
|
| `help` | Show OMC usage guide | - | `/oh-my-claudecode:help` |
|
|
182
182
|
| `omc-setup` | One-time setup wizard | - | `/oh-my-claudecode:omc-setup` |
|
|
183
183
|
| `omc-default` | Configure local project | - | (internal) |
|
|
184
184
|
| `omc-default-global` | Configure global settings | - | (internal) |
|
|
185
|
-
| `ralph-init` | Initialize PRD for structured ralph | - | `/ralph-init` |
|
|
186
|
-
| `release` | Automated release workflow | - | `/release` |
|
|
187
|
-
| `cancel-autopilot` | Cancel active autopilot session | "stop autopilot", "cancel autopilot" | `/cancel-autopilot` |
|
|
188
|
-
| `cancel-ralph` | Cancel active ralph loop | "stop" in ralph | `/cancel-ralph` |
|
|
189
|
-
| `cancel-ultrawork` | Cancel ultrawork mode | "stop" in ultrawork | `/cancel-ultrawork` |
|
|
190
|
-
| `cancel-ultraqa` | Cancel ultraqa workflow | "stop" in ultraqa | `/cancel-ultraqa` |
|
|
191
|
-
| `research` | Parallel scientist orchestration | "research", "analyze data" | `/research` |
|
|
185
|
+
| `ralph-init` | Initialize PRD for structured ralph | - | `/oh-my-claudecode:ralph-init` |
|
|
186
|
+
| `release` | Automated release workflow | - | `/oh-my-claudecode:release` |
|
|
187
|
+
| `cancel-autopilot` | Cancel active autopilot session | "stop autopilot", "cancel autopilot" | `/oh-my-claudecode:cancel-autopilot` |
|
|
188
|
+
| `cancel-ralph` | Cancel active ralph loop | "stop" in ralph | `/oh-my-claudecode:cancel-ralph` |
|
|
189
|
+
| `cancel-ultrawork` | Cancel ultrawork mode | "stop" in ultrawork | `/oh-my-claudecode:cancel-ultrawork` |
|
|
190
|
+
| `cancel-ultraqa` | Cancel ultraqa workflow | "stop" in ultraqa | `/oh-my-claudecode:cancel-ultraqa` |
|
|
191
|
+
| `research` | Parallel scientist orchestration | "research", "analyze data" | `/oh-my-claudecode:research` |
|
|
192
192
|
|
|
193
193
|
### All 28 Agents
|
|
194
194
|
|
|
@@ -429,8 +429,8 @@ Say "setup omc" or run `/oh-my-claudecode:omc-setup` to configure. After that, e
|
|
|
429
429
|
|
|
430
430
|
### Troubleshooting
|
|
431
431
|
|
|
432
|
-
- `/doctor` - Diagnose and fix installation issues
|
|
433
|
-
- `/hud setup` - Install/repair HUD statusline
|
|
432
|
+
- `/oh-my-claudecode:doctor` - Diagnose and fix installation issues
|
|
433
|
+
- `/oh-my-claudecode:hud setup` - Install/repair HUD statusline
|
|
434
434
|
|
|
435
435
|
---
|
|
436
436
|
|
|
@@ -448,9 +448,9 @@ Autopilot activates automatically and handles the rest. No commands needed.
|
|
|
448
448
|
## Migration from 2.x
|
|
449
449
|
|
|
450
450
|
All old commands still work:
|
|
451
|
-
- `/ralph "task"` → Still works (or just say "don't stop until done")
|
|
452
|
-
- `/ultrawork "task"` → Still works (or just say "fast" or use `ulw`)
|
|
453
|
-
- `/planner "task"` → Still works (or just say "plan this")
|
|
451
|
+
- `/oh-my-claudecode:ralph "task"` → Still works (or just say "don't stop until done")
|
|
452
|
+
- `/oh-my-claudecode:ultrawork "task"` → Still works (or just say "fast" or use `ulw`)
|
|
453
|
+
- `/oh-my-claudecode:planner "task"` → Still works (or just say "plan this")
|
|
454
454
|
|
|
455
455
|
The difference? You don't NEED them anymore. Everything auto-activates.
|
|
456
456
|
|
package/docs/FULL-README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
# oh-my-claudecode
|
|
12
12
|
|
|
13
|
-
[](https://github.com/Yeachan-Heo/oh-my-claudecode)
|
|
14
14
|
[](https://www.npmjs.com/package/oh-my-claudecode)
|
|
15
15
|
[](https://opensource.org/licenses/MIT)
|
|
16
16
|
[](https://nodejs.org/)
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
<remember priority>API client at src/api/client.ts</remember>
|
|
47
47
|
|
|
48
48
|
# Or save notes manually
|
|
49
|
-
/note Database schema uses PostgreSQL with Prisma ORM
|
|
49
|
+
/oh-my-claudecode:note Database schema uses PostgreSQL with Prisma ORM
|
|
50
50
|
```
|
|
51
51
|
|
|
52
52
|
### 📋 Ralph Loop PRD Support
|
|
@@ -154,7 +154,7 @@ Choose **ONE** installation method below. Do not mix methods.
|
|
|
154
154
|
claude plugin install oh-my-claude-sisyphus
|
|
155
155
|
|
|
156
156
|
# Or from within Claude Code:
|
|
157
|
-
/plugin oh-my-claude-sisyphus
|
|
157
|
+
/oh-my-claudecode:plugin oh-my-claude-sisyphus
|
|
158
158
|
```
|
|
159
159
|
|
|
160
160
|
Uses Node.js hooks from the plugin directory. Integrates directly with Claude Code's plugin system.
|
|
@@ -197,7 +197,7 @@ chmod +x scripts/install.sh
|
|
|
197
197
|
Configure omc for the current project only:
|
|
198
198
|
|
|
199
199
|
```
|
|
200
|
-
/omc-default
|
|
200
|
+
/oh-my-claudecode:omc-default
|
|
201
201
|
```
|
|
202
202
|
|
|
203
203
|
- Creates `./.claude/CLAUDE.md` in your current project
|
|
@@ -210,7 +210,7 @@ Configure omc for the current project only:
|
|
|
210
210
|
Configure omc for all Claude Code sessions:
|
|
211
211
|
|
|
212
212
|
```
|
|
213
|
-
/omc-default-global
|
|
213
|
+
/oh-my-claudecode:omc-default-global
|
|
214
214
|
```
|
|
215
215
|
|
|
216
216
|
- Creates `~/.claude/CLAUDE.md` globally
|
|
@@ -293,18 +293,18 @@ The installer adds to your Claude Code config (`~/.claude/`):
|
|
|
293
293
|
│ ├── planner.md # Strategic planner (Opus)
|
|
294
294
|
│ └── qa-tester.md # CLI/service testing (Sonnet)
|
|
295
295
|
├── commands/
|
|
296
|
-
│ ├── orchestrate.md # /orchestrate command
|
|
297
|
-
│ ├── omc-default.md # /omc-default command (project-scoped)
|
|
298
|
-
│ ├── omc-default-global.md # /omc-default-global command (global)
|
|
299
|
-
│ ├── ultrawork.md # /ultrawork command
|
|
300
|
-
│ ├── deepsearch.md # /deepsearch command
|
|
301
|
-
│ ├── analyze.md # /analyze command
|
|
302
|
-
│ ├── plan.md # /plan command (planner)
|
|
303
|
-
│ ├── review.md # /review command (critic)
|
|
304
|
-
│ ├── planner.md # /planner command
|
|
305
|
-
│ ├── orchestrator.md # /orchestrator command
|
|
306
|
-
│ ├── ralph-loop.md # /ralph-loop command
|
|
307
|
-
│ └── cancel-ralph.md # /cancel-ralph command
|
|
296
|
+
│ ├── orchestrate.md # /oh-my-claudecode:orchestrate command
|
|
297
|
+
│ ├── omc-default.md # /oh-my-claudecode:omc-default command (project-scoped)
|
|
298
|
+
│ ├── omc-default-global.md # /oh-my-claudecode:omc-default-global command (global)
|
|
299
|
+
│ ├── ultrawork.md # /oh-my-claudecode:ultrawork command
|
|
300
|
+
│ ├── deepsearch.md # /oh-my-claudecode:deepsearch command
|
|
301
|
+
│ ├── analyze.md # /oh-my-claudecode:analyze command
|
|
302
|
+
│ ├── plan.md # /oh-my-claudecode:plan command (planner)
|
|
303
|
+
│ ├── review.md # /oh-my-claudecode:review command (critic)
|
|
304
|
+
│ ├── planner.md # /oh-my-claudecode:planner command
|
|
305
|
+
│ ├── orchestrator.md # /oh-my-claudecode:orchestrator command
|
|
306
|
+
│ ├── ralph-loop.md # /oh-my-claudecode:ralph-loop command
|
|
307
|
+
│ └── cancel-ralph.md # /oh-my-claudecode:cancel-ralph command
|
|
308
308
|
├── skills/
|
|
309
309
|
│ ├── ultrawork/SKILL.md # Maximum performance mode
|
|
310
310
|
│ ├── deepinit/SKILL.md # Hierarchical AGENTS.md generation
|
|
@@ -363,22 +363,22 @@ claude
|
|
|
363
363
|
/oh-my-claudecode:ultrawork implement user dashboard with charts
|
|
364
364
|
|
|
365
365
|
# Initialize structured task with PRD
|
|
366
|
-
/ralph-init implement user authentication with OAuth
|
|
366
|
+
/oh-my-claudecode:ralph-init implement user authentication with OAuth
|
|
367
367
|
|
|
368
368
|
# Maximum intensity with completion guarantee
|
|
369
|
-
/ultrawork-ralph migrate database schema to PostgreSQL
|
|
369
|
+
/oh-my-claudecode:ultrawork-ralph migrate database schema to PostgreSQL
|
|
370
370
|
|
|
371
371
|
# Autonomous QA cycling
|
|
372
|
-
/ultraqa all tests must pass with 90%+ coverage
|
|
372
|
+
/oh-my-claudecode:ultraqa all tests must pass with 90%+ coverage
|
|
373
373
|
|
|
374
374
|
# Save important discoveries
|
|
375
|
-
/note Project uses Bun runtime instead of Node.js
|
|
375
|
+
/oh-my-claudecode:note Project uses Bun runtime instead of Node.js
|
|
376
376
|
|
|
377
377
|
# Deep search
|
|
378
|
-
/deepsearch API endpoints that handle user data
|
|
378
|
+
/oh-my-claudecode:deepsearch API endpoints that handle user data
|
|
379
379
|
|
|
380
380
|
# Deep analysis
|
|
381
|
-
/analyze performance bottleneck in the database layer
|
|
381
|
+
/oh-my-claudecode:analyze performance bottleneck in the database layer
|
|
382
382
|
```
|
|
383
383
|
|
|
384
384
|
### Magic Keywords
|
|
@@ -867,7 +867,9 @@ If you're coming from oh-my-opencode:
|
|
|
867
867
|
## Requirements
|
|
868
868
|
|
|
869
869
|
- [Claude Code](https://docs.anthropic.com/claude-code) installed
|
|
870
|
-
-
|
|
870
|
+
- One of:
|
|
871
|
+
- **Claude Max/Pro subscription** (recommended for individuals)
|
|
872
|
+
- **Anthropic API key** (`ANTHROPIC_API_KEY` environment variable)
|
|
871
873
|
- **Windows**: Node.js 20+ (for npm installation)
|
|
872
874
|
- **macOS/Linux**: Bash shell (default) or Node.js 20+ (optional)
|
|
873
875
|
|
package/docs/MIGRATION-v3.md
CHANGED
|
@@ -81,11 +81,11 @@ Slash commands have been updated to use new naming:
|
|
|
81
81
|
|
|
82
82
|
| Old Command | New Command |
|
|
83
83
|
|-------------|-------------|
|
|
84
|
-
| /sisyphus | /orchestrate |
|
|
85
|
-
| /sisyphus-default | /omc-default |
|
|
86
|
-
| /sisyphus-default-global | /omc-default-global |
|
|
87
|
-
| /prometheus | /planner |
|
|
88
|
-
| /mnemosyne | /learner |
|
|
84
|
+
| /sisyphus | /oh-my-claudecode:orchestrate |
|
|
85
|
+
| /sisyphus-default | /oh-my-claudecode:omc-default |
|
|
86
|
+
| /sisyphus-default-global | /oh-my-claudecode:omc-default-global |
|
|
87
|
+
| /prometheus | /oh-my-claudecode:planner |
|
|
88
|
+
| /mnemosyne | /oh-my-claudecode:learner |
|
|
89
89
|
|
|
90
90
|
## Feature Flag Changes
|
|
91
91
|
|
|
@@ -183,4 +183,4 @@ After migration, verify your setup:
|
|
|
183
183
|
If you encounter issues during migration:
|
|
184
184
|
- Check the [GitHub Issues](https://github.com/Yeachan-Heo/oh-my-claude-sisyphus/issues)
|
|
185
185
|
- Review the [Documentation](https://github.com/Yeachan-Heo/oh-my-claude-sisyphus/tree/main/docs)
|
|
186
|
-
- Run `/doctor` to diagnose common issues
|
|
186
|
+
- Run `/oh-my-claudecode:doctor` to diagnose common issues
|
package/docs/MIGRATION.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
Your old commands still work! But now you don't need them.
|
|
6
6
|
|
|
7
|
-
**Before 3.0:** Explicitly invoke 25+ commands like `/ralph "task"`, `/ultrawork "task"`
|
|
7
|
+
**Before 3.0:** Explicitly invoke 25+ commands like `/oh-my-claudecode:ralph "task"`, `/oh-my-claudecode:ultrawork "task"`
|
|
8
8
|
|
|
9
9
|
**After 3.0:** Just work naturally - Claude auto-activates the right behaviors. One-time setup: just say "setup omc"
|
|
10
10
|
|
|
@@ -18,13 +18,13 @@ You had to remember and explicitly invoke specific commands for each mode:
|
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
20
|
# 2.x workflow: Multiple commands, lots to remember
|
|
21
|
-
/ralph "implement user authentication" # Persistence mode
|
|
22
|
-
/ultrawork "refactor the API layer" # Maximum parallelism
|
|
23
|
-
/planner "plan the new dashboard" # Planning interview
|
|
24
|
-
/deepsearch "find database schema files" # Deep search
|
|
25
|
-
/git-master "commit these changes" # Git expertise
|
|
26
|
-
/deepinit ./src # Index codebase
|
|
27
|
-
/analyze "why is this test failing?" # Deep analysis
|
|
21
|
+
/oh-my-claudecode:ralph "implement user authentication" # Persistence mode
|
|
22
|
+
/oh-my-claudecode:ultrawork "refactor the API layer" # Maximum parallelism
|
|
23
|
+
/oh-my-claudecode:planner "plan the new dashboard" # Planning interview
|
|
24
|
+
/oh-my-claudecode:deepsearch "find database schema files" # Deep search
|
|
25
|
+
/oh-my-claudecode:git-master "commit these changes" # Git expertise
|
|
26
|
+
/oh-my-claudecode:deepinit ./src # Index codebase
|
|
27
|
+
/oh-my-claudecode:analyze "why is this test failing?" # Deep analysis
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
### After (3.0): Auto-Activation + Keywords
|
|
@@ -49,20 +49,20 @@ All 2.x commands continue to work. Here's what changed:
|
|
|
49
49
|
|
|
50
50
|
| 2.x Command | 3.0 Equivalent | Works? |
|
|
51
51
|
|-------------|----------------|--------|
|
|
52
|
-
| `/ralph "task"` | Say "don't stop until done" OR use `ralph` keyword | ✅ YES (both ways) |
|
|
53
|
-
| `/ultrawork "task"` | Say "fast" or "parallel" OR use `ulw` keyword | ✅ YES (both ways) |
|
|
54
|
-
| `/ultrawork-ralph` | Say "ralph ulw:" prefix | ✅ YES (keyword combo) |
|
|
55
|
-
| `/planner "task"` | Say "plan this" OR use `plan` keyword | ✅ YES (both ways) |
|
|
56
|
-
| `/plan "description"` | Start planning naturally | ✅ YES |
|
|
57
|
-
| `/review [path]` | Invoke normally | ✅ YES (unchanged) |
|
|
58
|
-
| `/deepsearch "query"` | Say "find" or "search" | ✅ YES (auto-detect) |
|
|
59
|
-
| `/analyze "target"` | Say "analyze" or "investigate" | ✅ YES (auto-detect) |
|
|
60
|
-
| `/deepinit [path]` | Invoke normally | ✅ YES (unchanged) |
|
|
61
|
-
| `/git-master` | Say "git", "commit", "atomic commit" | ✅ YES (auto-detect) |
|
|
62
|
-
| `/frontend-ui-ux` | Say "UI", "styling", "component", "design" | ✅ YES (auto-detect) |
|
|
63
|
-
| `/note "content"` | Say "remember this" or "save this" | ✅ YES (auto-detect) |
|
|
64
|
-
| `/cancel-ralph` | Say "stop", "cancel", or "abort" | ✅ YES (auto-detect) |
|
|
65
|
-
| `/doctor` | Invoke normally | ✅ YES (unchanged) |
|
|
52
|
+
| `/oh-my-claudecode:ralph "task"` | Say "don't stop until done" OR use `ralph` keyword | ✅ YES (both ways) |
|
|
53
|
+
| `/oh-my-claudecode:ultrawork "task"` | Say "fast" or "parallel" OR use `ulw` keyword | ✅ YES (both ways) |
|
|
54
|
+
| `/oh-my-claudecode:ultrawork-ralph` | Say "ralph ulw:" prefix | ✅ YES (keyword combo) |
|
|
55
|
+
| `/oh-my-claudecode:planner "task"` | Say "plan this" OR use `plan` keyword | ✅ YES (both ways) |
|
|
56
|
+
| `/oh-my-claudecode:plan "description"` | Start planning naturally | ✅ YES |
|
|
57
|
+
| `/oh-my-claudecode:review [path]` | Invoke normally | ✅ YES (unchanged) |
|
|
58
|
+
| `/oh-my-claudecode:deepsearch "query"` | Say "find" or "search" | ✅ YES (auto-detect) |
|
|
59
|
+
| `/oh-my-claudecode:analyze "target"` | Say "analyze" or "investigate" | ✅ YES (auto-detect) |
|
|
60
|
+
| `/oh-my-claudecode:deepinit [path]` | Invoke normally | ✅ YES (unchanged) |
|
|
61
|
+
| `/oh-my-claudecode:git-master` | Say "git", "commit", "atomic commit" | ✅ YES (auto-detect) |
|
|
62
|
+
| `/oh-my-claudecode:frontend-ui-ux` | Say "UI", "styling", "component", "design" | ✅ YES (auto-detect) |
|
|
63
|
+
| `/oh-my-claudecode:note "content"` | Say "remember this" or "save this" | ✅ YES (auto-detect) |
|
|
64
|
+
| `/oh-my-claudecode:cancel-ralph` | Say "stop", "cancel", or "abort" | ✅ YES (auto-detect) |
|
|
65
|
+
| `/oh-my-claudecode:doctor` | Invoke normally | ✅ YES (unchanged) |
|
|
66
66
|
| All other commands | Work exactly as before | ✅ YES |
|
|
67
67
|
|
|
68
68
|
---
|
|
@@ -113,7 +113,7 @@ If in planning → End planning interview
|
|
|
113
113
|
If multiple active → Stop the most recent
|
|
114
114
|
```
|
|
115
115
|
|
|
116
|
-
No more `/cancel-ralph` - just say "cancel"!
|
|
116
|
+
No more `/oh-my-claudecode:cancel-ralph` - just say "cancel"!
|
|
117
117
|
|
|
118
118
|
---
|
|
119
119
|
|
|
@@ -126,10 +126,10 @@ No more `/cancel-ralph` - just say "cancel"!
|
|
|
126
126
|
You can still use explicit commands if you prefer:
|
|
127
127
|
|
|
128
128
|
```bash
|
|
129
|
-
/ralph "implement OAuth" # Still works ✅
|
|
130
|
-
/ultrawork "refactor everything" # Still works ✅
|
|
131
|
-
/planner "plan the feature" # Still works ✅
|
|
132
|
-
/cancel-ralph # Still works ✅
|
|
129
|
+
/oh-my-claudecode:ralph "implement OAuth" # Still works ✅
|
|
130
|
+
/oh-my-claudecode:ultrawork "refactor everything" # Still works ✅
|
|
131
|
+
/oh-my-claudecode:planner "plan the feature" # Still works ✅
|
|
132
|
+
/oh-my-claudecode:cancel-ralph # Still works ✅
|
|
133
133
|
```
|
|
134
134
|
|
|
135
135
|
These are now **optional** - use them if you like, but you don't have to.
|
|
@@ -172,7 +172,7 @@ See [MIGRATION-v3.md](MIGRATION-v3.md) for detailed 2.x → 3.0 naming changes.
|
|
|
172
172
|
**No commands to memorize.** Work naturally:
|
|
173
173
|
|
|
174
174
|
```
|
|
175
|
-
Before: "OK, I need to use /ultrawork for speed..."
|
|
175
|
+
Before: "OK, I need to use /oh-my-claudecode:ultrawork for speed..."
|
|
176
176
|
After: "I'm in a hurry, go fast!"
|
|
177
177
|
↓
|
|
178
178
|
Claude: "I'm activating ultrawork mode..."
|
|
@@ -194,7 +194,7 @@ Your request Claude's action
|
|
|
194
194
|
|
|
195
195
|
You don't ask for delegation - it happens automatically.
|
|
196
196
|
|
|
197
|
-
### 3. Learned Skills (`/learner`)
|
|
197
|
+
### 3. Learned Skills (`/oh-my-claudecode:learner`)
|
|
198
198
|
|
|
199
199
|
Extract reusable insights from problem-solving:
|
|
200
200
|
|
|
@@ -219,7 +219,7 @@ See what Claude is doing in the status bar:
|
|
|
219
219
|
[OMC] ralph:3/10 | US-002 | ultrawork skill:planner | ctx:67% | agents:2 | todos:2/5
|
|
220
220
|
```
|
|
221
221
|
|
|
222
|
-
Run `/hud setup` to install. Presets: minimal, focused, full.
|
|
222
|
+
Run `/oh-my-claudecode:hud setup` to install. Presets: minimal, focused, full.
|
|
223
223
|
|
|
224
224
|
### 5. Three-Tier Memory System
|
|
225
225
|
|
|
@@ -233,10 +233,10 @@ Permanently loaded on session start
|
|
|
233
233
|
Never lost through compaction
|
|
234
234
|
```
|
|
235
235
|
|
|
236
|
-
Or use `/note` to save discoveries manually:
|
|
236
|
+
Or use `/oh-my-claudecode:note` to save discoveries manually:
|
|
237
237
|
|
|
238
238
|
```bash
|
|
239
|
-
/note Project uses PostgreSQL with Prisma ORM
|
|
239
|
+
/oh-my-claudecode:note Project uses PostgreSQL with Prisma ORM
|
|
240
240
|
```
|
|
241
241
|
|
|
242
242
|
### 6. Structured Task Tracking (PRD Support)
|
|
@@ -244,7 +244,7 @@ Or use `/note` to save discoveries manually:
|
|
|
244
244
|
**Ralph Loop now uses Product Requirements Documents:**
|
|
245
245
|
|
|
246
246
|
```bash
|
|
247
|
-
/ralph-init "implement OAuth with multiple providers"
|
|
247
|
+
/oh-my-claudecode:ralph-init "implement OAuth with multiple providers"
|
|
248
248
|
↓
|
|
249
249
|
Auto-creates PRD with user stories
|
|
250
250
|
↓
|
|
@@ -312,7 +312,7 @@ You're done - Claude handles the rest
|
|
|
312
312
|
Apply oh-my-claudecode to current project only:
|
|
313
313
|
|
|
314
314
|
```
|
|
315
|
-
/omc-default
|
|
315
|
+
/oh-my-claudecode:omc-default
|
|
316
316
|
```
|
|
317
317
|
|
|
318
318
|
Creates: `./.claude/CLAUDE.md`
|
|
@@ -322,7 +322,7 @@ Creates: `./.claude/CLAUDE.md`
|
|
|
322
322
|
Apply to all Claude Code sessions:
|
|
323
323
|
|
|
324
324
|
```
|
|
325
|
-
/omc-default-global
|
|
325
|
+
/oh-my-claudecode:omc-default-global
|
|
326
326
|
```
|
|
327
327
|
|
|
328
328
|
Creates: `~/.claude/CLAUDE.md`
|
|
@@ -337,7 +337,7 @@ Creates: `~/.claude/CLAUDE.md`
|
|
|
337
337
|
|
|
338
338
|
**2.x Workflow:**
|
|
339
339
|
```
|
|
340
|
-
/ultrawork "implement the todo list feature"
|
|
340
|
+
/oh-my-claudecode:ultrawork "implement the todo list feature"
|
|
341
341
|
```
|
|
342
342
|
|
|
343
343
|
**3.0 Workflow:**
|
|
@@ -353,7 +353,7 @@ Claude: "I'm activating ultrawork for maximum parallelism"
|
|
|
353
353
|
|
|
354
354
|
**2.x Workflow:**
|
|
355
355
|
```
|
|
356
|
-
/ralph "debug the memory leak"
|
|
356
|
+
/oh-my-claudecode:ralph "debug the memory leak"
|
|
357
357
|
```
|
|
358
358
|
|
|
359
359
|
**3.0 Workflow:**
|
|
@@ -369,7 +369,7 @@ Claude: "I'm activating ralph-loop to ensure completion"
|
|
|
369
369
|
|
|
370
370
|
**2.x Workflow:**
|
|
371
371
|
```
|
|
372
|
-
/planner "design the new authentication system"
|
|
372
|
+
/oh-my-claudecode:planner "design the new authentication system"
|
|
373
373
|
```
|
|
374
374
|
|
|
375
375
|
**3.0 Workflow:**
|
|
@@ -387,7 +387,7 @@ Interview begins automatically
|
|
|
387
387
|
|
|
388
388
|
**2.x Workflow:**
|
|
389
389
|
```
|
|
390
|
-
/cancel-ralph
|
|
390
|
+
/oh-my-claudecode:cancel-ralph
|
|
391
391
|
```
|
|
392
392
|
|
|
393
393
|
**3.0 Workflow:**
|
|
@@ -421,10 +421,10 @@ A: No. Keywords are optional shortcuts. Claude auto-detects intent without them.
|
|
|
421
421
|
A: No. All 2.x commands continue to work exactly as before.
|
|
422
422
|
|
|
423
423
|
**Q: What if I like explicit commands?**
|
|
424
|
-
A: Keep using them! `/ralph`, `/ultrawork`, `/planner` all still work.
|
|
424
|
+
A: Keep using them! `/oh-my-claudecode:ralph`, `/oh-my-claudecode:ultrawork`, `/oh-my-claudecode:planner` all still work.
|
|
425
425
|
|
|
426
426
|
**Q: How do I know what Claude is doing?**
|
|
427
|
-
A: Claude announces major behaviors: "I'm activating ralph-loop..." or set up `/hud` for real-time status.
|
|
427
|
+
A: Claude announces major behaviors: "I'm activating ralph-loop..." or set up `/oh-my-claudecode:hud` for real-time status.
|
|
428
428
|
|
|
429
429
|
**Q: Where's the old command list?**
|
|
430
430
|
A: See [README.md](../README.md) for full command reference. All commands still work.
|
|
@@ -436,9 +436,9 @@ A: Keywords are explicit shortcuts. Natural language triggers auto-detection. Bo
|
|
|
436
436
|
|
|
437
437
|
## Need Help?
|
|
438
438
|
|
|
439
|
-
- **Diagnose issues**: Run `/doctor`
|
|
439
|
+
- **Diagnose issues**: Run `/oh-my-claudecode:doctor`
|
|
440
440
|
- **See all commands**: Run `/oh-my-claudecode:help`
|
|
441
|
-
- **View real-time status**: Run `/hud setup`
|
|
441
|
+
- **View real-time status**: Run `/oh-my-claudecode:hud setup`
|
|
442
442
|
- **Review detailed changelog**: See [CHANGELOG.md](../CHANGELOG.md)
|
|
443
443
|
- **Report bugs**: [GitHub Issues](https://github.com/Yeachan-Heo/oh-my-claude-sisyphus/issues)
|
|
444
444
|
|