oh-my-claude-sisyphus 3.3.10 → 3.4.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/README.md +74 -8
- package/agents/explore-high.md +195 -0
- package/agents/qa-tester-high.md +141 -0
- package/agents/templates/README.md +110 -0
- package/agents/templates/base-agent.md +54 -0
- package/agents/templates/tier-instructions.md +94 -0
- package/commands/cancel-ecomode.md +71 -0
- package/commands/cancel.md +75 -0
- package/commands/ecomode.md +60 -0
- package/commands/help.md +1 -1
- package/commands/mcp-setup.md +7 -6
- package/commands/pipeline.md +231 -0
- package/commands/planner.md +174 -0
- package/commands/ralplan.md +8 -1
- package/commands/swarm.md +280 -0
- package/commands/ultrapilot.md +158 -0
- package/commands/ultrawork.md +1 -0
- package/dist/__tests__/delegation-enforcer-integration.test.d.ts +6 -0
- package/dist/__tests__/delegation-enforcer-integration.test.d.ts.map +1 -0
- package/dist/__tests__/delegation-enforcer-integration.test.js +136 -0
- package/dist/__tests__/delegation-enforcer-integration.test.js.map +1 -0
- package/dist/__tests__/delegation-enforcer.test.d.ts +5 -0
- package/dist/__tests__/delegation-enforcer.test.d.ts.map +1 -0
- package/dist/__tests__/delegation-enforcer.test.js +208 -0
- package/dist/__tests__/delegation-enforcer.test.js.map +1 -0
- package/dist/__tests__/hooks.test.js +2 -2
- package/dist/__tests__/hooks.test.js.map +1 -1
- package/dist/__tests__/installer.test.js +4 -6
- package/dist/__tests__/installer.test.js.map +1 -1
- package/dist/__tests__/ralph-prd.test.js +1 -1
- package/dist/__tests__/ralph-prd.test.js.map +1 -1
- package/dist/__tests__/ralph-progress.test.js +1 -1
- package/dist/__tests__/ralph-progress.test.js.map +1 -1
- package/dist/__tests__/skills.test.js +31 -24
- package/dist/__tests__/skills.test.js.map +1 -1
- package/dist/agents/analyst.d.ts.map +1 -1
- package/dist/agents/analyst.js +1 -0
- package/dist/agents/analyst.js.map +1 -1
- package/dist/agents/architect.d.ts.map +1 -1
- package/dist/agents/architect.js +1 -0
- package/dist/agents/architect.js.map +1 -1
- package/dist/agents/critic.d.ts.map +1 -1
- package/dist/agents/critic.js +1 -0
- package/dist/agents/critic.js.map +1 -1
- package/dist/agents/definitions.d.ts +5 -1
- package/dist/agents/definitions.d.ts.map +1 -1
- package/dist/agents/definitions.js +53 -155
- package/dist/agents/definitions.js.map +1 -1
- package/dist/agents/designer.d.ts.map +1 -1
- package/dist/agents/designer.js +1 -0
- package/dist/agents/designer.js.map +1 -1
- package/dist/agents/executor.d.ts.map +1 -1
- package/dist/agents/executor.js +1 -0
- package/dist/agents/executor.js.map +1 -1
- package/dist/agents/explore.d.ts.map +1 -1
- package/dist/agents/explore.js +1 -0
- package/dist/agents/explore.js.map +1 -1
- package/dist/agents/planner.d.ts.map +1 -1
- package/dist/agents/planner.js +1 -0
- package/dist/agents/planner.js.map +1 -1
- package/dist/agents/qa-tester.d.ts.map +1 -1
- package/dist/agents/qa-tester.js +1 -0
- package/dist/agents/qa-tester.js.map +1 -1
- package/dist/agents/researcher.d.ts.map +1 -1
- package/dist/agents/researcher.js +1 -0
- package/dist/agents/researcher.js.map +1 -1
- package/dist/agents/scientist.d.ts.map +1 -1
- package/dist/agents/scientist.js +1 -0
- package/dist/agents/scientist.js.map +1 -1
- package/dist/agents/types.d.ts +2 -0
- package/dist/agents/types.d.ts.map +1 -1
- package/dist/agents/types.js.map +1 -1
- package/dist/agents/vision.d.ts.map +1 -1
- package/dist/agents/vision.js +1 -0
- package/dist/agents/vision.js.map +1 -1
- package/dist/agents/writer.d.ts.map +1 -1
- package/dist/agents/writer.js +1 -0
- package/dist/agents/writer.js.map +1 -1
- package/dist/analytics/cost-estimator.d.ts +14 -0
- package/dist/analytics/cost-estimator.d.ts.map +1 -0
- package/dist/analytics/cost-estimator.js +70 -0
- package/dist/analytics/cost-estimator.js.map +1 -0
- package/dist/analytics/export.d.ts +7 -0
- package/dist/analytics/export.d.ts.map +1 -0
- package/dist/analytics/export.js +93 -0
- package/dist/analytics/export.js.map +1 -0
- package/dist/analytics/index.d.ts +14 -0
- package/dist/analytics/index.d.ts.map +1 -0
- package/dist/analytics/index.js +14 -0
- package/dist/analytics/index.js.map +1 -0
- package/dist/analytics/metrics-collector.d.ts +30 -0
- package/dist/analytics/metrics-collector.d.ts.map +1 -0
- package/dist/analytics/metrics-collector.js +96 -0
- package/dist/analytics/metrics-collector.js.map +1 -0
- package/dist/analytics/query-engine.d.ts +32 -0
- package/dist/analytics/query-engine.d.ts.map +1 -0
- package/dist/analytics/query-engine.js +151 -0
- package/dist/analytics/query-engine.js.map +1 -0
- package/dist/analytics/session-manager.d.ts +26 -0
- package/dist/analytics/session-manager.d.ts.map +1 -0
- package/dist/analytics/session-manager.js +201 -0
- package/dist/analytics/session-manager.js.map +1 -0
- package/dist/analytics/session-types.d.ts +37 -0
- package/dist/analytics/session-types.d.ts.map +1 -0
- package/dist/analytics/session-types.js +2 -0
- package/dist/analytics/session-types.js.map +1 -0
- package/dist/analytics/token-tracker.d.ts +24 -0
- package/dist/analytics/token-tracker.d.ts.map +1 -0
- package/dist/analytics/token-tracker.js +161 -0
- package/dist/analytics/token-tracker.js.map +1 -0
- package/dist/analytics/types.d.ts +37 -0
- package/dist/analytics/types.d.ts.map +1 -0
- package/dist/analytics/types.js +21 -0
- package/dist/analytics/types.js.map +1 -0
- package/dist/cli/analytics.d.ts +3 -0
- package/dist/cli/analytics.d.ts.map +1 -0
- package/dist/cli/analytics.js +74 -0
- package/dist/cli/analytics.js.map +1 -0
- package/dist/cli/commands/agents.d.ts +5 -0
- package/dist/cli/commands/agents.d.ts.map +1 -0
- package/dist/cli/commands/agents.js +29 -0
- package/dist/cli/commands/agents.js.map +1 -0
- package/dist/cli/commands/cleanup.d.ts +4 -0
- package/dist/cli/commands/cleanup.d.ts.map +1 -0
- package/dist/cli/commands/cleanup.js +17 -0
- package/dist/cli/commands/cleanup.js.map +1 -0
- package/dist/cli/commands/cost.d.ts +4 -0
- package/dist/cli/commands/cost.d.ts.map +1 -0
- package/dist/cli/commands/cost.js +53 -0
- package/dist/cli/commands/cost.js.map +1 -0
- package/dist/cli/commands/export.d.ts +5 -0
- package/dist/cli/commands/export.d.ts.map +1 -0
- package/dist/cli/commands/export.js +30 -0
- package/dist/cli/commands/export.js.map +1 -0
- package/dist/cli/commands/sessions.d.ts +5 -0
- package/dist/cli/commands/sessions.d.ts.map +1 -0
- package/dist/cli/commands/sessions.js +37 -0
- package/dist/cli/commands/sessions.js.map +1 -0
- package/dist/cli/commands/stats.d.ts +4 -0
- package/dist/cli/commands/stats.d.ts.map +1 -0
- package/dist/cli/commands/stats.js +43 -0
- package/dist/cli/commands/stats.js.map +1 -0
- package/dist/cli/index.js +0 -3
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/utils/formatting.d.ts +22 -0
- package/dist/cli/utils/formatting.d.ts.map +1 -0
- package/dist/cli/utils/formatting.js +70 -0
- package/dist/cli/utils/formatting.js.map +1 -0
- package/dist/config/loader.d.ts.map +1 -1
- package/dist/config/loader.js +1 -6
- package/dist/config/loader.js.map +1 -1
- package/dist/features/delegation-enforcer.d.ts +71 -0
- package/dist/features/delegation-enforcer.d.ts.map +1 -0
- package/dist/features/delegation-enforcer.js +128 -0
- package/dist/features/delegation-enforcer.js.map +1 -0
- package/dist/features/index.d.ts +3 -0
- package/dist/features/index.d.ts.map +1 -1
- package/dist/features/index.js +18 -0
- package/dist/features/index.js.map +1 -1
- package/dist/features/state-manager/index.d.ts +100 -0
- package/dist/features/state-manager/index.d.ts.map +1 -0
- package/dist/features/state-manager/index.js +407 -0
- package/dist/features/state-manager/index.js.map +1 -0
- package/dist/features/state-manager/types.d.ts +147 -0
- package/dist/features/state-manager/types.d.ts.map +1 -0
- package/dist/features/state-manager/types.js +30 -0
- package/dist/features/state-manager/types.js.map +1 -0
- package/dist/features/task-decomposer/index.d.ts +33 -0
- package/dist/features/task-decomposer/index.d.ts.map +1 -0
- package/dist/features/task-decomposer/index.js +698 -0
- package/dist/features/task-decomposer/index.js.map +1 -0
- package/dist/features/task-decomposer/types.d.ts +133 -0
- package/dist/features/task-decomposer/types.d.ts.map +1 -0
- package/dist/features/task-decomposer/types.js +8 -0
- package/dist/features/task-decomposer/types.js.map +1 -0
- package/dist/features/verification/example.d.ts +49 -0
- package/dist/features/verification/example.d.ts.map +1 -0
- package/dist/features/verification/example.js +235 -0
- package/dist/features/verification/example.js.map +1 -0
- package/dist/features/verification/index.d.ts +97 -0
- package/dist/features/verification/index.d.ts.map +1 -0
- package/dist/features/verification/index.js +439 -0
- package/dist/features/verification/index.js.map +1 -0
- package/dist/features/verification/types.d.ts +142 -0
- package/dist/features/verification/types.d.ts.map +1 -0
- package/dist/features/verification/types.js +7 -0
- package/dist/features/verification/types.js.map +1 -0
- package/dist/hooks/agent-usage-reminder/constants.d.ts.map +1 -1
- package/dist/hooks/agent-usage-reminder/constants.js +0 -1
- package/dist/hooks/agent-usage-reminder/constants.js.map +1 -1
- package/dist/hooks/autopilot/__tests__/cancel.test.js +4 -4
- package/dist/hooks/autopilot/__tests__/cancel.test.js.map +1 -1
- package/dist/hooks/autopilot/__tests__/summary.test.js +1 -1
- package/dist/hooks/autopilot/__tests__/summary.test.js.map +1 -1
- package/dist/hooks/autopilot/__tests__/transition.test.js +1 -2
- package/dist/hooks/autopilot/__tests__/transition.test.js.map +1 -1
- package/dist/hooks/autopilot/cancel.js +2 -2
- package/dist/hooks/autopilot/cancel.js.map +1 -1
- package/dist/hooks/autopilot/enforcement.d.ts +16 -2
- package/dist/hooks/autopilot/enforcement.d.ts.map +1 -1
- package/dist/hooks/autopilot/enforcement.js +78 -4
- package/dist/hooks/autopilot/enforcement.js.map +1 -1
- package/dist/hooks/autopilot/index.d.ts +3 -6
- package/dist/hooks/autopilot/index.d.ts.map +1 -1
- package/dist/hooks/autopilot/index.js +6 -12
- package/dist/hooks/autopilot/index.js.map +1 -1
- package/dist/hooks/autopilot/state.d.ts +36 -2
- package/dist/hooks/autopilot/state.d.ts.map +1 -1
- package/dist/hooks/autopilot/state.js +216 -2
- package/dist/hooks/autopilot/state.js.map +1 -1
- package/dist/hooks/autopilot/validation.d.ts +23 -2
- package/dist/hooks/autopilot/validation.d.ts.map +1 -1
- package/dist/hooks/autopilot/validation.js +158 -1
- package/dist/hooks/autopilot/validation.js.map +1 -1
- package/dist/hooks/bridge.js +3 -3
- package/dist/hooks/bridge.js.map +1 -1
- package/dist/hooks/index.d.ts +5 -9
- package/dist/hooks/index.d.ts.map +1 -1
- package/dist/hooks/index.js +31 -21
- package/dist/hooks/index.js.map +1 -1
- package/dist/hooks/learner/promotion.js +1 -1
- package/dist/hooks/learner/promotion.js.map +1 -1
- package/dist/hooks/persistent-mode/index.d.ts.map +1 -1
- package/dist/hooks/persistent-mode/index.js +2 -3
- package/dist/hooks/persistent-mode/index.js.map +1 -1
- package/dist/hooks/ralph/index.d.ts +11 -0
- package/dist/hooks/ralph/index.d.ts.map +1 -0
- package/dist/hooks/ralph/index.js +53 -0
- package/dist/hooks/ralph/index.js.map +1 -0
- package/dist/hooks/ralph/loop.d.ts +116 -0
- package/dist/hooks/ralph/loop.d.ts.map +1 -0
- package/dist/hooks/ralph/loop.js +322 -0
- package/dist/hooks/ralph/loop.js.map +1 -0
- package/dist/hooks/ralph/prd.d.ts +130 -0
- package/dist/hooks/ralph/prd.d.ts.map +1 -0
- package/dist/hooks/ralph/prd.js +310 -0
- package/dist/hooks/ralph/prd.js.map +1 -0
- package/dist/hooks/ralph/progress.d.ts +102 -0
- package/dist/hooks/ralph/progress.d.ts.map +1 -0
- package/dist/hooks/ralph/progress.js +408 -0
- package/dist/hooks/ralph/progress.js.map +1 -0
- package/dist/hooks/ralph/verifier.d.ts +72 -0
- package/dist/hooks/ralph/verifier.d.ts.map +1 -0
- package/dist/hooks/ralph/verifier.js +223 -0
- package/dist/hooks/ralph/verifier.js.map +1 -0
- package/dist/hooks/recovery/constants.d.ts +114 -0
- package/dist/hooks/recovery/constants.d.ts.map +1 -0
- package/dist/hooks/recovery/constants.js +227 -0
- package/dist/hooks/recovery/constants.js.map +1 -0
- package/dist/hooks/recovery/context-window.d.ts +24 -0
- package/dist/hooks/recovery/context-window.d.ts.map +1 -0
- package/dist/hooks/recovery/context-window.js +321 -0
- package/dist/hooks/recovery/context-window.js.map +1 -0
- package/dist/hooks/recovery/edit-error.d.ts +24 -0
- package/dist/hooks/recovery/edit-error.d.ts.map +1 -0
- package/dist/hooks/recovery/edit-error.js +56 -0
- package/dist/hooks/recovery/edit-error.js.map +1 -0
- package/dist/hooks/recovery/index.d.ts +102 -0
- package/dist/hooks/recovery/index.d.ts.map +1 -0
- package/dist/hooks/recovery/index.js +166 -0
- package/dist/hooks/recovery/index.js.map +1 -0
- package/dist/hooks/recovery/session-recovery.d.ts +24 -0
- package/dist/hooks/recovery/session-recovery.d.ts.map +1 -0
- package/dist/hooks/recovery/session-recovery.js +281 -0
- package/dist/hooks/recovery/session-recovery.js.map +1 -0
- package/dist/hooks/recovery/storage.d.ts +75 -0
- package/dist/hooks/recovery/storage.d.ts.map +1 -0
- package/dist/hooks/recovery/storage.js +382 -0
- package/dist/hooks/recovery/storage.js.map +1 -0
- package/dist/hooks/recovery/types.d.ts +196 -0
- package/dist/hooks/recovery/types.d.ts.map +1 -0
- package/dist/hooks/recovery/types.js +32 -0
- package/dist/hooks/recovery/types.js.map +1 -0
- package/dist/hooks/ultrapilot/index.d.ts +90 -0
- package/dist/hooks/ultrapilot/index.d.ts.map +1 -0
- package/dist/hooks/ultrapilot/index.js +310 -0
- package/dist/hooks/ultrapilot/index.js.map +1 -0
- package/dist/hooks/ultrapilot/state.d.ts +72 -0
- package/dist/hooks/ultrapilot/state.d.ts.map +1 -0
- package/dist/hooks/ultrapilot/state.js +258 -0
- package/dist/hooks/ultrapilot/state.js.map +1 -0
- package/dist/hooks/ultrapilot/types.d.ts +113 -0
- package/dist/hooks/ultrapilot/types.d.ts.map +1 -0
- package/dist/hooks/ultrapilot/types.js +36 -0
- package/dist/hooks/ultrapilot/types.js.map +1 -0
- package/dist/hooks/ultraqa/index.d.ts +94 -0
- package/dist/hooks/ultraqa/index.d.ts.map +1 -0
- package/dist/hooks/ultraqa/index.js +216 -0
- package/dist/hooks/ultraqa/index.js.map +1 -0
- package/dist/hooks/ultrawork/index.d.ts +62 -0
- package/dist/hooks/ultrawork/index.d.ts.map +1 -0
- package/dist/hooks/ultrawork/index.js +208 -0
- package/dist/hooks/ultrawork/index.js.map +1 -0
- package/dist/hud/analytics-display.d.ts +28 -0
- package/dist/hud/analytics-display.d.ts.map +1 -0
- package/dist/hud/analytics-display.js +105 -0
- package/dist/hud/analytics-display.js.map +1 -0
- package/dist/hud/background-cleanup.d.ts +28 -0
- package/dist/hud/background-cleanup.d.ts.map +1 -0
- package/dist/hud/background-cleanup.js +92 -0
- package/dist/hud/background-cleanup.js.map +1 -0
- package/dist/hud/index.js +4 -2
- package/dist/hud/index.js.map +1 -1
- package/dist/hud/render.d.ts +1 -1
- package/dist/hud/render.d.ts.map +1 -1
- package/dist/hud/render.js +32 -1
- package/dist/hud/render.js.map +1 -1
- package/dist/hud/state.d.ts +5 -0
- package/dist/hud/state.d.ts.map +1 -1
- package/dist/hud/state.js +13 -0
- package/dist/hud/state.js.map +1 -1
- package/dist/hud/types.d.ts +11 -1
- package/dist/hud/types.d.ts.map +1 -1
- package/dist/hud/types.js +19 -0
- package/dist/hud/types.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/dist/installer/index.d.ts +1 -1
- package/dist/installer/index.d.ts.map +1 -1
- package/dist/installer/index.js +1 -1
- package/dist/installer/index.js.map +1 -1
- package/dist/mcp/index.d.ts +1 -1
- package/dist/mcp/index.d.ts.map +1 -1
- package/dist/mcp/index.js +1 -1
- package/dist/mcp/index.js.map +1 -1
- package/dist/mcp/servers.d.ts +2 -18
- package/dist/mcp/servers.d.ts.map +1 -1
- package/dist/mcp/servers.js +4 -36
- package/dist/mcp/servers.js.map +1 -1
- package/dist/shared/types.d.ts +1 -3
- package/dist/shared/types.d.ts.map +1 -1
- package/docs/CLAUDE.md +170 -44
- package/docs/DELEGATION-ENFORCER.md +282 -0
- package/docs/FULL-README.md +130 -16
- package/docs/LOCAL_PLUGIN_INSTALL.md +1 -1
- package/docs/MIGRATION.md +513 -98
- package/docs/SYNC-SYSTEM.md +528 -0
- package/package.json +9 -3
- package/scripts/sync-metadata.ts +363 -0
- package/scripts/test-mutual-exclusion.ts +1 -1
- package/skills/analyze/SKILL.md +0 -1
- package/skills/autopilot/SKILL.md +0 -1
- package/skills/build-fix/SKILL.md +123 -0
- package/skills/cancel/SKILL.md +580 -0
- package/skills/cancel-autopilot/SKILL.md +0 -1
- package/skills/cancel-ecomode/SKILL.md +41 -0
- package/skills/cancel-ralph/SKILL.md +0 -1
- package/skills/cancel-ultraqa/SKILL.md +0 -1
- package/skills/cancel-ultrawork/SKILL.md +0 -1
- package/skills/code-review/SKILL.md +179 -0
- package/skills/deepinit/SKILL.md +0 -1
- package/skills/deepsearch/SKILL.md +0 -1
- package/skills/doctor/SKILL.md +0 -1
- package/skills/ecomode/SKILL.md +128 -0
- package/skills/frontend-ui-ux/SKILL.md +0 -1
- package/skills/git-master/SKILL.md +0 -1
- package/skills/help/SKILL.md +1 -2
- package/skills/hud/SKILL.md +0 -1
- package/skills/learner/SKILL.md +0 -1
- package/skills/mcp-setup/SKILL.md +8 -7
- package/skills/note/SKILL.md +0 -1
- package/skills/omc-default/SKILL.md +0 -1
- package/skills/omc-default-global/SKILL.md +0 -1
- package/skills/omc-setup/SKILL.md +176 -10
- package/skills/orchestrate/SKILL.md +0 -1
- package/skills/pipeline/SKILL.md +417 -0
- package/skills/plan/SKILL.md +138 -21
- package/skills/planner/SKILL.md +0 -1
- package/skills/ralph/SKILL.md +65 -1
- package/skills/ralph-init/SKILL.md +0 -1
- package/skills/ralplan/SKILL.md +0 -1
- package/skills/release/SKILL.md +0 -1
- package/skills/research/SKILL.md +0 -1
- package/skills/review/SKILL.md +0 -1
- package/skills/security-review/SKILL.md +254 -0
- package/skills/swarm/SKILL.md +349 -0
- package/skills/tdd/SKILL.md +0 -1
- package/skills/ultrapilot/SKILL.md +563 -0
- package/skills/ultraqa/SKILL.md +0 -1
- package/skills/ultrawork/SKILL.md +0 -1
- package/docs/MIGRATION-v3.md +0 -186
package/docs/MIGRATION.md
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
|
-
# Migration Guide
|
|
1
|
+
# Migration Guide
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
This guide covers all migration paths for oh-my-claudecode. Find your current version below.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Table of Contents
|
|
8
|
+
|
|
9
|
+
- [v2.x → v3.0: Package Rename & Auto-Activation](#v2x--v30-package-rename--auto-activation)
|
|
10
|
+
- [v3.0 → v3.1: Notepad Wisdom & Enhanced Features](#v30--v31-notepad-wisdom--enhanced-features)
|
|
11
|
+
- [v3.x → v4.0: Major Architecture Overhaul](#v3x--v40-major-architecture-overhaul)
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## v2.x → v3.0: Package Rename & Auto-Activation
|
|
16
|
+
|
|
17
|
+
### TL;DR
|
|
4
18
|
|
|
5
19
|
Your old commands still work! But now you don't need them.
|
|
6
20
|
|
|
@@ -8,11 +22,26 @@ Your old commands still work! But now you don't need them.
|
|
|
8
22
|
|
|
9
23
|
**After 3.0:** Just work naturally - Claude auto-activates the right behaviors. One-time setup: just say "setup omc"
|
|
10
24
|
|
|
11
|
-
|
|
25
|
+
### Package Rename
|
|
26
|
+
|
|
27
|
+
The package has been renamed to better reflect its purpose and improve discoverability.
|
|
28
|
+
|
|
29
|
+
- **Old**: `oh-my-claude-sisyphus`
|
|
30
|
+
- **New**: `oh-my-claudecode`
|
|
31
|
+
|
|
32
|
+
#### NPM Commands
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
# Old
|
|
36
|
+
npm install -g oh-my-claude-sisyphus
|
|
37
|
+
|
|
38
|
+
# New
|
|
39
|
+
npm install -g oh-my-claudecode
|
|
40
|
+
```
|
|
12
41
|
|
|
13
|
-
|
|
42
|
+
### What Changed
|
|
14
43
|
|
|
15
|
-
|
|
44
|
+
#### Before (2.x): Explicit Commands
|
|
16
45
|
|
|
17
46
|
You had to remember and explicitly invoke specific commands for each mode:
|
|
18
47
|
|
|
@@ -27,7 +56,7 @@ You had to remember and explicitly invoke specific commands for each mode:
|
|
|
27
56
|
/oh-my-claudecode:analyze "why is this test failing?" # Deep analysis
|
|
28
57
|
```
|
|
29
58
|
|
|
30
|
-
|
|
59
|
+
#### After (3.0): Auto-Activation + Keywords
|
|
31
60
|
|
|
32
61
|
Work naturally. Claude detects intent and activates behaviors automatically:
|
|
33
62
|
|
|
@@ -41,9 +70,63 @@ Work naturally. Claude detects intent and activates behaviors automatically:
|
|
|
41
70
|
"commit these changes properly" # Auto-activates git expertise
|
|
42
71
|
```
|
|
43
72
|
|
|
44
|
-
|
|
73
|
+
### Agent Name Mapping
|
|
74
|
+
|
|
75
|
+
All agent names have been updated from Greek mythology references to intuitive, descriptive names:
|
|
76
|
+
|
|
77
|
+
| Old Name (Greek) | New Name (Intuitive) |
|
|
78
|
+
|------------------|----------------------|
|
|
79
|
+
| prometheus | planner |
|
|
80
|
+
| momus | critic |
|
|
81
|
+
| oracle | architect |
|
|
82
|
+
| metis | analyst |
|
|
83
|
+
| mnemosyne | learner |
|
|
84
|
+
| sisyphus-junior | executor |
|
|
85
|
+
| orchestrator-sisyphus | coordinator |
|
|
86
|
+
| librarian | researcher |
|
|
87
|
+
| frontend-engineer | designer |
|
|
88
|
+
| document-writer | writer |
|
|
89
|
+
| multimodal-looker | vision |
|
|
90
|
+
| explore | explore (unchanged) |
|
|
91
|
+
| qa-tester | qa-tester (unchanged) |
|
|
92
|
+
|
|
93
|
+
### Directory Migration
|
|
94
|
+
|
|
95
|
+
Directory structures have been renamed for consistency with the new package name:
|
|
96
|
+
|
|
97
|
+
#### Local Project Directories
|
|
98
|
+
- **Old**: `.sisyphus/`
|
|
99
|
+
- **New**: `.omc/`
|
|
100
|
+
|
|
101
|
+
#### Global Directories
|
|
102
|
+
- **Old**: `~/.sisyphus/`
|
|
103
|
+
- **New**: `~/.omc/`
|
|
104
|
+
|
|
105
|
+
#### Skills Directory
|
|
106
|
+
- **Old**: `~/.claude/skills/sisyphus-learned/`
|
|
107
|
+
- **New**: `~/.claude/skills/omc-learned/`
|
|
108
|
+
|
|
109
|
+
#### Config Files
|
|
110
|
+
- **Old**: `~/.claude/sisyphus/mnemosyne.json`
|
|
111
|
+
- **New**: `~/.claude/omc/learner.json`
|
|
112
|
+
|
|
113
|
+
### Environment Variables
|
|
45
114
|
|
|
46
|
-
|
|
115
|
+
All environment variables have been renamed from `SISYPHUS_*` to `OMC_*`:
|
|
116
|
+
|
|
117
|
+
| Old | New |
|
|
118
|
+
|-----|-----|
|
|
119
|
+
| SISYPHUS_USE_NODE_HOOKS | OMC_USE_NODE_HOOKS |
|
|
120
|
+
| SISYPHUS_USE_BASH_HOOKS | OMC_USE_BASH_HOOKS |
|
|
121
|
+
| SISYPHUS_PARALLEL_EXECUTION | OMC_PARALLEL_EXECUTION |
|
|
122
|
+
| SISYPHUS_LSP_TOOLS | OMC_LSP_TOOLS |
|
|
123
|
+
| SISYPHUS_MAX_BACKGROUND_TASKS | OMC_MAX_BACKGROUND_TASKS |
|
|
124
|
+
| SISYPHUS_ROUTING_ENABLED | OMC_ROUTING_ENABLED |
|
|
125
|
+
| SISYPHUS_ROUTING_DEFAULT_TIER | OMC_ROUTING_DEFAULT_TIER |
|
|
126
|
+
| SISYPHUS_ESCALATION_ENABLED | OMC_ESCALATION_ENABLED |
|
|
127
|
+
| SISYPHUS_DEBUG | OMC_DEBUG |
|
|
128
|
+
|
|
129
|
+
### Command Mapping
|
|
47
130
|
|
|
48
131
|
All 2.x commands continue to work. Here's what changed:
|
|
49
132
|
|
|
@@ -65,9 +148,7 @@ All 2.x commands continue to work. Here's what changed:
|
|
|
65
148
|
| `/oh-my-claudecode:doctor` | Invoke normally | ✅ YES (unchanged) |
|
|
66
149
|
| All other commands | Work exactly as before | ✅ YES |
|
|
67
150
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
## Magic Keywords
|
|
151
|
+
### Magic Keywords
|
|
71
152
|
|
|
72
153
|
Include these anywhere in your message to explicitly activate behaviors. Use keywords when you want explicit control (optional):
|
|
73
154
|
|
|
@@ -92,9 +173,7 @@ Persistence (won't stop) + Ultrawork (maximum parallelism)
|
|
|
92
173
|
"help me design the dashboard" # Triggers planning
|
|
93
174
|
```
|
|
94
175
|
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
## Natural Cancellation
|
|
176
|
+
### Natural Cancellation
|
|
98
177
|
|
|
99
178
|
Say any of these to stop:
|
|
100
179
|
- "stop"
|
|
@@ -115,59 +194,95 @@ If multiple active → Stop the most recent
|
|
|
115
194
|
|
|
116
195
|
No more `/oh-my-claudecode:cancel-ralph` - just say "cancel"!
|
|
117
196
|
|
|
118
|
-
|
|
197
|
+
### Migration Steps
|
|
119
198
|
|
|
120
|
-
|
|
199
|
+
Follow these steps to migrate your existing setup:
|
|
121
200
|
|
|
122
|
-
|
|
201
|
+
#### 1. Uninstall Old Package
|
|
123
202
|
|
|
124
|
-
|
|
203
|
+
```bash
|
|
204
|
+
npm uninstall -g oh-my-claude-sisyphus
|
|
205
|
+
```
|
|
125
206
|
|
|
126
|
-
|
|
207
|
+
#### 2. Install New Package
|
|
127
208
|
|
|
128
209
|
```bash
|
|
129
|
-
|
|
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 ✅
|
|
210
|
+
npm install -g oh-my-claudecode
|
|
133
211
|
```
|
|
134
212
|
|
|
135
|
-
|
|
213
|
+
#### 3. Rename Local Project Directories
|
|
214
|
+
|
|
215
|
+
If you have existing projects using the old directory structure:
|
|
136
216
|
|
|
137
|
-
|
|
217
|
+
```bash
|
|
218
|
+
# In each project directory
|
|
219
|
+
mv .sisyphus .omc
|
|
220
|
+
```
|
|
138
221
|
|
|
139
|
-
|
|
222
|
+
#### 4. Rename Global Directories
|
|
140
223
|
|
|
224
|
+
```bash
|
|
225
|
+
# Global configuration directory
|
|
226
|
+
mv ~/.sisyphus ~/.omc
|
|
227
|
+
|
|
228
|
+
# Skills directory
|
|
229
|
+
mv ~/.claude/skills/sisyphus-learned ~/.claude/skills/omc-learned
|
|
230
|
+
|
|
231
|
+
# Config directory
|
|
232
|
+
mv ~/.claude/sisyphus ~/.claude/omc
|
|
141
233
|
```
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
234
|
+
|
|
235
|
+
#### 5. Update Environment Variables
|
|
236
|
+
|
|
237
|
+
Update your shell configuration files (`.bashrc`, `.zshrc`, etc.):
|
|
238
|
+
|
|
239
|
+
```bash
|
|
240
|
+
# Replace all SISYPHUS_* variables with OMC_*
|
|
241
|
+
# Example:
|
|
242
|
+
# OLD: export SISYPHUS_ROUTING_ENABLED=true
|
|
243
|
+
# NEW: export OMC_ROUTING_ENABLED=true
|
|
149
244
|
```
|
|
150
245
|
|
|
151
|
-
|
|
246
|
+
#### 6. Update Scripts and Configurations
|
|
152
247
|
|
|
153
|
-
|
|
248
|
+
Search for and update any references to:
|
|
249
|
+
- Package name: `oh-my-claude-sisyphus` → `oh-my-claudecode`
|
|
250
|
+
- Agent names: Use the mapping table above
|
|
251
|
+
- Commands: Use the new slash commands
|
|
252
|
+
- Directory paths: Update `.sisyphus` → `.omc`
|
|
253
|
+
|
|
254
|
+
#### 7. Run One-Time Setup
|
|
255
|
+
|
|
256
|
+
In Claude Code, just say "setup omc", "omc setup", or any natural language equivalent.
|
|
154
257
|
|
|
155
|
-
|
|
258
|
+
This:
|
|
259
|
+
- Downloads latest CLAUDE.md
|
|
260
|
+
- Configures 32 agents
|
|
261
|
+
- Enables auto-behavior detection
|
|
262
|
+
- Activates continuation enforcement
|
|
263
|
+
- Sets up skill composition
|
|
156
264
|
|
|
157
|
-
|
|
265
|
+
### Verification
|
|
158
266
|
|
|
159
|
-
|
|
160
|
-
- All agents renamed but function identically (oracle → architect, etc.)
|
|
161
|
-
- Directory structure changed (.sisyphus → .omc) but handled automatically
|
|
162
|
-
- Environment variables renamed (SISYPHUS_* → OMC_*) but old ones still recognized
|
|
267
|
+
After migration, verify your setup:
|
|
163
268
|
|
|
164
|
-
|
|
269
|
+
1. **Check installation**:
|
|
270
|
+
```bash
|
|
271
|
+
npm list -g oh-my-claudecode
|
|
272
|
+
```
|
|
165
273
|
|
|
166
|
-
|
|
274
|
+
2. **Verify directories exist**:
|
|
275
|
+
```bash
|
|
276
|
+
ls -la .omc/ # In project directory
|
|
277
|
+
ls -la ~/.omc/ # Global directory
|
|
278
|
+
```
|
|
167
279
|
|
|
168
|
-
|
|
280
|
+
3. **Test a simple command**:
|
|
281
|
+
Run `/oh-my-claudecode:help` in Claude Code to ensure the plugin is loaded correctly.
|
|
169
282
|
|
|
170
|
-
###
|
|
283
|
+
### New Features in 3.0
|
|
284
|
+
|
|
285
|
+
#### 1. Zero-Learning-Curve Operation
|
|
171
286
|
|
|
172
287
|
**No commands to memorize.** Work naturally:
|
|
173
288
|
|
|
@@ -178,7 +293,7 @@ After: "I'm in a hurry, go fast!"
|
|
|
178
293
|
Claude: "I'm activating ultrawork mode..."
|
|
179
294
|
```
|
|
180
295
|
|
|
181
|
-
|
|
296
|
+
#### 2. Delegate Always (Automatic)
|
|
182
297
|
|
|
183
298
|
Complex work auto-routes to specialist agents:
|
|
184
299
|
|
|
@@ -194,7 +309,7 @@ Your request Claude's action
|
|
|
194
309
|
|
|
195
310
|
You don't ask for delegation - it happens automatically.
|
|
196
311
|
|
|
197
|
-
|
|
312
|
+
#### 3. Learned Skills (`/oh-my-claudecode:learner`)
|
|
198
313
|
|
|
199
314
|
Extract reusable insights from problem-solving:
|
|
200
315
|
|
|
@@ -211,7 +326,7 @@ Storage:
|
|
|
211
326
|
- **Project-level**: `.omc/skills/` (version-controlled)
|
|
212
327
|
- **User-level**: `~/.claude/skills/omc-learned/` (portable)
|
|
213
328
|
|
|
214
|
-
|
|
329
|
+
#### 4. HUD Statusline (Real-Time Orchestration)
|
|
215
330
|
|
|
216
331
|
See what Claude is doing in the status bar:
|
|
217
332
|
|
|
@@ -221,7 +336,7 @@ See what Claude is doing in the status bar:
|
|
|
221
336
|
|
|
222
337
|
Run `/oh-my-claudecode:hud setup` to install. Presets: minimal, focused, full.
|
|
223
338
|
|
|
224
|
-
|
|
339
|
+
#### 5. Three-Tier Memory System
|
|
225
340
|
|
|
226
341
|
Critical knowledge survives context compaction:
|
|
227
342
|
|
|
@@ -239,7 +354,7 @@ Or use `/oh-my-claudecode:note` to save discoveries manually:
|
|
|
239
354
|
/oh-my-claudecode:note Project uses PostgreSQL with Prisma ORM
|
|
240
355
|
```
|
|
241
356
|
|
|
242
|
-
|
|
357
|
+
#### 6. Structured Task Tracking (PRD Support)
|
|
243
358
|
|
|
244
359
|
**Ralph Loop now uses Product Requirements Documents:**
|
|
245
360
|
|
|
@@ -253,7 +368,7 @@ Each story: description + acceptance criteria + pass/fail
|
|
|
253
368
|
Ralph loops until ALL stories pass
|
|
254
369
|
```
|
|
255
370
|
|
|
256
|
-
|
|
371
|
+
#### 7. Intelligent Continuation
|
|
257
372
|
|
|
258
373
|
**Tasks complete before Claude stops:**
|
|
259
374
|
|
|
@@ -267,71 +382,358 @@ Creates todo list, works through each item
|
|
|
267
382
|
Only stops when EVERYTHING is verified complete
|
|
268
383
|
```
|
|
269
384
|
|
|
385
|
+
### Backward Compatibility Note
|
|
386
|
+
|
|
387
|
+
**Note**: v3.0 does not maintain backward compatibility with v2.x naming. You must complete the migration steps above for the new version to work correctly.
|
|
388
|
+
|
|
270
389
|
---
|
|
271
390
|
|
|
272
|
-
##
|
|
391
|
+
## v3.0 → v3.1: Notepad Wisdom & Enhanced Features
|
|
392
|
+
|
|
393
|
+
### Overview
|
|
394
|
+
|
|
395
|
+
Version 3.1 is a minor release adding powerful new features while maintaining full backward compatibility with v3.0.
|
|
396
|
+
|
|
397
|
+
### What's New
|
|
398
|
+
|
|
399
|
+
#### 1. Notepad Wisdom System
|
|
400
|
+
|
|
401
|
+
Plan-scoped wisdom capture for learnings, decisions, issues, and problems.
|
|
402
|
+
|
|
403
|
+
**Location:** `.omc/notepads/{plan-name}/`
|
|
404
|
+
|
|
405
|
+
| File | Purpose |
|
|
406
|
+
|------|---------|
|
|
407
|
+
| `learnings.md` | Technical discoveries and patterns |
|
|
408
|
+
| `decisions.md` | Architectural and design decisions |
|
|
409
|
+
| `issues.md` | Known issues and workarounds |
|
|
410
|
+
| `problems.md` | Blockers and challenges |
|
|
411
|
+
|
|
412
|
+
**API:**
|
|
413
|
+
- `initPlanNotepad()` - Initialize notepad for a plan
|
|
414
|
+
- `addLearning()` - Record technical discoveries
|
|
415
|
+
- `addDecision()` - Record architectural choices
|
|
416
|
+
- `addIssue()` - Record known issues
|
|
417
|
+
- `addProblem()` - Record blockers
|
|
418
|
+
- `getWisdomSummary()` - Get summary of all wisdom
|
|
419
|
+
- `readPlanWisdom()` - Read full wisdom for context
|
|
420
|
+
|
|
421
|
+
#### 2. Delegation Categories
|
|
422
|
+
|
|
423
|
+
Semantic task categorization that auto-maps to model tier, temperature, and thinking budget.
|
|
424
|
+
|
|
425
|
+
| Category | Tier | Temperature | Thinking | Use For |
|
|
426
|
+
|----------|------|-------------|----------|---------|
|
|
427
|
+
| `visual-engineering` | HIGH | 0.7 | high | UI/UX, frontend, design systems |
|
|
428
|
+
| `ultrabrain` | HIGH | 0.3 | max | Complex reasoning, architecture, deep debugging |
|
|
429
|
+
| `artistry` | MEDIUM | 0.9 | medium | Creative solutions, brainstorming |
|
|
430
|
+
| `quick` | LOW | 0.1 | low | Simple lookups, basic operations |
|
|
431
|
+
| `writing` | MEDIUM | 0.5 | medium | Documentation, technical writing |
|
|
432
|
+
|
|
433
|
+
**Auto-detection:** Categories detect from prompt keywords automatically.
|
|
434
|
+
|
|
435
|
+
#### 3. Directory Diagnostics Tool
|
|
436
|
+
|
|
437
|
+
Project-level type checking via `lsp_diagnostics_directory` tool.
|
|
438
|
+
|
|
439
|
+
**Strategies:**
|
|
440
|
+
- `auto` (default) - Auto-selects best strategy, prefers tsc when tsconfig.json exists
|
|
441
|
+
- `tsc` - Fast, uses TypeScript compiler
|
|
442
|
+
- `lsp` - Fallback, iterates files via Language Server
|
|
443
|
+
|
|
444
|
+
**Usage:** Check entire project for errors before commits or after refactoring.
|
|
273
445
|
|
|
274
|
-
|
|
446
|
+
#### 4. Session Resume
|
|
447
|
+
|
|
448
|
+
Background agents can be resumed with full context via `resume-session` tool.
|
|
449
|
+
|
|
450
|
+
### Migration Steps
|
|
451
|
+
|
|
452
|
+
Version 3.1 is a drop-in upgrade. No migration required!
|
|
275
453
|
|
|
276
454
|
```bash
|
|
277
|
-
# Plugin auto-updates, but you can manually update:
|
|
278
455
|
npm update -g oh-my-claudecode
|
|
279
456
|
```
|
|
280
457
|
|
|
281
|
-
|
|
458
|
+
All existing configurations, plans, and workflows continue working unchanged.
|
|
282
459
|
|
|
283
|
-
|
|
460
|
+
### New Tools Available
|
|
284
461
|
|
|
285
|
-
|
|
286
|
-
-
|
|
287
|
-
-
|
|
288
|
-
-
|
|
289
|
-
-
|
|
290
|
-
|
|
462
|
+
Once upgraded, agents automatically gain access to:
|
|
463
|
+
- Notepad wisdom APIs (read/write wisdom during execution)
|
|
464
|
+
- Delegation categories (automatic categorization)
|
|
465
|
+
- Directory diagnostics (project-level type checking)
|
|
466
|
+
- Session resume (recover background agent state)
|
|
467
|
+
|
|
468
|
+
---
|
|
469
|
+
|
|
470
|
+
## v3.3.x → v3.4.0: Parallel Execution & Advanced Workflows
|
|
471
|
+
|
|
472
|
+
### Overview
|
|
291
473
|
|
|
292
|
-
|
|
474
|
+
Version 3.4.0 introduces powerful parallel execution modes and advanced workflow orchestration while maintaining full backward compatibility with v3.3.x.
|
|
293
475
|
|
|
294
|
-
|
|
476
|
+
### What's New
|
|
477
|
+
|
|
478
|
+
#### 1. Ultrapilot: Parallel Autopilot
|
|
479
|
+
|
|
480
|
+
Execute complex tasks with up to 5 concurrent workers for 3-5x speedup:
|
|
295
481
|
|
|
296
482
|
```bash
|
|
297
|
-
"
|
|
298
|
-
↓
|
|
299
|
-
Claude auto-detects: complex task, multi-file changes
|
|
300
|
-
↓
|
|
301
|
-
Activates: orchestrate + git-master skills
|
|
302
|
-
↓
|
|
303
|
-
You're done - Claude handles the rest
|
|
483
|
+
/oh-my-claudecode:ultrapilot "build a fullstack todo app"
|
|
304
484
|
```
|
|
305
485
|
|
|
306
|
-
|
|
486
|
+
**Key Features:**
|
|
487
|
+
- Automatic task decomposition into parallelizable subtasks
|
|
488
|
+
- File ownership coordination to prevent conflicts
|
|
489
|
+
- Parallel execution with intelligent coordination
|
|
490
|
+
- State files: `.omc/state/ultrapilot-state.json`, `.omc/state/ultrapilot-ownership.json`
|
|
307
491
|
|
|
308
|
-
|
|
492
|
+
**Best for:** Multi-component systems, fullstack apps, large refactoring
|
|
309
493
|
|
|
310
|
-
|
|
494
|
+
#### 2. Swarm: Coordinated Agent Teams
|
|
311
495
|
|
|
312
|
-
|
|
496
|
+
N coordinated agents with atomic task claiming:
|
|
313
497
|
|
|
498
|
+
```bash
|
|
499
|
+
/oh-my-claudecode:swarm 5:executor "fix all TypeScript errors"
|
|
314
500
|
```
|
|
315
|
-
|
|
501
|
+
|
|
502
|
+
**Key Features:**
|
|
503
|
+
- Shared task pool with atomic claiming (prevents duplicate work)
|
|
504
|
+
- 5-minute timeout per task with auto-release
|
|
505
|
+
- Scales from 2 to 10 workers
|
|
506
|
+
- Clean completion when all tasks done
|
|
507
|
+
|
|
508
|
+
#### 3. Pipeline: Sequential Agent Chaining
|
|
509
|
+
|
|
510
|
+
Chain agents with data passing between stages:
|
|
511
|
+
|
|
512
|
+
```bash
|
|
513
|
+
/oh-my-claudecode:pipeline explore:haiku -> architect:opus -> executor:sonnet
|
|
316
514
|
```
|
|
317
515
|
|
|
318
|
-
|
|
516
|
+
**Built-in Presets:**
|
|
517
|
+
- `review` - explore → architect → critic → executor
|
|
518
|
+
- `implement` - planner → executor → tdd-guide
|
|
519
|
+
- `debug` - explore → architect → build-fixer
|
|
520
|
+
- `research` - parallel(researcher, explore) → architect → writer
|
|
521
|
+
- `refactor` - explore → architect-medium → executor-high → qa-tester
|
|
522
|
+
- `security` - explore → security-reviewer → executor → security-reviewer-low
|
|
319
523
|
|
|
320
|
-
|
|
524
|
+
#### 4. Ecomode: Token-Efficient Execution
|
|
321
525
|
|
|
322
|
-
|
|
526
|
+
Maximum parallelism with 30-50% token savings:
|
|
323
527
|
|
|
528
|
+
```bash
|
|
529
|
+
/oh-my-claudecode:ecomode "refactor the authentication system"
|
|
324
530
|
```
|
|
325
|
-
|
|
531
|
+
|
|
532
|
+
**Smart model routing:**
|
|
533
|
+
- Simple tasks → Haiku (ultra-cheap)
|
|
534
|
+
- Standard work → Sonnet (balanced)
|
|
535
|
+
- Complex reasoning → Opus (when needed)
|
|
536
|
+
|
|
537
|
+
#### 5. Unified Cancel Command
|
|
538
|
+
|
|
539
|
+
Smart cancellation that auto-detects active mode:
|
|
540
|
+
|
|
541
|
+
```bash
|
|
542
|
+
/oh-my-claudecode:cancel
|
|
543
|
+
# Or just say: "stop", "cancel", "abort"
|
|
326
544
|
```
|
|
327
545
|
|
|
328
|
-
|
|
546
|
+
**Auto-detects and cancels:** autopilot, ultrapilot, ralph, ultrawork, ultraqa, ecomode, swarm, pipeline
|
|
329
547
|
|
|
330
|
-
**
|
|
548
|
+
**Deprecation Notice:**
|
|
549
|
+
Individual cancel commands are deprecated but still work:
|
|
550
|
+
- `/oh-my-claudecode:cancel-ralph` (deprecated)
|
|
551
|
+
- `/oh-my-claudecode:cancel-ultraqa` (deprecated)
|
|
552
|
+
- `/oh-my-claudecode:cancel-ultrawork` (deprecated)
|
|
553
|
+
- `/oh-my-claudecode:cancel-ecomode` (deprecated)
|
|
554
|
+
- `/oh-my-claudecode:cancel-autopilot` (deprecated)
|
|
555
|
+
|
|
556
|
+
Use `/oh-my-claudecode:cancel` instead.
|
|
557
|
+
|
|
558
|
+
#### 6. Explore-High Agent
|
|
559
|
+
|
|
560
|
+
Opus-powered architectural search for complex codebase exploration:
|
|
561
|
+
|
|
562
|
+
```typescript
|
|
563
|
+
Task(subagent_type="oh-my-claudecode:explore-high",
|
|
564
|
+
model="opus",
|
|
565
|
+
prompt="Find all authentication-related code patterns...")
|
|
566
|
+
```
|
|
567
|
+
|
|
568
|
+
**Best for:** Architectural analysis, cross-cutting concerns, complex refactoring planning
|
|
569
|
+
|
|
570
|
+
#### 7. State Management Standardization
|
|
571
|
+
|
|
572
|
+
State files now use standardized paths:
|
|
573
|
+
|
|
574
|
+
**Standard paths:**
|
|
575
|
+
- Local: `.omc/state/{name}.json`
|
|
576
|
+
- Global: `~/.omc/state/{name}.json`
|
|
577
|
+
|
|
578
|
+
Legacy locations are auto-migrated on read.
|
|
579
|
+
|
|
580
|
+
#### 8. Keyword Conflict Resolution
|
|
581
|
+
|
|
582
|
+
When multiple execution mode keywords are present:
|
|
583
|
+
|
|
584
|
+
**Conflict Resolution Priority:**
|
|
585
|
+
| Priority | Condition | Result |
|
|
586
|
+
|----------|-----------|--------|
|
|
587
|
+
| 1 (highest) | Both explicit keywords present (e.g., "ulw eco fix errors") | `ecomode` wins (more token-restrictive) |
|
|
588
|
+
| 2 | Single explicit keyword | That mode wins |
|
|
589
|
+
| 3 | Generic "fast"/"parallel" only | Read from config (`defaultExecutionMode`) |
|
|
590
|
+
| 4 (lowest) | No config file | Default to `ultrawork` |
|
|
591
|
+
|
|
592
|
+
**Explicit mode keywords:** `ulw`, `ultrawork`, `eco`, `ecomode`
|
|
593
|
+
**Generic keywords:** `fast`, `parallel`
|
|
594
|
+
|
|
595
|
+
Users set their default mode preference via `/oh-my-claudecode:omc-setup`.
|
|
596
|
+
|
|
597
|
+
### Migration Steps
|
|
598
|
+
|
|
599
|
+
Version 3.4.0 is a drop-in upgrade. No migration required!
|
|
600
|
+
|
|
601
|
+
```bash
|
|
602
|
+
npm update -g oh-my-claudecode
|
|
603
|
+
```
|
|
604
|
+
|
|
605
|
+
All existing configurations, plans, and workflows continue working unchanged.
|
|
606
|
+
|
|
607
|
+
### New Configuration Options
|
|
608
|
+
|
|
609
|
+
#### Default Execution Mode
|
|
610
|
+
|
|
611
|
+
Set your preferred execution mode in `~/.claude/.omc-config.json`:
|
|
612
|
+
|
|
613
|
+
```json
|
|
614
|
+
{
|
|
615
|
+
"defaultExecutionMode": "ultrawork" // or "ecomode"
|
|
616
|
+
}
|
|
617
|
+
```
|
|
618
|
+
|
|
619
|
+
When you use generic keywords like "fast" or "parallel" without explicit mode keywords, this setting determines which mode activates.
|
|
620
|
+
|
|
621
|
+
### Breaking Changes
|
|
622
|
+
|
|
623
|
+
None. All v3.3.x features and commands continue to work in v3.4.0.
|
|
624
|
+
|
|
625
|
+
### New Tools Available
|
|
626
|
+
|
|
627
|
+
Once upgraded, you automatically gain access to:
|
|
628
|
+
- Ultrapilot (parallel autopilot)
|
|
629
|
+
- Swarm coordination
|
|
630
|
+
- Pipeline workflows
|
|
631
|
+
- Ecomode execution
|
|
632
|
+
- Unified cancel command
|
|
633
|
+
- Explore-high agent
|
|
634
|
+
|
|
635
|
+
### Best Practices for v3.4.0
|
|
636
|
+
|
|
637
|
+
#### When to Use Each Mode
|
|
638
|
+
|
|
639
|
+
| Scenario | Recommended Mode | Why |
|
|
640
|
+
|----------|------------------|-----|
|
|
641
|
+
| Multi-component systems | `ultrapilot` | Parallel workers handle independent components |
|
|
642
|
+
| Many small fixes | `swarm` | Atomic task claiming prevents duplicate work |
|
|
643
|
+
| Sequential dependencies | `pipeline` | Data passes between stages |
|
|
644
|
+
| Budget-conscious | `ecomode` | 30-50% token savings with smart routing |
|
|
645
|
+
| Single complex task | `autopilot` | Full autonomous execution |
|
|
646
|
+
| Must complete | `ralph` | Persistence guarantee |
|
|
647
|
+
|
|
648
|
+
#### Keyword Usage
|
|
649
|
+
|
|
650
|
+
**Explicit mode control (v3.4.0):**
|
|
651
|
+
```bash
|
|
652
|
+
"ulw: fix all errors" # ultrawork (explicit)
|
|
653
|
+
"eco: refactor auth system" # ecomode (explicit)
|
|
654
|
+
"ulw eco: migrate database" # ecomode wins (conflict resolution)
|
|
655
|
+
"fast: implement feature" # reads defaultExecutionMode config
|
|
656
|
+
```
|
|
657
|
+
|
|
658
|
+
**Natural language (still works):**
|
|
659
|
+
```bash
|
|
660
|
+
"don't stop until done" # ralph
|
|
661
|
+
"parallel execution" # reads defaultExecutionMode
|
|
662
|
+
"build me a todo app" # autopilot
|
|
663
|
+
```
|
|
664
|
+
|
|
665
|
+
### Verification
|
|
666
|
+
|
|
667
|
+
After upgrading, verify new features:
|
|
668
|
+
|
|
669
|
+
1. **Check installation**:
|
|
670
|
+
```bash
|
|
671
|
+
npm list -g oh-my-claudecode
|
|
672
|
+
```
|
|
673
|
+
|
|
674
|
+
2. **Test ultrapilot**:
|
|
675
|
+
```bash
|
|
676
|
+
/oh-my-claudecode:ultrapilot "create a simple React component"
|
|
677
|
+
```
|
|
678
|
+
|
|
679
|
+
3. **Test unified cancel**:
|
|
680
|
+
```bash
|
|
681
|
+
/oh-my-claudecode:cancel
|
|
682
|
+
```
|
|
683
|
+
|
|
684
|
+
4. **Check state directory**:
|
|
685
|
+
```bash
|
|
686
|
+
ls -la .omc/state/ # Should see ultrapilot-state.json after running ultrapilot
|
|
687
|
+
```
|
|
331
688
|
|
|
332
689
|
---
|
|
333
690
|
|
|
334
|
-
##
|
|
691
|
+
## v3.x → v4.0: Major Architecture Overhaul
|
|
692
|
+
|
|
693
|
+
### Overview
|
|
694
|
+
|
|
695
|
+
Version 4.0 is a complete architectural redesign focusing on scalability, maintainability, and developer experience.
|
|
696
|
+
|
|
697
|
+
### What's Coming
|
|
698
|
+
|
|
699
|
+
⚠️ **This section is under active development as v4.0 is being built.**
|
|
700
|
+
|
|
701
|
+
#### Planned Changes
|
|
702
|
+
|
|
703
|
+
1. **Modular Architecture**
|
|
704
|
+
- Plugin system for extensibility
|
|
705
|
+
- Core/extension separation
|
|
706
|
+
- Better dependency management
|
|
707
|
+
|
|
708
|
+
2. **Enhanced Agent System**
|
|
709
|
+
- Improved agent lifecycle management
|
|
710
|
+
- Better error recovery
|
|
711
|
+
- Performance optimizations
|
|
712
|
+
|
|
713
|
+
3. **Improved Configuration**
|
|
714
|
+
- Unified config schema
|
|
715
|
+
- Better validation
|
|
716
|
+
- Migration tooling
|
|
717
|
+
|
|
718
|
+
4. **Breaking Changes**
|
|
719
|
+
- TBD based on development progress
|
|
720
|
+
- Full migration guide will be provided
|
|
721
|
+
|
|
722
|
+
### Migration Path (Coming Soon)
|
|
723
|
+
|
|
724
|
+
Detailed migration instructions will be provided when v4.0 reaches release candidate status.
|
|
725
|
+
|
|
726
|
+
Expected timeline: Q1 2026
|
|
727
|
+
|
|
728
|
+
### Stay Updated
|
|
729
|
+
|
|
730
|
+
- Watch the [GitHub repository](https://github.com/Yeachan-Heo/oh-my-claude-sisyphus) for announcements
|
|
731
|
+
- Check [CHANGELOG.md](../CHANGELOG.md) for detailed release notes
|
|
732
|
+
- Join discussions in GitHub Issues
|
|
733
|
+
|
|
734
|
+
---
|
|
735
|
+
|
|
736
|
+
## Common Scenarios Across Versions
|
|
335
737
|
|
|
336
738
|
### Scenario 1: Quick Implementation Task
|
|
337
739
|
|
|
@@ -340,7 +742,7 @@ Creates: `~/.claude/CLAUDE.md`
|
|
|
340
742
|
/oh-my-claudecode:ultrawork "implement the todo list feature"
|
|
341
743
|
```
|
|
342
744
|
|
|
343
|
-
**3.0 Workflow:**
|
|
745
|
+
**3.0+ Workflow:**
|
|
344
746
|
```
|
|
345
747
|
"implement the todo list feature quickly"
|
|
346
748
|
↓
|
|
@@ -356,7 +758,7 @@ Claude: "I'm activating ultrawork for maximum parallelism"
|
|
|
356
758
|
/oh-my-claudecode:ralph "debug the memory leak"
|
|
357
759
|
```
|
|
358
760
|
|
|
359
|
-
**3.0 Workflow:**
|
|
761
|
+
**3.0+ Workflow:**
|
|
360
762
|
```
|
|
361
763
|
"there's a memory leak in the worker process - don't stop until we fix it"
|
|
362
764
|
↓
|
|
@@ -372,7 +774,7 @@ Claude: "I'm activating ralph-loop to ensure completion"
|
|
|
372
774
|
/oh-my-claudecode:planner "design the new authentication system"
|
|
373
775
|
```
|
|
374
776
|
|
|
375
|
-
**3.0 Workflow:**
|
|
777
|
+
**3.0+ Workflow:**
|
|
376
778
|
```
|
|
377
779
|
"plan the new authentication system"
|
|
378
780
|
↓
|
|
@@ -390,7 +792,7 @@ Interview begins automatically
|
|
|
390
792
|
/oh-my-claudecode:cancel-ralph
|
|
391
793
|
```
|
|
392
794
|
|
|
393
|
-
**3.0 Workflow:**
|
|
795
|
+
**3.0+ Workflow:**
|
|
394
796
|
```
|
|
395
797
|
"stop"
|
|
396
798
|
```
|
|
@@ -399,16 +801,29 @@ Interview begins automatically
|
|
|
399
801
|
|
|
400
802
|
---
|
|
401
803
|
|
|
402
|
-
##
|
|
804
|
+
## Configuration Options
|
|
403
805
|
|
|
404
|
-
|
|
806
|
+
### Project-Scoped Configuration (Recommended)
|
|
405
807
|
|
|
406
|
-
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
-
|
|
410
|
-
|
|
411
|
-
|
|
808
|
+
Apply oh-my-claudecode to current project only:
|
|
809
|
+
|
|
810
|
+
```
|
|
811
|
+
/oh-my-claudecode:omc-default
|
|
812
|
+
```
|
|
813
|
+
|
|
814
|
+
Creates: `./.claude/CLAUDE.md`
|
|
815
|
+
|
|
816
|
+
### Global Configuration
|
|
817
|
+
|
|
818
|
+
Apply to all Claude Code sessions:
|
|
819
|
+
|
|
820
|
+
```
|
|
821
|
+
/oh-my-claudecode:omc-default-global
|
|
822
|
+
```
|
|
823
|
+
|
|
824
|
+
Creates: `~/.claude/CLAUDE.md`
|
|
825
|
+
|
|
826
|
+
**Precedence:** Project config overrides global if both exist.
|
|
412
827
|
|
|
413
828
|
---
|
|
414
829
|
|
|
@@ -418,7 +833,7 @@ If you're upgrading from 2.x:
|
|
|
418
833
|
A: No. Keywords are optional shortcuts. Claude auto-detects intent without them.
|
|
419
834
|
|
|
420
835
|
**Q: Will my old commands break?**
|
|
421
|
-
A: No. All
|
|
836
|
+
A: No. All commands continue to work across minor versions (3.0 → 3.1). Major version changes (3.x → 4.0) will provide migration paths.
|
|
422
837
|
|
|
423
838
|
**Q: What if I like explicit commands?**
|
|
424
839
|
A: Keep using them! `/oh-my-claudecode:ralph`, `/oh-my-claudecode:ultrawork`, `/oh-my-claudecode:planner` all still work.
|
|
@@ -426,7 +841,7 @@ A: Keep using them! `/oh-my-claudecode:ralph`, `/oh-my-claudecode:ultrawork`, `/
|
|
|
426
841
|
**Q: How do I know what Claude is doing?**
|
|
427
842
|
A: Claude announces major behaviors: "I'm activating ralph-loop..." or set up `/oh-my-claudecode:hud` for real-time status.
|
|
428
843
|
|
|
429
|
-
**Q: Where's the
|
|
844
|
+
**Q: Where's the full command list?**
|
|
430
845
|
A: See [README.md](../README.md) for full command reference. All commands still work.
|
|
431
846
|
|
|
432
847
|
**Q: What's the difference between keywords and natural language?**
|
|
@@ -453,4 +868,4 @@ Now that you understand the migration:
|
|
|
453
868
|
3. **For advanced usage**: Check [docs/ARCHITECTURE.md](ARCHITECTURE.md) for deep dives
|
|
454
869
|
4. **For team onboarding**: Share this guide with teammates
|
|
455
870
|
|
|
456
|
-
Welcome to
|
|
871
|
+
Welcome to oh-my-claudecode!
|