oh-my-claude-sisyphus 2.6.1 → 3.0.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 +61 -784
- package/agents/analyst.md +85 -0
- package/agents/architect-low.md +88 -0
- package/agents/architect-medium.md +108 -0
- package/agents/architect.md +77 -0
- package/agents/critic.md +97 -0
- package/agents/designer-high.md +113 -0
- package/agents/designer-low.md +89 -0
- package/agents/designer.md +80 -0
- package/agents/executor-high.md +116 -0
- package/agents/executor-low.md +94 -0
- package/agents/executor.md +62 -0
- package/agents/explore-medium.md +113 -0
- package/agents/explore.md +86 -0
- package/agents/planner.md +164 -0
- package/agents/qa-tester.md +109 -0
- package/agents/researcher-low.md +84 -0
- package/agents/researcher.md +70 -0
- package/agents/vision.md +39 -0
- package/agents/writer.md +152 -0
- package/commands/.gitkeep +0 -0
- package/dist/__tests__/hooks.test.js +22 -22
- package/dist/__tests__/hooks.test.js.map +1 -1
- package/dist/__tests__/hud-agents.test.d.ts +7 -0
- package/dist/__tests__/hud-agents.test.d.ts.map +1 -0
- package/dist/__tests__/hud-agents.test.js +363 -0
- package/dist/__tests__/hud-agents.test.js.map +1 -0
- package/dist/__tests__/installer.test.js +184 -116
- package/dist/__tests__/installer.test.js.map +1 -1
- package/dist/__tests__/learned-skills/config.test.d.ts +2 -0
- package/dist/__tests__/learned-skills/config.test.d.ts.map +1 -0
- package/dist/__tests__/learned-skills/config.test.js +37 -0
- package/dist/__tests__/learned-skills/config.test.js.map +1 -0
- package/dist/__tests__/learned-skills/detector.test.d.ts +2 -0
- package/dist/__tests__/learned-skills/detector.test.d.ts.map +1 -0
- package/dist/__tests__/learned-skills/detector.test.js +99 -0
- package/dist/__tests__/learned-skills/detector.test.js.map +1 -0
- package/dist/__tests__/learned-skills/finder.test.d.ts +2 -0
- package/dist/__tests__/learned-skills/finder.test.d.ts.map +1 -0
- package/dist/__tests__/learned-skills/finder.test.js +59 -0
- package/dist/__tests__/learned-skills/finder.test.js.map +1 -0
- package/dist/__tests__/learned-skills/loader.test.d.ts +2 -0
- package/dist/__tests__/learned-skills/loader.test.d.ts.map +1 -0
- package/dist/__tests__/learned-skills/loader.test.js +69 -0
- package/dist/__tests__/learned-skills/loader.test.js.map +1 -0
- package/dist/__tests__/learned-skills/parser.test.d.ts +2 -0
- package/dist/__tests__/learned-skills/parser.test.d.ts.map +1 -0
- package/dist/__tests__/learned-skills/parser.test.js +81 -0
- package/dist/__tests__/learned-skills/parser.test.js.map +1 -0
- package/dist/__tests__/learned-skills/validator.test.d.ts +2 -0
- package/dist/__tests__/learned-skills/validator.test.d.ts.map +1 -0
- package/dist/__tests__/learned-skills/validator.test.js +85 -0
- package/dist/__tests__/learned-skills/validator.test.js.map +1 -0
- package/dist/__tests__/mnemosyne/config.test.d.ts +2 -0
- package/dist/__tests__/mnemosyne/config.test.d.ts.map +1 -0
- package/dist/__tests__/mnemosyne/config.test.js +37 -0
- package/dist/__tests__/mnemosyne/config.test.js.map +1 -0
- package/dist/__tests__/mnemosyne/detector.test.d.ts +2 -0
- package/dist/__tests__/mnemosyne/detector.test.d.ts.map +1 -0
- package/dist/__tests__/mnemosyne/detector.test.js +99 -0
- package/dist/__tests__/mnemosyne/detector.test.js.map +1 -0
- package/dist/__tests__/mnemosyne/finder.test.d.ts +2 -0
- package/dist/__tests__/mnemosyne/finder.test.d.ts.map +1 -0
- package/dist/__tests__/mnemosyne/finder.test.js +61 -0
- package/dist/__tests__/mnemosyne/finder.test.js.map +1 -0
- package/dist/__tests__/mnemosyne/loader.test.d.ts +2 -0
- package/dist/__tests__/mnemosyne/loader.test.d.ts.map +1 -0
- package/dist/__tests__/mnemosyne/loader.test.js +73 -0
- package/dist/__tests__/mnemosyne/loader.test.js.map +1 -0
- package/dist/__tests__/mnemosyne/parser.test.d.ts +2 -0
- package/dist/__tests__/mnemosyne/parser.test.d.ts.map +1 -0
- package/dist/__tests__/mnemosyne/parser.test.js +81 -0
- package/dist/__tests__/mnemosyne/parser.test.js.map +1 -0
- package/dist/__tests__/mnemosyne/validator.test.d.ts +2 -0
- package/dist/__tests__/mnemosyne/validator.test.d.ts.map +1 -0
- package/dist/__tests__/mnemosyne/validator.test.js +85 -0
- package/dist/__tests__/mnemosyne/validator.test.js.map +1 -0
- package/dist/__tests__/model-routing.test.js +34 -34
- package/dist/__tests__/model-routing.test.js.map +1 -1
- package/dist/__tests__/notepad.test.js +7 -7
- package/dist/__tests__/notepad.test.js.map +1 -1
- package/dist/__tests__/ralph-prd.test.js +12 -12
- package/dist/__tests__/ralph-prd.test.js.map +1 -1
- package/dist/__tests__/ralph-progress.test.js +12 -12
- package/dist/__tests__/ralph-progress.test.js.map +1 -1
- package/dist/__tests__/skills.test.js +50 -17
- package/dist/__tests__/skills.test.js.map +1 -1
- package/dist/__tests__/types.test.js +5 -5
- package/dist/__tests__/types.test.js.map +1 -1
- package/dist/agents/analyst.d.ts +11 -0
- package/dist/agents/analyst.d.ts.map +1 -0
- package/dist/agents/analyst.js +115 -0
- package/dist/agents/analyst.js.map +1 -0
- package/dist/agents/architect.d.ts +12 -0
- package/dist/agents/architect.d.ts.map +1 -0
- package/dist/agents/architect.js +189 -0
- package/dist/agents/architect.js.map +1 -0
- package/dist/agents/coordinator.d.ts +11 -0
- package/dist/agents/coordinator.d.ts.map +1 -0
- package/dist/agents/coordinator.js +115 -0
- package/dist/agents/coordinator.js.map +1 -0
- package/dist/agents/critic.d.ts +11 -0
- package/dist/agents/critic.d.ts.map +1 -0
- package/dist/agents/critic.js +127 -0
- package/dist/agents/critic.js.map +1 -0
- package/dist/agents/definitions.d.ts +33 -70
- package/dist/agents/definitions.d.ts.map +1 -1
- package/dist/agents/definitions.js +140 -1268
- package/dist/agents/definitions.js.map +1 -1
- package/dist/agents/designer.d.ts +11 -0
- package/dist/agents/designer.d.ts.map +1 -0
- package/dist/agents/designer.js +115 -0
- package/dist/agents/designer.js.map +1 -0
- package/dist/agents/executor.d.ts +12 -0
- package/dist/agents/executor.d.ts.map +1 -0
- package/dist/agents/executor.js +93 -0
- package/dist/agents/executor.js.map +1 -0
- package/dist/agents/explore.js +4 -4
- package/dist/agents/explore.js.map +1 -1
- package/dist/agents/index.d.ts +12 -11
- package/dist/agents/index.d.ts.map +1 -1
- package/dist/agents/index.js +15 -16
- package/dist/agents/index.js.map +1 -1
- package/dist/agents/planner.d.ts +11 -0
- package/dist/agents/planner.d.ts.map +1 -0
- package/dist/agents/planner.js +194 -0
- package/dist/agents/planner.js.map +1 -0
- package/dist/agents/qa-tester.js +16 -16
- package/dist/agents/qa-tester.js.map +1 -1
- package/dist/agents/researcher.d.ts +12 -0
- package/dist/agents/researcher.d.ts.map +1 -0
- package/dist/agents/researcher.js +103 -0
- package/dist/agents/researcher.js.map +1 -0
- package/dist/agents/vision.d.ts +11 -0
- package/dist/agents/vision.d.ts.map +1 -0
- package/dist/agents/vision.js +70 -0
- package/dist/agents/vision.js.map +1 -0
- package/dist/agents/writer.d.ts +11 -0
- package/dist/agents/writer.d.ts.map +1 -0
- package/dist/agents/writer.js +209 -0
- package/dist/agents/writer.js.map +1 -0
- package/dist/cli/index.js +32 -32
- package/dist/cli/index.js.map +1 -1
- package/dist/commands/index.d.ts +4 -4
- package/dist/commands/index.js +4 -4
- package/dist/config/loader.js +25 -25
- package/dist/config/loader.js.map +1 -1
- package/dist/features/auto-update.d.ts +5 -5
- package/dist/features/auto-update.d.ts.map +1 -1
- package/dist/features/auto-update.js +17 -17
- package/dist/features/auto-update.js.map +1 -1
- package/dist/features/background-agent/manager.js +1 -1
- package/dist/features/background-agent/manager.js.map +1 -1
- package/dist/features/boulder-state/constants.d.ts +5 -5
- package/dist/features/boulder-state/constants.d.ts.map +1 -1
- package/dist/features/boulder-state/constants.js +3 -3
- package/dist/features/boulder-state/constants.js.map +1 -1
- package/dist/features/boulder-state/index.d.ts +2 -2
- package/dist/features/boulder-state/index.d.ts.map +1 -1
- package/dist/features/boulder-state/index.js +2 -2
- package/dist/features/boulder-state/index.js.map +1 -1
- package/dist/features/boulder-state/storage.d.ts +3 -3
- package/dist/features/boulder-state/storage.d.ts.map +1 -1
- package/dist/features/boulder-state/storage.js +6 -6
- package/dist/features/boulder-state/storage.js.map +1 -1
- package/dist/features/builtin-skills/skills.d.ts +15 -1
- package/dist/features/builtin-skills/skills.d.ts.map +1 -1
- package/dist/features/builtin-skills/skills.js +100 -1110
- package/dist/features/builtin-skills/skills.js.map +1 -1
- package/dist/features/context-injector/types.d.ts +1 -1
- package/dist/features/context-injector/types.d.ts.map +1 -1
- package/dist/features/index.d.ts +1 -1
- package/dist/features/index.d.ts.map +1 -1
- package/dist/features/index.js +2 -2
- package/dist/features/index.js.map +1 -1
- package/dist/features/magic-keywords.js +14 -14
- package/dist/features/magic-keywords.js.map +1 -1
- package/dist/features/model-routing/prompts/opus.d.ts +1 -1
- package/dist/features/model-routing/prompts/opus.d.ts.map +1 -1
- package/dist/features/model-routing/prompts/opus.js +1 -1
- package/dist/features/model-routing/router.d.ts +1 -1
- package/dist/features/model-routing/router.js +14 -14
- package/dist/features/model-routing/router.js.map +1 -1
- package/dist/features/model-routing/rules.js +31 -31
- package/dist/features/model-routing/rules.js.map +1 -1
- package/dist/features/model-routing/types.js +1 -1
- package/dist/features/model-routing/types.js.map +1 -1
- package/dist/hooks/agent-usage-reminder/constants.d.ts +2 -2
- package/dist/hooks/agent-usage-reminder/constants.d.ts.map +1 -1
- package/dist/hooks/agent-usage-reminder/constants.js +5 -5
- package/dist/hooks/agent-usage-reminder/constants.js.map +1 -1
- package/dist/hooks/auto-slash-command/constants.d.ts +1 -1
- package/dist/hooks/auto-slash-command/constants.d.ts.map +1 -1
- package/dist/hooks/auto-slash-command/constants.js +9 -2
- package/dist/hooks/auto-slash-command/constants.js.map +1 -1
- package/dist/hooks/bridge.d.ts +2 -2
- package/dist/hooks/bridge.d.ts.map +1 -1
- package/dist/hooks/bridge.js +50 -18
- package/dist/hooks/bridge.js.map +1 -1
- package/dist/hooks/directory-readme-injector/constants.d.ts +1 -1
- package/dist/hooks/directory-readme-injector/constants.d.ts.map +1 -1
- package/dist/hooks/directory-readme-injector/constants.js +2 -2
- package/dist/hooks/directory-readme-injector/constants.js.map +1 -1
- package/dist/hooks/index.d.ts +3 -2
- package/dist/hooks/index.d.ts.map +1 -1
- package/dist/hooks/index.js +9 -4
- package/dist/hooks/index.js.map +1 -1
- package/dist/hooks/learned-skills/config.d.ts +53 -0
- package/dist/hooks/learned-skills/config.d.ts.map +1 -0
- package/dist/hooks/learned-skills/config.js +103 -0
- package/dist/hooks/learned-skills/config.js.map +1 -0
- package/dist/hooks/learned-skills/constants.d.ts +24 -0
- package/dist/hooks/learned-skills/constants.d.ts.map +1 -0
- package/dist/hooks/learned-skills/constants.js +26 -0
- package/dist/hooks/learned-skills/constants.js.map +1 -0
- package/dist/hooks/learned-skills/detection-hook.d.ts +39 -0
- package/dist/hooks/learned-skills/detection-hook.d.ts.map +1 -0
- package/dist/hooks/learned-skills/detection-hook.js +83 -0
- package/dist/hooks/learned-skills/detection-hook.js.map +1 -0
- package/dist/hooks/learned-skills/detector.d.ts +30 -0
- package/dist/hooks/learned-skills/detector.d.ts.map +1 -0
- package/dist/hooks/learned-skills/detector.js +150 -0
- package/dist/hooks/learned-skills/detector.js.map +1 -0
- package/dist/hooks/learned-skills/finder.d.ts +21 -0
- package/dist/hooks/learned-skills/finder.d.ts.map +1 -0
- package/dist/hooks/learned-skills/finder.js +117 -0
- package/dist/hooks/learned-skills/finder.js.map +1 -0
- package/dist/hooks/learned-skills/index.d.ts +62 -0
- package/dist/hooks/learned-skills/index.d.ts.map +1 -0
- package/dist/hooks/learned-skills/index.js +137 -0
- package/dist/hooks/learned-skills/index.js.map +1 -0
- package/dist/hooks/learned-skills/loader.d.ts +20 -0
- package/dist/hooks/learned-skills/loader.d.ts.map +1 -0
- package/dist/hooks/learned-skills/loader.js +107 -0
- package/dist/hooks/learned-skills/loader.js.map +1 -0
- package/dist/hooks/learned-skills/parser.d.ts +21 -0
- package/dist/hooks/learned-skills/parser.d.ts.map +1 -0
- package/dist/hooks/learned-skills/parser.js +190 -0
- package/dist/hooks/learned-skills/parser.js.map +1 -0
- package/dist/hooks/learned-skills/promotion.d.ts +29 -0
- package/dist/hooks/learned-skills/promotion.d.ts.map +1 -0
- package/dist/hooks/learned-skills/promotion.js +87 -0
- package/dist/hooks/learned-skills/promotion.js.map +1 -0
- package/dist/hooks/learned-skills/types.d.ts +109 -0
- package/dist/hooks/learned-skills/types.d.ts.map +1 -0
- package/dist/hooks/learned-skills/types.js +8 -0
- package/dist/hooks/learned-skills/types.js.map +1 -0
- package/dist/hooks/learned-skills/validator.d.ts +15 -0
- package/dist/hooks/learned-skills/validator.d.ts.map +1 -0
- package/dist/hooks/learned-skills/validator.js +87 -0
- package/dist/hooks/learned-skills/validator.js.map +1 -0
- package/dist/hooks/learned-skills/writer.d.ts +27 -0
- package/dist/hooks/learned-skills/writer.d.ts.map +1 -0
- package/dist/hooks/learned-skills/writer.js +126 -0
- package/dist/hooks/learned-skills/writer.js.map +1 -0
- package/dist/hooks/learner/config.d.ts +53 -0
- package/dist/hooks/learner/config.d.ts.map +1 -0
- package/dist/hooks/learner/config.js +103 -0
- package/dist/hooks/learner/config.js.map +1 -0
- package/dist/hooks/learner/constants.d.ts +24 -0
- package/dist/hooks/learner/constants.d.ts.map +1 -0
- package/dist/hooks/learner/constants.js +26 -0
- package/dist/hooks/learner/constants.js.map +1 -0
- package/dist/hooks/learner/detection-hook.d.ts +39 -0
- package/dist/hooks/learner/detection-hook.d.ts.map +1 -0
- package/dist/hooks/learner/detection-hook.js +83 -0
- package/dist/hooks/learner/detection-hook.js.map +1 -0
- package/dist/hooks/learner/detector.d.ts +30 -0
- package/dist/hooks/learner/detector.d.ts.map +1 -0
- package/dist/hooks/learner/detector.js +150 -0
- package/dist/hooks/learner/detector.js.map +1 -0
- package/dist/hooks/learner/finder.d.ts +21 -0
- package/dist/hooks/learner/finder.d.ts.map +1 -0
- package/dist/hooks/learner/finder.js +117 -0
- package/dist/hooks/learner/finder.js.map +1 -0
- package/dist/hooks/learner/index.d.ts +62 -0
- package/dist/hooks/learner/index.d.ts.map +1 -0
- package/dist/hooks/learner/index.js +137 -0
- package/dist/hooks/learner/index.js.map +1 -0
- package/dist/hooks/learner/loader.d.ts +20 -0
- package/dist/hooks/learner/loader.d.ts.map +1 -0
- package/dist/hooks/learner/loader.js +113 -0
- package/dist/hooks/learner/loader.js.map +1 -0
- package/dist/hooks/learner/parser.d.ts +21 -0
- package/dist/hooks/learner/parser.d.ts.map +1 -0
- package/dist/hooks/learner/parser.js +190 -0
- package/dist/hooks/learner/parser.js.map +1 -0
- package/dist/hooks/learner/promotion.d.ts +29 -0
- package/dist/hooks/learner/promotion.d.ts.map +1 -0
- package/dist/hooks/learner/promotion.js +87 -0
- package/dist/hooks/learner/promotion.js.map +1 -0
- package/dist/hooks/learner/types.d.ts +109 -0
- package/dist/hooks/learner/types.d.ts.map +1 -0
- package/dist/hooks/learner/types.js +8 -0
- package/dist/hooks/learner/types.js.map +1 -0
- package/dist/hooks/learner/validator.d.ts +15 -0
- package/dist/hooks/learner/validator.d.ts.map +1 -0
- package/dist/hooks/learner/validator.js +87 -0
- package/dist/hooks/learner/validator.js.map +1 -0
- package/dist/hooks/learner/writer.d.ts +27 -0
- package/dist/hooks/learner/writer.d.ts.map +1 -0
- package/dist/hooks/learner/writer.js +126 -0
- package/dist/hooks/learner/writer.js.map +1 -0
- package/dist/hooks/mnemosyne/config.d.ts +53 -0
- package/dist/hooks/mnemosyne/config.d.ts.map +1 -0
- package/dist/hooks/mnemosyne/config.js +103 -0
- package/dist/hooks/mnemosyne/config.js.map +1 -0
- package/dist/hooks/mnemosyne/constants.d.ts +24 -0
- package/dist/hooks/mnemosyne/constants.d.ts.map +1 -0
- package/dist/hooks/mnemosyne/constants.js +26 -0
- package/dist/hooks/mnemosyne/constants.js.map +1 -0
- package/dist/hooks/mnemosyne/detection-hook.d.ts +39 -0
- package/dist/hooks/mnemosyne/detection-hook.d.ts.map +1 -0
- package/dist/hooks/mnemosyne/detection-hook.js +83 -0
- package/dist/hooks/mnemosyne/detection-hook.js.map +1 -0
- package/dist/hooks/mnemosyne/detector.d.ts +30 -0
- package/dist/hooks/mnemosyne/detector.d.ts.map +1 -0
- package/dist/hooks/mnemosyne/detector.js +150 -0
- package/dist/hooks/mnemosyne/detector.js.map +1 -0
- package/dist/hooks/mnemosyne/finder.d.ts +21 -0
- package/dist/hooks/mnemosyne/finder.d.ts.map +1 -0
- package/dist/hooks/mnemosyne/finder.js +117 -0
- package/dist/hooks/mnemosyne/finder.js.map +1 -0
- package/dist/hooks/mnemosyne/index.d.ts +62 -0
- package/dist/hooks/mnemosyne/index.d.ts.map +1 -0
- package/dist/hooks/mnemosyne/index.js +137 -0
- package/dist/hooks/mnemosyne/index.js.map +1 -0
- package/dist/hooks/mnemosyne/loader.d.ts +20 -0
- package/dist/hooks/mnemosyne/loader.d.ts.map +1 -0
- package/dist/hooks/mnemosyne/loader.js +113 -0
- package/dist/hooks/mnemosyne/loader.js.map +1 -0
- package/dist/hooks/mnemosyne/parser.d.ts +21 -0
- package/dist/hooks/mnemosyne/parser.d.ts.map +1 -0
- package/dist/hooks/mnemosyne/parser.js +190 -0
- package/dist/hooks/mnemosyne/parser.js.map +1 -0
- package/dist/hooks/mnemosyne/promotion.d.ts +29 -0
- package/dist/hooks/mnemosyne/promotion.d.ts.map +1 -0
- package/dist/hooks/mnemosyne/promotion.js +87 -0
- package/dist/hooks/mnemosyne/promotion.js.map +1 -0
- package/dist/hooks/mnemosyne/types.d.ts +109 -0
- package/dist/hooks/mnemosyne/types.d.ts.map +1 -0
- package/dist/hooks/mnemosyne/types.js +8 -0
- package/dist/hooks/mnemosyne/types.js.map +1 -0
- package/dist/hooks/mnemosyne/validator.d.ts +15 -0
- package/dist/hooks/mnemosyne/validator.d.ts.map +1 -0
- package/dist/hooks/mnemosyne/validator.js +87 -0
- package/dist/hooks/mnemosyne/validator.js.map +1 -0
- package/dist/hooks/mnemosyne/writer.d.ts +27 -0
- package/dist/hooks/mnemosyne/writer.d.ts.map +1 -0
- package/dist/hooks/mnemosyne/writer.js +126 -0
- package/dist/hooks/mnemosyne/writer.js.map +1 -0
- package/dist/hooks/notepad/index.d.ts +2 -2
- package/dist/hooks/notepad/index.js +7 -7
- package/dist/hooks/notepad/index.js.map +1 -1
- package/dist/hooks/omc-orchestrator/constants.d.ts +23 -0
- package/dist/hooks/omc-orchestrator/constants.d.ts.map +1 -0
- package/dist/hooks/omc-orchestrator/constants.js +142 -0
- package/dist/hooks/omc-orchestrator/constants.js.map +1 -0
- package/dist/hooks/omc-orchestrator/index.d.ts +113 -0
- package/dist/hooks/omc-orchestrator/index.d.ts.map +1 -0
- package/dist/hooks/omc-orchestrator/index.js +309 -0
- package/dist/hooks/omc-orchestrator/index.js.map +1 -0
- package/dist/hooks/persistent-mode/index.d.ts +4 -4
- package/dist/hooks/persistent-mode/index.d.ts.map +1 -1
- package/dist/hooks/persistent-mode/index.js +37 -37
- package/dist/hooks/persistent-mode/index.js.map +1 -1
- package/dist/hooks/ralph-loop/index.d.ts +33 -5
- package/dist/hooks/ralph-loop/index.d.ts.map +1 -1
- package/dist/hooks/ralph-loop/index.js +91 -17
- package/dist/hooks/ralph-loop/index.js.map +1 -1
- package/dist/hooks/ralph-prd/index.d.ts +4 -4
- package/dist/hooks/ralph-prd/index.d.ts.map +1 -1
- package/dist/hooks/ralph-prd/index.js +13 -13
- package/dist/hooks/ralph-prd/index.js.map +1 -1
- package/dist/hooks/ralph-progress/index.d.ts +5 -5
- package/dist/hooks/ralph-progress/index.d.ts.map +1 -1
- package/dist/hooks/ralph-progress/index.js +14 -14
- package/dist/hooks/ralph-progress/index.js.map +1 -1
- package/dist/hooks/ralph-verifier/index.d.ts +23 -23
- package/dist/hooks/ralph-verifier/index.d.ts.map +1 -1
- package/dist/hooks/ralph-verifier/index.js +41 -41
- package/dist/hooks/ralph-verifier/index.js.map +1 -1
- package/dist/hooks/rules-injector/constants.d.ts +1 -1
- package/dist/hooks/rules-injector/constants.d.ts.map +1 -1
- package/dist/hooks/rules-injector/constants.js +2 -2
- package/dist/hooks/rules-injector/constants.js.map +1 -1
- package/dist/hooks/todo-continuation/index.js +1 -1
- package/dist/hooks/todo-continuation/index.js.map +1 -1
- package/dist/hooks/ultraqa-loop/index.d.ts +1 -1
- package/dist/hooks/ultraqa-loop/index.js +8 -8
- package/dist/hooks/ultraqa-loop/index.js.map +1 -1
- package/dist/hooks/ultrawork-state/index.js +7 -7
- package/dist/hooks/ultrawork-state/index.js.map +1 -1
- package/dist/hud/background-tasks.d.ts +26 -0
- package/dist/hud/background-tasks.d.ts.map +1 -0
- package/dist/hud/background-tasks.js +116 -0
- package/dist/hud/background-tasks.js.map +1 -0
- package/dist/hud/colors.d.ts +54 -0
- package/dist/hud/colors.d.ts.map +1 -0
- package/dist/hud/colors.js +156 -0
- package/dist/hud/colors.js.map +1 -0
- package/dist/hud/elements/agents.d.ts +73 -0
- package/dist/hud/elements/agents.d.ts.map +1 -0
- package/dist/hud/elements/agents.js +405 -0
- package/dist/hud/elements/agents.js.map +1 -0
- package/dist/hud/elements/background.d.ts +20 -0
- package/dist/hud/elements/background.d.ts.map +1 -0
- package/dist/hud/elements/background.js +70 -0
- package/dist/hud/elements/background.js.map +1 -0
- package/dist/hud/elements/context.d.ts +19 -0
- package/dist/hud/elements/context.d.ts.map +1 -0
- package/dist/hud/elements/context.js +58 -0
- package/dist/hud/elements/context.js.map +1 -0
- package/dist/hud/elements/index.d.ts +17 -0
- package/dist/hud/elements/index.d.ts.map +1 -0
- package/dist/hud/elements/index.js +17 -0
- package/dist/hud/elements/index.js.map +1 -0
- package/dist/hud/elements/limits.d.ts +19 -0
- package/dist/hud/elements/limits.d.ts.map +1 -0
- package/dist/hud/elements/limits.js +54 -0
- package/dist/hud/elements/limits.js.map +1 -0
- package/dist/hud/elements/permission.d.ts +13 -0
- package/dist/hud/elements/permission.d.ts.map +1 -0
- package/dist/hud/elements/permission.js +20 -0
- package/dist/hud/elements/permission.js.map +1 -0
- package/dist/hud/elements/prd.d.ts +20 -0
- package/dist/hud/elements/prd.d.ts.map +1 -0
- package/dist/hud/elements/prd.js +52 -0
- package/dist/hud/elements/prd.js.map +1 -0
- package/dist/hud/elements/ralph.d.ts +14 -0
- package/dist/hud/elements/ralph.d.ts.map +1 -0
- package/dist/hud/elements/ralph.js +36 -0
- package/dist/hud/elements/ralph.js.map +1 -0
- package/dist/hud/elements/session.d.ts +13 -0
- package/dist/hud/elements/session.d.ts.map +1 -0
- package/dist/hud/elements/session.js +24 -0
- package/dist/hud/elements/session.js.map +1 -0
- package/dist/hud/elements/skills.d.ts +24 -0
- package/dist/hud/elements/skills.d.ts.map +1 -0
- package/dist/hud/elements/skills.js +81 -0
- package/dist/hud/elements/skills.js.map +1 -0
- package/dist/hud/elements/thinking.d.ts +13 -0
- package/dist/hud/elements/thinking.d.ts.map +1 -0
- package/dist/hud/elements/thinking.js +19 -0
- package/dist/hud/elements/thinking.js.map +1 -0
- package/dist/hud/elements/todos.d.ts +20 -0
- package/dist/hud/elements/todos.d.ts.map +1 -0
- package/dist/hud/elements/todos.js +70 -0
- package/dist/hud/elements/todos.js.map +1 -0
- package/dist/hud/index.d.ts +9 -0
- package/dist/hud/index.d.ts.map +1 -0
- package/dist/hud/index.js +89 -0
- package/dist/hud/index.js.map +1 -0
- package/dist/hud/omc-state.d.ts +31 -0
- package/dist/hud/omc-state.d.ts.map +1 -0
- package/dist/hud/omc-state.js +163 -0
- package/dist/hud/omc-state.js.map +1 -0
- package/dist/hud/render.d.ts +11 -0
- package/dist/hud/render.d.ts.map +1 -0
- package/dist/hud/render.js +121 -0
- package/dist/hud/render.js.map +1 -0
- package/dist/hud/sisyphus-state.d.ts +31 -0
- package/dist/hud/sisyphus-state.d.ts.map +1 -0
- package/dist/hud/sisyphus-state.js +163 -0
- package/dist/hud/sisyphus-state.js.map +1 -0
- package/dist/hud/state.d.ts +43 -0
- package/dist/hud/state.d.ts.map +1 -0
- package/dist/hud/state.js +201 -0
- package/dist/hud/state.js.map +1 -0
- package/dist/hud/stdin.d.ts +22 -0
- package/dist/hud/stdin.d.ts.map +1 -0
- package/dist/hud/stdin.js +65 -0
- package/dist/hud/stdin.js.map +1 -0
- package/dist/hud/transcript.d.ts +32 -0
- package/dist/hud/transcript.d.ts.map +1 -0
- package/dist/hud/transcript.js +364 -0
- package/dist/hud/transcript.js.map +1 -0
- package/dist/hud/types.d.ts +178 -0
- package/dist/hud/types.d.ts.map +1 -0
- package/dist/hud/types.js +119 -0
- package/dist/hud/types.js.map +1 -0
- package/dist/hud/usage-api.d.ts +24 -0
- package/dist/hud/usage-api.d.ts.map +1 -0
- package/dist/hud/usage-api.js +234 -0
- package/dist/hud/usage-api.js.map +1 -0
- package/dist/index.d.ts +7 -7
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +10 -12
- package/dist/index.js.map +1 -1
- package/dist/installer/hooks.d.ts +36 -64
- package/dist/installer/hooks.d.ts.map +1 -1
- package/dist/installer/hooks.js +91 -1298
- package/dist/installer/hooks.js.map +1 -1
- package/dist/installer/index.d.ts +23 -22
- package/dist/installer/index.d.ts.map +1 -1
- package/dist/installer/index.js +307 -2575
- package/dist/installer/index.js.map +1 -1
- package/dist/shared/types.d.ts +6 -6
- package/dist/shared/types.d.ts.map +1 -1
- package/docs/ARCHITECTURE.md +386 -0
- package/docs/CLAUDE.md +281 -0
- package/docs/FULL-README.md +824 -0
- package/docs/LOCAL_PLUGIN_INSTALL.md +94 -0
- package/docs/MIGRATION-v3.md +186 -0
- package/docs/MIGRATION.md +456 -0
- package/docs/TIERED_AGENTS_V2.md +322 -0
- package/hooks/hooks.json +70 -0
- package/hooks/keyword-detector.sh +102 -0
- package/hooks/persistent-mode.sh +172 -0
- package/hooks/session-start.sh +62 -0
- package/hooks/stop-continuation.sh +40 -0
- package/package.json +14 -8
- package/scripts/install.sh +90 -72
- package/scripts/keyword-detector.mjs +1 -1
- package/scripts/persistent-mode.mjs +9 -9
- package/scripts/persistent-mode.sh +21 -10
- package/scripts/plugin-setup.mjs +109 -0
- package/scripts/pre-tool-enforcer.mjs +1 -1
- package/scripts/pre-tool-enforcer.sh +1 -1
- package/scripts/session-start.mjs +38 -3
- package/scripts/skill-injector.mjs +231 -0
- package/scripts/uninstall.sh +8 -8
- package/skills/analyze/SKILL.md +47 -0
- package/skills/cancel-ralph/SKILL.md +43 -0
- package/skills/cancel-ultraqa/SKILL.md +29 -0
- package/skills/cancel-ultrawork/SKILL.md +42 -0
- package/skills/deepinit/SKILL.md +321 -0
- package/skills/deepsearch/SKILL.md +39 -0
- package/skills/doctor/SKILL.md +192 -0
- package/skills/frontend-ui-ux/SKILL.md +53 -0
- package/skills/git-master/SKILL.md +58 -0
- package/skills/help/SKILL.md +66 -0
- package/skills/hud/SKILL.md +142 -0
- package/skills/learner/SKILL.md +136 -0
- package/skills/note/SKILL.md +63 -0
- package/skills/omc-default/SKILL.md +78 -0
- package/skills/omc-default-global/SKILL.md +75 -0
- package/skills/omc-setup/SKILL.md +134 -0
- package/skills/orchestrate/SKILL.md +409 -0
- package/skills/plan/SKILL.md +37 -0
- package/skills/planner/SKILL.md +43 -0
- package/skills/ralph/SKILL.md +101 -0
- package/skills/ralph-init/SKILL.md +61 -0
- package/skills/ralplan/SKILL.md +219 -0
- package/skills/release/SKILL.md +84 -0
- package/skills/review/SKILL.md +37 -0
- package/skills/ultraqa/SKILL.md +123 -0
- package/skills/ultrawork/SKILL.md +89 -0
|
@@ -0,0 +1,456 @@
|
|
|
1
|
+
# Migration Guide: 2.x to 3.0
|
|
2
|
+
|
|
3
|
+
## TL;DR
|
|
4
|
+
|
|
5
|
+
Your old commands still work! But now you don't need them.
|
|
6
|
+
|
|
7
|
+
**Before 3.0:** Explicitly invoke 25+ commands like `/ralph "task"`, `/ultrawork "task"`
|
|
8
|
+
|
|
9
|
+
**After 3.0:** Just work naturally - Claude auto-activates the right behaviors. One-time setup: just say "setup omc"
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## What Changed
|
|
14
|
+
|
|
15
|
+
### Before (2.x): Explicit Commands
|
|
16
|
+
|
|
17
|
+
You had to remember and explicitly invoke specific commands for each mode:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
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
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### After (3.0): Auto-Activation + Keywords
|
|
31
|
+
|
|
32
|
+
Work naturally. Claude detects intent and activates behaviors automatically:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
# 3.0 workflow: Just talk naturally OR use optional keywords
|
|
36
|
+
"don't stop until user auth is done" # Auto-activates ralph-loop
|
|
37
|
+
"fast: refactor the entire API layer" # Auto-activates ultrawork
|
|
38
|
+
"plan: design the new dashboard" # Auto-activates planning
|
|
39
|
+
"ralph ulw: migrate the database" # Combined: persistence + parallelism
|
|
40
|
+
"find all database schema files" # Auto-activates search mode
|
|
41
|
+
"commit these changes properly" # Auto-activates git expertise
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## Command Mapping
|
|
47
|
+
|
|
48
|
+
All 2.x commands continue to work. Here's what changed:
|
|
49
|
+
|
|
50
|
+
| 2.x Command | 3.0 Equivalent | Works? |
|
|
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) |
|
|
66
|
+
| All other commands | Work exactly as before | ✅ YES |
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
## Magic Keywords
|
|
71
|
+
|
|
72
|
+
Include these anywhere in your message to explicitly activate behaviors. Use keywords when you want explicit control (optional):
|
|
73
|
+
|
|
74
|
+
| Keyword | Effect | Example |
|
|
75
|
+
|---------|--------|---------|
|
|
76
|
+
| `ralph` | Persistence mode - won't stop until done | "ralph: refactor the auth system" |
|
|
77
|
+
| `ralplan` | Iterative planning with consensus | "ralplan: add OAuth support" |
|
|
78
|
+
| `ulw` / `ultrawork` | Maximum parallel execution | "ulw: fix all type errors" |
|
|
79
|
+
| `plan` | Planning interview | "plan: new API design" |
|
|
80
|
+
|
|
81
|
+
**Combine them for superpowers:**
|
|
82
|
+
```
|
|
83
|
+
ralph ulw: migrate the entire database
|
|
84
|
+
↓
|
|
85
|
+
Persistence (won't stop) + Ultrawork (maximum parallelism)
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
**No keywords?** Claude still auto-detects:
|
|
89
|
+
```
|
|
90
|
+
"don't stop until this works" # Triggers ralph
|
|
91
|
+
"fast, I'm in a hurry" # Triggers ultrawork
|
|
92
|
+
"help me design the dashboard" # Triggers planning
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
---
|
|
96
|
+
|
|
97
|
+
## Natural Cancellation
|
|
98
|
+
|
|
99
|
+
Say any of these to stop:
|
|
100
|
+
- "stop"
|
|
101
|
+
- "cancel"
|
|
102
|
+
- "abort"
|
|
103
|
+
- "nevermind"
|
|
104
|
+
- "enough"
|
|
105
|
+
- "halt"
|
|
106
|
+
|
|
107
|
+
Claude intelligently determines what to stop:
|
|
108
|
+
|
|
109
|
+
```
|
|
110
|
+
If in ralph-loop → Exit persistence loop
|
|
111
|
+
If in ultrawork → Return to normal mode
|
|
112
|
+
If in planning → End planning interview
|
|
113
|
+
If multiple active → Stop the most recent
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
No more `/cancel-ralph` - just say "cancel"!
|
|
117
|
+
|
|
118
|
+
---
|
|
119
|
+
|
|
120
|
+
## Backward Compatibility: All 2.x Commands Still Work
|
|
121
|
+
|
|
122
|
+
**Zero breaking changes.** Your existing workflows don't break.
|
|
123
|
+
|
|
124
|
+
### Explicit Command Invocation Still Works
|
|
125
|
+
|
|
126
|
+
You can still use explicit commands if you prefer:
|
|
127
|
+
|
|
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 ✅
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
These are now **optional** - use them if you like, but you don't have to.
|
|
136
|
+
|
|
137
|
+
### Skill Composition
|
|
138
|
+
|
|
139
|
+
Skills now compose automatically based on context:
|
|
140
|
+
|
|
141
|
+
```
|
|
142
|
+
Natural request: "Help me refactor the API quickly"
|
|
143
|
+
↓
|
|
144
|
+
Auto-detects: Need orchestration + speed
|
|
145
|
+
↓
|
|
146
|
+
Activates: orchestrate + ultrawork + git-master skills
|
|
147
|
+
↓
|
|
148
|
+
Result: Parallel agents, atomic commits, fast implementation
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
You don't need to invoke multiple commands manually - Claude figures it out.
|
|
152
|
+
|
|
153
|
+
---
|
|
154
|
+
|
|
155
|
+
## Breaking Changes
|
|
156
|
+
|
|
157
|
+
**None!** Version 3.0 is purely additive:
|
|
158
|
+
|
|
159
|
+
- All 2.x commands continue to work
|
|
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
|
|
163
|
+
|
|
164
|
+
See [MIGRATION-v3.md](MIGRATION-v3.md) for detailed 2.x → 3.0 naming changes.
|
|
165
|
+
|
|
166
|
+
---
|
|
167
|
+
|
|
168
|
+
## New Features in 3.0
|
|
169
|
+
|
|
170
|
+
### 1. Zero-Learning-Curve Operation
|
|
171
|
+
|
|
172
|
+
**No commands to memorize.** Work naturally:
|
|
173
|
+
|
|
174
|
+
```
|
|
175
|
+
Before: "OK, I need to use /ultrawork for speed..."
|
|
176
|
+
After: "I'm in a hurry, go fast!"
|
|
177
|
+
↓
|
|
178
|
+
Claude: "I'm activating ultrawork mode..."
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
### 2. Delegate Always (Automatic)
|
|
182
|
+
|
|
183
|
+
Complex work auto-routes to specialist agents:
|
|
184
|
+
|
|
185
|
+
```
|
|
186
|
+
Your request Claude's action
|
|
187
|
+
──────────────────── ────────────────────
|
|
188
|
+
"Refactor the database" → Delegates to architect
|
|
189
|
+
"Fix the UI colors" → Delegates to designer
|
|
190
|
+
"Document this API" → Delegates to writer
|
|
191
|
+
"Search for all errors" → Delegates to explore
|
|
192
|
+
"Debug this crash" → Delegates to architect
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
You don't ask for delegation - it happens automatically.
|
|
196
|
+
|
|
197
|
+
### 3. Learned Skills (`/learner`)
|
|
198
|
+
|
|
199
|
+
Extract reusable insights from problem-solving:
|
|
200
|
+
|
|
201
|
+
```bash
|
|
202
|
+
# After solving a tricky bug:
|
|
203
|
+
"Extract this as a skill"
|
|
204
|
+
↓
|
|
205
|
+
Claude learns the pattern and stores it
|
|
206
|
+
↓
|
|
207
|
+
Next time keywords match → Solution auto-injects
|
|
208
|
+
```
|
|
209
|
+
|
|
210
|
+
Storage:
|
|
211
|
+
- **Project-level**: `.omc/skills/` (version-controlled)
|
|
212
|
+
- **User-level**: `~/.claude/skills/omc-learned/` (portable)
|
|
213
|
+
|
|
214
|
+
### 4. HUD Statusline (Real-Time Orchestration)
|
|
215
|
+
|
|
216
|
+
See what Claude is doing in the status bar:
|
|
217
|
+
|
|
218
|
+
```
|
|
219
|
+
[OMC] ralph:3/10 | US-002 | ultrawork skill:planner | ctx:67% | agents:2 | todos:2/5
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
Run `/hud setup` to install. Presets: minimal, focused, full.
|
|
223
|
+
|
|
224
|
+
### 5. Three-Tier Memory System
|
|
225
|
+
|
|
226
|
+
Critical knowledge survives context compaction:
|
|
227
|
+
|
|
228
|
+
```
|
|
229
|
+
<remember priority>API client at src/api/client.ts</remember>
|
|
230
|
+
↓
|
|
231
|
+
Permanently loaded on session start
|
|
232
|
+
↓
|
|
233
|
+
Never lost through compaction
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
Or use `/note` to save discoveries manually:
|
|
237
|
+
|
|
238
|
+
```bash
|
|
239
|
+
/note Project uses PostgreSQL with Prisma ORM
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
### 6. Structured Task Tracking (PRD Support)
|
|
243
|
+
|
|
244
|
+
**Ralph Loop now uses Product Requirements Documents:**
|
|
245
|
+
|
|
246
|
+
```bash
|
|
247
|
+
/ralph-init "implement OAuth with multiple providers"
|
|
248
|
+
↓
|
|
249
|
+
Auto-creates PRD with user stories
|
|
250
|
+
↓
|
|
251
|
+
Each story: description + acceptance criteria + pass/fail
|
|
252
|
+
↓
|
|
253
|
+
Ralph loops until ALL stories pass
|
|
254
|
+
```
|
|
255
|
+
|
|
256
|
+
### 7. Intelligent Continuation
|
|
257
|
+
|
|
258
|
+
**Tasks complete before Claude stops:**
|
|
259
|
+
|
|
260
|
+
```
|
|
261
|
+
You: "Implement user dashboard"
|
|
262
|
+
↓
|
|
263
|
+
Claude: "I'm activating ralph-loop to ensure completion"
|
|
264
|
+
↓
|
|
265
|
+
Creates todo list, works through each item
|
|
266
|
+
↓
|
|
267
|
+
Only stops when EVERYTHING is verified complete
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
---
|
|
271
|
+
|
|
272
|
+
## Getting Started with 3.0
|
|
273
|
+
|
|
274
|
+
### Step 1: Update Your Plugin
|
|
275
|
+
|
|
276
|
+
```bash
|
|
277
|
+
# Plugin auto-updates, but you can manually update:
|
|
278
|
+
npm update -g oh-my-claudecode
|
|
279
|
+
```
|
|
280
|
+
|
|
281
|
+
### Step 2: Run One-Time Setup
|
|
282
|
+
|
|
283
|
+
In Claude Code, just say "setup omc", "omc setup", or any natural language equivalent.
|
|
284
|
+
|
|
285
|
+
This:
|
|
286
|
+
- Downloads latest CLAUDE.md
|
|
287
|
+
- Configures 19 agents
|
|
288
|
+
- Enables auto-behavior detection
|
|
289
|
+
- Activates continuation enforcement
|
|
290
|
+
- Sets up skill composition
|
|
291
|
+
|
|
292
|
+
### Step 3: Use Naturally
|
|
293
|
+
|
|
294
|
+
**Just work.** Everything is automatic.
|
|
295
|
+
|
|
296
|
+
```bash
|
|
297
|
+
"refactor the authentication system"
|
|
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
|
|
304
|
+
```
|
|
305
|
+
|
|
306
|
+
---
|
|
307
|
+
|
|
308
|
+
## Configuration Options
|
|
309
|
+
|
|
310
|
+
### Project-Scoped Configuration (Recommended)
|
|
311
|
+
|
|
312
|
+
Apply oh-my-claudecode to current project only:
|
|
313
|
+
|
|
314
|
+
```
|
|
315
|
+
/omc-default
|
|
316
|
+
```
|
|
317
|
+
|
|
318
|
+
Creates: `./.claude/CLAUDE.md`
|
|
319
|
+
|
|
320
|
+
### Global Configuration
|
|
321
|
+
|
|
322
|
+
Apply to all Claude Code sessions:
|
|
323
|
+
|
|
324
|
+
```
|
|
325
|
+
/omc-default-global
|
|
326
|
+
```
|
|
327
|
+
|
|
328
|
+
Creates: `~/.claude/CLAUDE.md`
|
|
329
|
+
|
|
330
|
+
**Precedence:** Project config overrides global if both exist.
|
|
331
|
+
|
|
332
|
+
---
|
|
333
|
+
|
|
334
|
+
## Common Scenarios: 2.x vs 3.0
|
|
335
|
+
|
|
336
|
+
### Scenario 1: Quick Implementation Task
|
|
337
|
+
|
|
338
|
+
**2.x Workflow:**
|
|
339
|
+
```
|
|
340
|
+
/ultrawork "implement the todo list feature"
|
|
341
|
+
```
|
|
342
|
+
|
|
343
|
+
**3.0 Workflow:**
|
|
344
|
+
```
|
|
345
|
+
"implement the todo list feature quickly"
|
|
346
|
+
↓
|
|
347
|
+
Claude: "I'm activating ultrawork for maximum parallelism"
|
|
348
|
+
```
|
|
349
|
+
|
|
350
|
+
**Result:** Same outcome, more natural interaction.
|
|
351
|
+
|
|
352
|
+
### Scenario 2: Complex Debugging
|
|
353
|
+
|
|
354
|
+
**2.x Workflow:**
|
|
355
|
+
```
|
|
356
|
+
/ralph "debug the memory leak"
|
|
357
|
+
```
|
|
358
|
+
|
|
359
|
+
**3.0 Workflow:**
|
|
360
|
+
```
|
|
361
|
+
"there's a memory leak in the worker process - don't stop until we fix it"
|
|
362
|
+
↓
|
|
363
|
+
Claude: "I'm activating ralph-loop to ensure completion"
|
|
364
|
+
```
|
|
365
|
+
|
|
366
|
+
**Result:** Ralph-loop with more context from your natural language.
|
|
367
|
+
|
|
368
|
+
### Scenario 3: Strategic Planning
|
|
369
|
+
|
|
370
|
+
**2.x Workflow:**
|
|
371
|
+
```
|
|
372
|
+
/planner "design the new authentication system"
|
|
373
|
+
```
|
|
374
|
+
|
|
375
|
+
**3.0 Workflow:**
|
|
376
|
+
```
|
|
377
|
+
"plan the new authentication system"
|
|
378
|
+
↓
|
|
379
|
+
Claude: "I'm starting a planning session"
|
|
380
|
+
↓
|
|
381
|
+
Interview begins automatically
|
|
382
|
+
```
|
|
383
|
+
|
|
384
|
+
**Result:** Planning interview triggered by natural language.
|
|
385
|
+
|
|
386
|
+
### Scenario 4: Stopping Work
|
|
387
|
+
|
|
388
|
+
**2.x Workflow:**
|
|
389
|
+
```
|
|
390
|
+
/cancel-ralph
|
|
391
|
+
```
|
|
392
|
+
|
|
393
|
+
**3.0 Workflow:**
|
|
394
|
+
```
|
|
395
|
+
"stop"
|
|
396
|
+
```
|
|
397
|
+
|
|
398
|
+
**Result:** Claude intelligently cancels the active operation.
|
|
399
|
+
|
|
400
|
+
---
|
|
401
|
+
|
|
402
|
+
## Migration Checklist
|
|
403
|
+
|
|
404
|
+
If you're upgrading from 2.x:
|
|
405
|
+
|
|
406
|
+
- [ ] Install/Update plugin: `claude plugin install oh-my-claude-sisyphus`
|
|
407
|
+
- [ ] Run setup: say "setup omc"
|
|
408
|
+
- [ ] Test natural language: Say "don't stop until done" (should activate ralph)
|
|
409
|
+
- [ ] Test keyword: Use `ralph` keyword in a request (should activate ralph-loop)
|
|
410
|
+
- [ ] Test cancellation: Say "stop" (should cancel active operation)
|
|
411
|
+
- [ ] Review existing scripts: Update references to old command names (optional - old commands still work)
|
|
412
|
+
|
|
413
|
+
---
|
|
414
|
+
|
|
415
|
+
## FAQ
|
|
416
|
+
|
|
417
|
+
**Q: Do I have to use keywords?**
|
|
418
|
+
A: No. Keywords are optional shortcuts. Claude auto-detects intent without them.
|
|
419
|
+
|
|
420
|
+
**Q: Will my old commands break?**
|
|
421
|
+
A: No. All 2.x commands continue to work exactly as before.
|
|
422
|
+
|
|
423
|
+
**Q: What if I like explicit commands?**
|
|
424
|
+
A: Keep using them! `/ralph`, `/ultrawork`, `/planner` all still work.
|
|
425
|
+
|
|
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.
|
|
428
|
+
|
|
429
|
+
**Q: Where's the old command list?**
|
|
430
|
+
A: See [README.md](../README.md) for full command reference. All commands still work.
|
|
431
|
+
|
|
432
|
+
**Q: What's the difference between keywords and natural language?**
|
|
433
|
+
A: Keywords are explicit shortcuts. Natural language triggers auto-detection. Both work.
|
|
434
|
+
|
|
435
|
+
---
|
|
436
|
+
|
|
437
|
+
## Need Help?
|
|
438
|
+
|
|
439
|
+
- **Diagnose issues**: Run `/doctor`
|
|
440
|
+
- **See all commands**: Run `/help`
|
|
441
|
+
- **View real-time status**: Run `/hud setup`
|
|
442
|
+
- **Review detailed changelog**: See [CHANGELOG.md](../CHANGELOG.md)
|
|
443
|
+
- **Report bugs**: [GitHub Issues](https://github.com/Yeachan-Heo/oh-my-claude-sisyphus/issues)
|
|
444
|
+
|
|
445
|
+
---
|
|
446
|
+
|
|
447
|
+
## What's Next?
|
|
448
|
+
|
|
449
|
+
Now that you understand the migration:
|
|
450
|
+
|
|
451
|
+
1. **For immediate impact**: Start using keywords (`ralph`, `ulw`, `plan`) in your work
|
|
452
|
+
2. **For full power**: Read [docs/CLAUDE.md](CLAUDE.md) to understand orchestration
|
|
453
|
+
3. **For advanced usage**: Check [docs/ARCHITECTURE.md](ARCHITECTURE.md) for deep dives
|
|
454
|
+
4. **For team onboarding**: Share this guide with teammates
|
|
455
|
+
|
|
456
|
+
Welcome to 3.0!
|