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/skills/ultraqa/SKILL.md
CHANGED
|
@@ -20,11 +20,11 @@ Parse the goal from arguments. Supported formats:
|
|
|
20
20
|
|
|
21
21
|
| Invocation | Goal Type | What to Check |
|
|
22
22
|
|------------|-----------|---------------|
|
|
23
|
-
| `/ultraqa --tests` | tests | All test suites pass |
|
|
24
|
-
| `/ultraqa --build` | build | Build succeeds with exit 0 |
|
|
25
|
-
| `/ultraqa --lint` | lint | No lint errors |
|
|
26
|
-
| `/ultraqa --typecheck` | typecheck | No TypeScript errors |
|
|
27
|
-
| `/ultraqa --custom "pattern"` | custom | Custom success pattern in output |
|
|
23
|
+
| `/oh-my-claudecode:ultraqa --tests` | tests | All test suites pass |
|
|
24
|
+
| `/oh-my-claudecode:ultraqa --build` | build | Build succeeds with exit 0 |
|
|
25
|
+
| `/oh-my-claudecode:ultraqa --lint` | lint | No lint errors |
|
|
26
|
+
| `/oh-my-claudecode:ultraqa --typecheck` | typecheck | No TypeScript errors |
|
|
27
|
+
| `/oh-my-claudecode:ultraqa --custom "pattern"` | custom | Custom success pattern in output |
|
|
28
28
|
|
|
29
29
|
If no structured goal provided, interpret the argument as a custom goal.
|
|
30
30
|
|
|
@@ -108,7 +108,7 @@ Track state in `.omc/ultraqa-state.json`:
|
|
|
108
108
|
|
|
109
109
|
## Cancellation
|
|
110
110
|
|
|
111
|
-
User can cancel with `/cancel-ultraqa` which clears the state file.
|
|
111
|
+
User can cancel with `/oh-my-claudecode:cancel-ultraqa` which clears the state file.
|
|
112
112
|
|
|
113
113
|
## Important Rules
|
|
114
114
|
|