oh-my-claude-sisyphus 3.8.6 → 3.8.8
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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/dist/hooks/keyword-detector/index.js +1 -1
- package/docs/CLAUDE.md +5 -5
- package/package.json +1 -1
- package/scripts/keyword-detector.mjs +4 -2
- package/scripts/persistent-mode.mjs +264 -314
- package/templates/hooks/persistent-mode.mjs +276 -177
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
{
|
|
11
11
|
"name": "oh-my-claudecode",
|
|
12
12
|
"description": "Claude Code native multi-agent orchestration with intelligent model routing, 28 agent variants, and 30 powerful skills. Zero learning curve. Maximum power.",
|
|
13
|
-
"version": "3.8.
|
|
13
|
+
"version": "3.8.7",
|
|
14
14
|
"author": {
|
|
15
15
|
"name": "Yeachan Heo",
|
|
16
16
|
"email": "hurrc04@gmail.com"
|
|
@@ -31,7 +31,7 @@ const AUTOPILOT_PHRASE_PATTERNS = [
|
|
|
31
31
|
* Keyword patterns for each mode
|
|
32
32
|
*/
|
|
33
33
|
const KEYWORD_PATTERNS = {
|
|
34
|
-
cancel: /\b(
|
|
34
|
+
cancel: /\b(cancelomc|stopomc)\b/i,
|
|
35
35
|
ralph: /\b(ralph|don't stop|must complete|until done)\b/i,
|
|
36
36
|
autopilot: /\b(autopilot|auto pilot|auto-pilot|autonomous|full auto|fullsend)\b/i,
|
|
37
37
|
ultrapilot: /\b(ultrapilot|ultra-pilot)\b|\bparallel\s+build\b|\bswarm\s+build\b/i,
|
package/docs/CLAUDE.md
CHANGED
|
@@ -103,7 +103,7 @@ When you detect these patterns, you MUST invoke the corresponding skill:
|
|
|
103
103
|
| "research", "analyze data", "statistics" | `research` |
|
|
104
104
|
| "tdd", "test first", "red green" | `tdd` |
|
|
105
105
|
| "setup mcp", "configure mcp" | `mcp-setup` |
|
|
106
|
-
| "
|
|
106
|
+
| "cancelomc", "stopomc" | `cancel` (unified) |
|
|
107
107
|
|
|
108
108
|
**Keyword Conflict Resolution:**
|
|
109
109
|
- Explicit mode keywords (`ulw`, `ultrawork`, `eco`, `ecomode`) ALWAYS override defaults
|
|
@@ -214,7 +214,7 @@ Users don't need to learn commands. You detect intent and activate behaviors aut
|
|
|
214
214
|
| "don't stop until done" | Activate ralph-loop for persistence |
|
|
215
215
|
| UI/frontend work | Activate design sensibility + delegate to designer |
|
|
216
216
|
| "fast" / "parallel" | Activate default execution mode (ultrawork or ecomode per config) |
|
|
217
|
-
| "
|
|
217
|
+
| "cancelomc" / "stopomc" | Intelligently stop current operation |
|
|
218
218
|
|
|
219
219
|
### Magic Keywords (Optional Shortcuts)
|
|
220
220
|
|
|
@@ -231,7 +231,7 @@ Users don't need to learn commands. You detect intent and activate behaviors aut
|
|
|
231
231
|
|
|
232
232
|
### Stopping and Cancelling
|
|
233
233
|
|
|
234
|
-
User says "
|
|
234
|
+
User says "cancelomc", "stopomc" → Invoke unified `cancel` skill (automatically detects active mode):
|
|
235
235
|
- Detects and cancels: autopilot, ultrapilot, ralph, ultrawork, ultraqa, swarm, pipeline
|
|
236
236
|
- In planning → end interview
|
|
237
237
|
- Unclear → ask user
|
|
@@ -268,7 +268,7 @@ User says "stop", "cancel", "abort" → Invoke unified `cancel` skill (automatic
|
|
|
268
268
|
| `ultrapilot` | Parallel autopilot (3-5x faster) | "ultrapilot", "parallel build", "swarm build" | `/oh-my-claudecode:ultrapilot` |
|
|
269
269
|
| `swarm` | N coordinated agents with task claiming | "swarm N agents" | `/oh-my-claudecode:swarm` |
|
|
270
270
|
| `pipeline` | Sequential agent chaining | "pipeline", "chain" | `/oh-my-claudecode:pipeline` |
|
|
271
|
-
| `cancel` | Unified cancellation for all modes | "
|
|
271
|
+
| `cancel` | Unified cancellation for all modes | "cancelomc", "stopomc" | `/oh-my-claudecode:cancel` |
|
|
272
272
|
| `ecomode` | Token-efficient parallel execution | "eco", "efficient", "budget" | `/oh-my-claudecode:ecomode` |
|
|
273
273
|
| `research` | Parallel scientist orchestration | "research", "analyze data", "statistics" | `/oh-my-claudecode:research` |
|
|
274
274
|
| `tdd` | TDD enforcement: test-first development | "tdd", "test first" | `/oh-my-claudecode:tdd` |
|
|
@@ -511,7 +511,7 @@ Sequential agent chaining with data passing between stages.
|
|
|
511
511
|
|
|
512
512
|
Smart cancellation that auto-detects active mode.
|
|
513
513
|
|
|
514
|
-
**Usage:** `/cancel` or just say "
|
|
514
|
+
**Usage:** `/cancel` or just say "cancelomc", "stopomc"
|
|
515
515
|
|
|
516
516
|
Auto-detects and cancels: autopilot, ultrapilot, ralph, ultrawork, ultraqa, ecomode, swarm, pipeline
|
|
517
517
|
Use `--force` or `--all` to clear ALL states.
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* Cross-platform: Windows, macOS, Linux
|
|
7
7
|
*
|
|
8
8
|
* Supported keywords (in priority order):
|
|
9
|
-
* 1.
|
|
9
|
+
* 1. cancelomc/stopomc: Stop active modes
|
|
10
10
|
* 2. ralph: Persistence mode until task completion
|
|
11
11
|
* 3. autopilot: Full autonomous execution
|
|
12
12
|
* 4. ultrapilot: Parallel autopilot
|
|
@@ -172,7 +172,9 @@ async function main() {
|
|
|
172
172
|
// Priority order: cancel > ralph > autopilot > ultrapilot > ultrawork > ecomode > swarm > pipeline > ralplan > plan > tdd > research > ultrathink > deepsearch > analyze
|
|
173
173
|
|
|
174
174
|
// Priority 1: Cancel (BEFORE other modes - clears states)
|
|
175
|
-
|
|
175
|
+
// Use specific keywords to avoid false positives from natural language
|
|
176
|
+
// (e.g., "don't let it stop the context" or URLs containing "cancel")
|
|
177
|
+
if (/\b(cancelomc|stopomc)\b/i.test(cleanPrompt)) {
|
|
176
178
|
// Special: clear state files instead of creating them
|
|
177
179
|
clearStateFiles(directory, ['ralph', 'autopilot', 'ultrapilot', 'ultrawork', 'ecomode', 'swarm', 'pipeline']);
|
|
178
180
|
console.log(JSON.stringify(createHookOutput(createSkillInvocation('cancel', prompt))));
|