oh-my-claude-sisyphus 2.6.0 → 3.0.0
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 +59 -708
- 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 +822 -0
- package/docs/LOCAL_PLUGIN_INSTALL.md +94 -0
- package/docs/MIGRATION-v3.md +186 -0
- package/docs/MIGRATION.md +460 -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 +39 -20
- 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 +144 -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,62 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# Sisyphus Session Start Hook
|
|
3
|
+
# Restores persistent mode states and injects context when session starts
|
|
4
|
+
|
|
5
|
+
# Read stdin
|
|
6
|
+
INPUT=$(cat)
|
|
7
|
+
|
|
8
|
+
# Get directory
|
|
9
|
+
DIRECTORY=""
|
|
10
|
+
if command -v jq &> /dev/null; then
|
|
11
|
+
DIRECTORY=$(echo "$INPUT" | jq -r '.directory // ""' 2>/dev/null)
|
|
12
|
+
fi
|
|
13
|
+
|
|
14
|
+
if [ -z "$DIRECTORY" ]; then
|
|
15
|
+
DIRECTORY=$(pwd)
|
|
16
|
+
fi
|
|
17
|
+
|
|
18
|
+
MESSAGES=""
|
|
19
|
+
|
|
20
|
+
# Check for active ultrawork state
|
|
21
|
+
if [ -f "$DIRECTORY/.omc/ultrawork-state.json" ] || [ -f "$HOME/.claude/ultrawork-state.json" ]; then
|
|
22
|
+
if [ -f "$DIRECTORY/.omc/ultrawork-state.json" ]; then
|
|
23
|
+
ULTRAWORK_STATE=$(cat "$DIRECTORY/.omc/ultrawork-state.json" 2>/dev/null)
|
|
24
|
+
else
|
|
25
|
+
ULTRAWORK_STATE=$(cat "$HOME/.claude/ultrawork-state.json" 2>/dev/null)
|
|
26
|
+
fi
|
|
27
|
+
|
|
28
|
+
IS_ACTIVE=$(echo "$ULTRAWORK_STATE" | jq -r '.active // false' 2>/dev/null)
|
|
29
|
+
if [ "$IS_ACTIVE" = "true" ]; then
|
|
30
|
+
STARTED_AT=$(echo "$ULTRAWORK_STATE" | jq -r '.started_at // ""' 2>/dev/null)
|
|
31
|
+
PROMPT=$(echo "$ULTRAWORK_STATE" | jq -r '.original_prompt // ""' 2>/dev/null)
|
|
32
|
+
MESSAGES="$MESSAGES<session-restore>\n\n[ULTRAWORK MODE RESTORED]\n\nYou have an active ultrawork session from $STARTED_AT.\nOriginal task: $PROMPT\n\nContinue working in ultrawork mode until all tasks are complete.\n\n</session-restore>\n\n---\n\n"
|
|
33
|
+
fi
|
|
34
|
+
fi
|
|
35
|
+
|
|
36
|
+
# Check for incomplete todos
|
|
37
|
+
INCOMPLETE_COUNT=0
|
|
38
|
+
TODOS_DIR="$HOME/.claude/todos"
|
|
39
|
+
if [ -d "$TODOS_DIR" ]; then
|
|
40
|
+
for todo_file in "$TODOS_DIR"/*.json; do
|
|
41
|
+
if [ -f "$todo_file" ]; then
|
|
42
|
+
if command -v jq &> /dev/null; then
|
|
43
|
+
COUNT=$(jq '[.[] | select(.status != "completed" and .status != "cancelled")] | length' "$todo_file" 2>/dev/null || echo "0")
|
|
44
|
+
INCOMPLETE_COUNT=$((INCOMPLETE_COUNT + COUNT))
|
|
45
|
+
fi
|
|
46
|
+
fi
|
|
47
|
+
done
|
|
48
|
+
fi
|
|
49
|
+
|
|
50
|
+
if [ "$INCOMPLETE_COUNT" -gt 0 ]; then
|
|
51
|
+
MESSAGES="$MESSAGES<session-restore>\n\n[PENDING TASKS DETECTED]\n\nYou have $INCOMPLETE_COUNT incomplete tasks from a previous session.\nPlease continue working on these tasks.\n\n</session-restore>\n\n---\n\n"
|
|
52
|
+
fi
|
|
53
|
+
|
|
54
|
+
# Output message if we have any
|
|
55
|
+
if [ -n "$MESSAGES" ]; then
|
|
56
|
+
# Escape for JSON
|
|
57
|
+
MESSAGES_ESCAPED=$(echo "$MESSAGES" | sed 's/"/\\"/g')
|
|
58
|
+
echo "{\"continue\": true, \"message\": \"$MESSAGES_ESCAPED\"}"
|
|
59
|
+
else
|
|
60
|
+
echo '{"continue": true}'
|
|
61
|
+
fi
|
|
62
|
+
exit 0
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# Sisyphus Stop Continuation Hook
|
|
3
|
+
# Checks for incomplete todos and injects continuation prompt
|
|
4
|
+
# Ported from oh-my-opencode's todo-continuation-enforcer
|
|
5
|
+
|
|
6
|
+
# Read stdin
|
|
7
|
+
INPUT=$(cat)
|
|
8
|
+
|
|
9
|
+
# Get session ID if available
|
|
10
|
+
SESSION_ID=""
|
|
11
|
+
if command -v jq &> /dev/null; then
|
|
12
|
+
SESSION_ID=$(echo "$INPUT" | jq -r '.sessionId // .session_id // ""' 2>/dev/null)
|
|
13
|
+
fi
|
|
14
|
+
|
|
15
|
+
# Check for incomplete todos in the Claude todos directory
|
|
16
|
+
TODOS_DIR="$HOME/.claude/todos"
|
|
17
|
+
if [ -d "$TODOS_DIR" ]; then
|
|
18
|
+
# Look for any todo files with incomplete items
|
|
19
|
+
INCOMPLETE_COUNT=0
|
|
20
|
+
for todo_file in "$TODOS_DIR"/*.json; do
|
|
21
|
+
if [ -f "$todo_file" ]; then
|
|
22
|
+
if command -v jq &> /dev/null; then
|
|
23
|
+
COUNT=$(jq '[.[] | select(.status != "completed" and .status != "cancelled")] | length' "$todo_file" 2>/dev/null || echo "0")
|
|
24
|
+
INCOMPLETE_COUNT=$((INCOMPLETE_COUNT + COUNT))
|
|
25
|
+
fi
|
|
26
|
+
fi
|
|
27
|
+
done
|
|
28
|
+
|
|
29
|
+
if [ "$INCOMPLETE_COUNT" -gt 0 ]; then
|
|
30
|
+
# Output continuation message
|
|
31
|
+
cat << EOF
|
|
32
|
+
{"continue": false, "reason": "[SYSTEM REMINDER - TODO CONTINUATION]\n\nIncomplete tasks remain in your todo list ($INCOMPLETE_COUNT remaining). Continue working on the next pending task.\n\n- Proceed without asking for permission\n- Mark each task complete when finished\n- Do not stop until all tasks are done"}
|
|
33
|
+
EOF
|
|
34
|
+
exit 0
|
|
35
|
+
fi
|
|
36
|
+
fi
|
|
37
|
+
|
|
38
|
+
# No incomplete todos - allow stop
|
|
39
|
+
echo '{"continue": true}'
|
|
40
|
+
exit 0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oh-my-claude-sisyphus",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Multi-agent orchestration system for Claude Code - Inspired by oh-my-opencode",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -12,11 +12,17 @@
|
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"bin": {
|
|
15
|
-
"oh-my-
|
|
15
|
+
"oh-my-claudecode": "dist/cli/index.js"
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
|
18
18
|
"dist",
|
|
19
|
+
"agents",
|
|
20
|
+
"commands",
|
|
21
|
+
"hooks",
|
|
19
22
|
"scripts",
|
|
23
|
+
"skills",
|
|
24
|
+
"docs",
|
|
25
|
+
"plugin.json",
|
|
20
26
|
"README.md",
|
|
21
27
|
"LICENSE"
|
|
22
28
|
],
|
|
@@ -31,8 +37,7 @@
|
|
|
31
37
|
"lint": "eslint src",
|
|
32
38
|
"format": "prettier --write src/**/*.ts",
|
|
33
39
|
"prepare": "npm run build",
|
|
34
|
-
"prepublishOnly": "npm run build"
|
|
35
|
-
"postinstall": "node dist/cli/index.js postinstall || true"
|
|
40
|
+
"prepublishOnly": "npm run build"
|
|
36
41
|
},
|
|
37
42
|
"dependencies": {
|
|
38
43
|
"@anthropic-ai/claude-agent-sdk": "^0.1.0",
|
|
@@ -60,11 +65,11 @@
|
|
|
60
65
|
},
|
|
61
66
|
"repository": {
|
|
62
67
|
"type": "git",
|
|
63
|
-
"url": "git+https://github.com/Yeachan-Heo/oh-my-
|
|
68
|
+
"url": "git+https://github.com/Yeachan-Heo/oh-my-claudecode.git"
|
|
64
69
|
},
|
|
65
|
-
"homepage": "https://github.com/Yeachan-Heo/oh-my-
|
|
70
|
+
"homepage": "https://github.com/Yeachan-Heo/oh-my-claudecode#readme",
|
|
66
71
|
"bugs": {
|
|
67
|
-
"url": "https://github.com/Yeachan-Heo/oh-my-
|
|
72
|
+
"url": "https://github.com/Yeachan-Heo/oh-my-claudecode/issues"
|
|
68
73
|
},
|
|
69
74
|
"author": "Yeachan Heo",
|
|
70
75
|
"license": "MIT",
|
|
@@ -75,7 +80,8 @@
|
|
|
75
80
|
"agent",
|
|
76
81
|
"multi-agent",
|
|
77
82
|
"orchestration",
|
|
78
|
-
"
|
|
83
|
+
"omc",
|
|
84
|
+
"claudecode",
|
|
79
85
|
"anthropic",
|
|
80
86
|
"llm"
|
|
81
87
|
],
|
package/scripts/install.sh
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
|
-
# Oh-My-
|
|
2
|
+
# Oh-My-ClaudeCode Installation Script
|
|
3
3
|
# Installs the multi-agent orchestration system for Claude Code
|
|
4
4
|
|
|
5
5
|
set -e
|
|
@@ -12,11 +12,31 @@ NC='\033[0m' # No Color
|
|
|
12
12
|
|
|
13
13
|
echo -e "${BLUE}"
|
|
14
14
|
echo "╔═══════════════════════════════════════════════════════════╗"
|
|
15
|
-
echo "║ Oh-My-
|
|
15
|
+
echo "║ Oh-My-ClaudeCode Installer ║"
|
|
16
16
|
echo "║ Multi-Agent Orchestration for Claude Code ║"
|
|
17
17
|
echo "╚═══════════════════════════════════════════════════════════╝"
|
|
18
18
|
echo -e "${NC}"
|
|
19
19
|
|
|
20
|
+
# ============================================================
|
|
21
|
+
# DEPRECATION NOTICE - v3.0.0
|
|
22
|
+
# ============================================================
|
|
23
|
+
echo ""
|
|
24
|
+
echo -e "\033[31m╔═══════════════════════════════════════════════════════════╗\033[0m"
|
|
25
|
+
echo -e "\033[31m║ DEPRECATED - Script Installation Removed ║\033[0m"
|
|
26
|
+
echo -e "\033[31m╚═══════════════════════════════════════════════════════════╝\033[0m"
|
|
27
|
+
echo ""
|
|
28
|
+
echo -e "\033[33mAs of v3.0.0, oh-my-claudecode is installed via the Claude Code plugin system only.\033[0m"
|
|
29
|
+
echo ""
|
|
30
|
+
echo -e "\033[32mTo install:\033[0m"
|
|
31
|
+
echo " /plugin marketplace add Yeachan-Heo/oh-my-claudecode"
|
|
32
|
+
echo ""
|
|
33
|
+
echo -e "\033[32mThen run setup:\033[0m"
|
|
34
|
+
echo " /omc-setup"
|
|
35
|
+
echo ""
|
|
36
|
+
echo -e "\033[34mFull documentation: https://yeachan-heo.github.io/oh-my-claudecode-website\033[0m"
|
|
37
|
+
echo ""
|
|
38
|
+
exit 0
|
|
39
|
+
|
|
20
40
|
# Claude Code config directory (always ~/.claude)
|
|
21
41
|
CLAUDE_CONFIG_DIR="$HOME/.claude"
|
|
22
42
|
|
|
@@ -295,8 +315,8 @@ You are Sisyphus-Junior, a focused task executor.
|
|
|
295
315
|
|
|
296
316
|
Your responsibilities:
|
|
297
317
|
1. **Direct Execution**: Implement tasks directly without delegating
|
|
298
|
-
2. **Plan Following**: Read and follow plans from `.
|
|
299
|
-
3. **Learning Recording**: Document learnings in `.
|
|
318
|
+
2. **Plan Following**: Read and follow plans from `.omc/plans/`
|
|
319
|
+
3. **Learning Recording**: Document learnings in `.omc/notepads/`
|
|
300
320
|
4. **Todo Discipline**: Mark todos in_progress before starting, completed when done
|
|
301
321
|
|
|
302
322
|
Restrictions:
|
|
@@ -311,10 +331,10 @@ Work Style:
|
|
|
311
331
|
4. Record any learnings or issues discovered
|
|
312
332
|
|
|
313
333
|
When Reading Plans:
|
|
314
|
-
- Plans are in `.
|
|
334
|
+
- Plans are in `.omc/plans/{plan-name}.md`
|
|
315
335
|
- Follow steps in order unless dependencies allow parallel work
|
|
316
336
|
- If a step is unclear, check the plan for clarification
|
|
317
|
-
- Record blockers in `.
|
|
337
|
+
- Record blockers in `.omc/notepads/{plan-name}/blockers.md`
|
|
318
338
|
|
|
319
339
|
Recording Learnings:
|
|
320
340
|
- What worked well?
|
|
@@ -344,7 +364,7 @@ Your responsibilities:
|
|
|
344
364
|
1. **Interview Mode**: Ask clarifying questions to understand requirements fully
|
|
345
365
|
2. **Plan Generation**: Create detailed, actionable work plans
|
|
346
366
|
3. **Metis Consultation**: Analyze requests for hidden requirements before planning
|
|
347
|
-
4. **Plan Storage**: Save plans to `.
|
|
367
|
+
4. **Plan Storage**: Save plans to `.omc/plans/{name}.md`
|
|
348
368
|
|
|
349
369
|
Workflow:
|
|
350
370
|
1. **Start in Interview Mode** - Ask questions, don't plan yet
|
|
@@ -352,7 +372,7 @@ Workflow:
|
|
|
352
372
|
3. **Pre-Planning** - Consult Metis for analysis before generating
|
|
353
373
|
4. **Optional Review** - Consult Momus for plan review if requested
|
|
354
374
|
5. **Single Plan** - Create ONE comprehensive plan (not multiple)
|
|
355
|
-
6. **Draft Storage** - Save drafts to `.
|
|
375
|
+
6. **Draft Storage** - Save drafts to `.omc/drafts/{name}.md` during iteration
|
|
356
376
|
|
|
357
377
|
Plan Structure:
|
|
358
378
|
```markdown
|
|
@@ -700,15 +720,15 @@ Delegate tasks to specialized agents using the Task tool:
|
|
|
700
720
|
- NEVER leave work incomplete
|
|
701
721
|
CMD_EOF
|
|
702
722
|
|
|
703
|
-
#
|
|
704
|
-
cat > "$CLAUDE_CONFIG_DIR/commands/
|
|
723
|
+
# omc-default mode command (project-scoped)
|
|
724
|
+
cat > "$CLAUDE_CONFIG_DIR/commands/omc-default.md" << 'CMD_EOF'
|
|
705
725
|
---
|
|
706
|
-
description: Configure
|
|
726
|
+
description: Configure oh-my-claudecode in local project (.claude/CLAUDE.md)
|
|
707
727
|
---
|
|
708
728
|
|
|
709
729
|
$ARGUMENTS
|
|
710
730
|
|
|
711
|
-
## Task: Configure
|
|
731
|
+
## Task: Configure oh-my-claudecode Default Mode (Project-Scoped)
|
|
712
732
|
|
|
713
733
|
**CRITICAL**: This skill ALWAYS downloads fresh CLAUDE.md from GitHub to your local project. DO NOT use the Write tool - use bash curl exclusively.
|
|
714
734
|
|
|
@@ -740,20 +760,20 @@ https://raw.githubusercontent.com/Yeachan-Heo/oh-my-claude-sisyphus/main/docs/CL
|
|
|
740
760
|
|
|
741
761
|
### Step 3: Verify Plugin Installation
|
|
742
762
|
|
|
743
|
-
The oh-my-
|
|
763
|
+
The oh-my-claudecode plugin provides all hooks automatically via the plugin system. Verify the plugin is enabled:
|
|
744
764
|
|
|
745
765
|
```bash
|
|
746
|
-
grep -q "oh-my-
|
|
766
|
+
grep -q "oh-my-claudecode" ~/.claude/settings.json && echo "Plugin enabled" || echo "Plugin NOT enabled"
|
|
747
767
|
```
|
|
748
768
|
|
|
749
769
|
If plugin is not enabled, instruct user:
|
|
750
|
-
> Run: `claude /install-plugin oh-my-
|
|
770
|
+
> Run: `claude /install-plugin oh-my-claudecode` to enable the plugin.
|
|
751
771
|
|
|
752
772
|
### Step 4: Confirm Success
|
|
753
773
|
|
|
754
774
|
After completing all steps, report:
|
|
755
775
|
|
|
756
|
-
✅ **
|
|
776
|
+
✅ **oh-my-claudecode Project Configuration Complete**
|
|
757
777
|
- CLAUDE.md: Updated with latest configuration from GitHub at ./.claude/CLAUDE.md
|
|
758
778
|
- Scope: **PROJECT** - applies only to this project
|
|
759
779
|
- Hooks: Provided by plugin (no manual installation needed)
|
|
@@ -766,27 +786,27 @@ After completing all steps, report:
|
|
|
766
786
|
|
|
767
787
|
## 🔄 Keeping Up to Date
|
|
768
788
|
|
|
769
|
-
After installing oh-my-
|
|
789
|
+
After installing oh-my-claudecode updates (via npm or plugin update), run `/omc-default` again in your project to get the latest CLAUDE.md configuration. This ensures you have the newest features and agent configurations.
|
|
770
790
|
|
|
771
791
|
---
|
|
772
792
|
|
|
773
793
|
## 🌍 Global vs Project Configuration
|
|
774
794
|
|
|
775
|
-
- **`/
|
|
776
|
-
- **`/
|
|
795
|
+
- **`/omc-default`** (this command): Creates `./.claude/CLAUDE.md` in your current project
|
|
796
|
+
- **`/omc-default-global`**: Creates `~/.claude/CLAUDE.md` for all projects
|
|
777
797
|
|
|
778
798
|
Project-scoped configuration takes precedence over global configuration.
|
|
779
799
|
CMD_EOF
|
|
780
800
|
|
|
781
|
-
#
|
|
782
|
-
cat > "$CLAUDE_CONFIG_DIR/commands/
|
|
801
|
+
# omc-default-global mode command (global)
|
|
802
|
+
cat > "$CLAUDE_CONFIG_DIR/commands/omc-default-global.md" << 'CMD_EOF'
|
|
783
803
|
---
|
|
784
|
-
description: Configure
|
|
804
|
+
description: Configure oh-my-claudecode globally in ~/.claude/CLAUDE.md
|
|
785
805
|
---
|
|
786
806
|
|
|
787
807
|
$ARGUMENTS
|
|
788
808
|
|
|
789
|
-
## Task: Configure
|
|
809
|
+
## Task: Configure oh-my-claudecode Default Mode (Global)
|
|
790
810
|
|
|
791
811
|
**CRITICAL**: This skill ALWAYS downloads fresh CLAUDE.md from GitHub to your global config. DO NOT use the Write tool - use bash curl exclusively.
|
|
792
812
|
|
|
@@ -826,20 +846,20 @@ Check `~/.claude/settings.json` for manual hook entries. If the "hooks" key exis
|
|
|
826
846
|
|
|
827
847
|
### Step 3: Verify Plugin Installation
|
|
828
848
|
|
|
829
|
-
The oh-my-
|
|
849
|
+
The oh-my-claudecode plugin provides all hooks automatically via the plugin system. Verify the plugin is enabled:
|
|
830
850
|
|
|
831
851
|
```bash
|
|
832
|
-
grep -q "oh-my-
|
|
852
|
+
grep -q "oh-my-claudecode" ~/.claude/settings.json && echo "Plugin enabled" || echo "Plugin NOT enabled"
|
|
833
853
|
```
|
|
834
854
|
|
|
835
855
|
If plugin is not enabled, instruct user:
|
|
836
|
-
> Run: `claude /install-plugin oh-my-
|
|
856
|
+
> Run: `claude /install-plugin oh-my-claudecode` to enable the plugin.
|
|
837
857
|
|
|
838
858
|
### Step 4: Confirm Success
|
|
839
859
|
|
|
840
860
|
After completing all steps, report:
|
|
841
861
|
|
|
842
|
-
✅ **
|
|
862
|
+
✅ **oh-my-claudecode Global Configuration Complete**
|
|
843
863
|
- CLAUDE.md: Updated with latest configuration from GitHub at ~/.claude/CLAUDE.md
|
|
844
864
|
- Scope: **GLOBAL** - applies to all Claude Code sessions
|
|
845
865
|
- Hooks: Provided by plugin (no manual installation needed)
|
|
@@ -852,7 +872,7 @@ After completing all steps, report:
|
|
|
852
872
|
|
|
853
873
|
## 🔄 Keeping Up to Date
|
|
854
874
|
|
|
855
|
-
After installing oh-my-
|
|
875
|
+
After installing oh-my-claudecode updates (via npm or plugin update), run `/omc-default-global` again to get the latest CLAUDE.md configuration. This ensures you have the newest features and agent configurations.
|
|
856
876
|
CMD_EOF
|
|
857
877
|
|
|
858
878
|
# Plan command (Prometheus planning system)
|
|
@@ -886,8 +906,8 @@ Say one of these when you're ready to generate the plan:
|
|
|
886
906
|
- "I'm ready to plan"
|
|
887
907
|
|
|
888
908
|
### Plan Storage
|
|
889
|
-
- Drafts are saved to `.
|
|
890
|
-
- Final plans are saved to `.
|
|
909
|
+
- Drafts are saved to `.omc/drafts/`
|
|
910
|
+
- Final plans are saved to `.omc/plans/`
|
|
891
911
|
|
|
892
912
|
---
|
|
893
913
|
|
|
@@ -921,7 +941,7 @@ I will critically evaluate the specified plan using Momus, the ruthless plan rev
|
|
|
921
941
|
|
|
922
942
|
### Usage
|
|
923
943
|
```
|
|
924
|
-
/review .
|
|
944
|
+
/review .omc/plans/my-feature.md
|
|
925
945
|
/review # Review the most recent plan
|
|
926
946
|
```
|
|
927
947
|
|
|
@@ -935,7 +955,7 @@ I will critically evaluate the specified plan using Momus, the ruthless plan rev
|
|
|
935
955
|
|
|
936
956
|
---
|
|
937
957
|
|
|
938
|
-
Provide a plan file path to review, or I'll review the most recent plan in `.
|
|
958
|
+
Provide a plan file path to review, or I'll review the most recent plan in `.omc/plans/`.
|
|
939
959
|
CMD_EOF
|
|
940
960
|
|
|
941
961
|
# Prometheus Command
|
|
@@ -968,7 +988,7 @@ Say any of these when you're ready to generate the plan:
|
|
|
968
988
|
|
|
969
989
|
### Plan Storage
|
|
970
990
|
|
|
971
|
-
Plans are saved to `.
|
|
991
|
+
Plans are saved to `.omc/plans/` for later execution with `/sisyphus`.
|
|
972
992
|
|
|
973
993
|
### What Makes a Good Plan
|
|
974
994
|
|
|
@@ -1039,12 +1059,12 @@ echo -e "${BLUE}[5/6]${NC} Installing hook scripts..."
|
|
|
1039
1059
|
mkdir -p "$CLAUDE_CONFIG_DIR/hooks"
|
|
1040
1060
|
|
|
1041
1061
|
# Ask user about silent auto-update preference (opt-in for security)
|
|
1042
|
-
CONFIG_FILE="$CLAUDE_CONFIG_DIR/.
|
|
1062
|
+
CONFIG_FILE="$CLAUDE_CONFIG_DIR/.omc-config.json"
|
|
1043
1063
|
ENABLE_SILENT_UPDATE="false"
|
|
1044
1064
|
|
|
1045
1065
|
echo ""
|
|
1046
1066
|
echo -e "${YELLOW}Silent Auto-Update Configuration${NC}"
|
|
1047
|
-
echo "
|
|
1067
|
+
echo " oh-my-claudecode can automatically check for and install updates in the background."
|
|
1048
1068
|
echo " This runs without user interaction when you start Claude Code."
|
|
1049
1069
|
echo ""
|
|
1050
1070
|
echo -e "${YELLOW}Security Note:${NC} Silent updates download and execute code from GitHub."
|
|
@@ -1081,7 +1101,7 @@ echo ""
|
|
|
1081
1101
|
# Keyword detector hook - detects ultrawork/ultrathink/search/analyze keywords
|
|
1082
1102
|
cat > "$CLAUDE_CONFIG_DIR/hooks/keyword-detector.sh" << 'HOOK_EOF'
|
|
1083
1103
|
#!/bin/bash
|
|
1084
|
-
#
|
|
1104
|
+
# oh-my-claudecode Keyword Detector Hook
|
|
1085
1105
|
# Detects ultrawork/ultrathink/search/analyze keywords and injects enhanced mode messages
|
|
1086
1106
|
# Ported from oh-my-opencode's keyword-detector hook
|
|
1087
1107
|
|
|
@@ -1159,7 +1179,7 @@ chmod +x "$CLAUDE_CONFIG_DIR/hooks/keyword-detector.sh"
|
|
|
1159
1179
|
# Stop continuation hook - enforces todo completion
|
|
1160
1180
|
cat > "$CLAUDE_CONFIG_DIR/hooks/stop-continuation.sh" << 'HOOK_EOF'
|
|
1161
1181
|
#!/bin/bash
|
|
1162
|
-
#
|
|
1182
|
+
# oh-my-claudecode Stop Continuation Hook
|
|
1163
1183
|
# Checks for incomplete todos and injects continuation prompt
|
|
1164
1184
|
# Ported from oh-my-opencode's todo-continuation-enforcer
|
|
1165
1185
|
|
|
@@ -1196,11 +1216,11 @@ chmod +x "$CLAUDE_CONFIG_DIR/hooks/stop-continuation.sh"
|
|
|
1196
1216
|
# Silent auto-update hook - checks and applies updates only if enabled
|
|
1197
1217
|
cat > "$CLAUDE_CONFIG_DIR/hooks/silent-auto-update.sh" << 'HOOK_EOF'
|
|
1198
1218
|
#!/bin/bash
|
|
1199
|
-
#
|
|
1219
|
+
# oh-my-claudecode Silent Auto-Update Hook
|
|
1200
1220
|
# Runs completely in the background to check for and apply updates.
|
|
1201
1221
|
#
|
|
1202
1222
|
# SECURITY: This hook only runs if the user has explicitly enabled
|
|
1203
|
-
# silent auto-updates in ~/.claude/.
|
|
1223
|
+
# silent auto-updates in ~/.claude/.omc-config.json
|
|
1204
1224
|
#
|
|
1205
1225
|
# This hook is designed to be called on UserPromptSubmit events
|
|
1206
1226
|
# but runs asynchronously so it doesn't block the user experience.
|
|
@@ -1212,10 +1232,10 @@ INPUT=$(cat)
|
|
|
1212
1232
|
# The actual update check happens in the background
|
|
1213
1233
|
(
|
|
1214
1234
|
# Configuration
|
|
1215
|
-
CONFIG_FILE="$HOME/.claude/.
|
|
1216
|
-
VERSION_FILE="$HOME/.claude/.
|
|
1217
|
-
STATE_FILE="$HOME/.claude/.
|
|
1218
|
-
LOG_FILE="$HOME/.claude/.
|
|
1235
|
+
CONFIG_FILE="$HOME/.claude/.omc-config.json"
|
|
1236
|
+
VERSION_FILE="$HOME/.claude/.omc-version.json"
|
|
1237
|
+
STATE_FILE="$HOME/.claude/.omc-silent-update.json"
|
|
1238
|
+
LOG_FILE="$HOME/.claude/.omc-update.log"
|
|
1219
1239
|
CHECK_INTERVAL_HOURS=24
|
|
1220
1240
|
REPO_URL="https://raw.githubusercontent.com/Yeachan-Heo/oh-my-claude-sisyphus/main"
|
|
1221
1241
|
|
|
@@ -1375,7 +1395,7 @@ EOF
|
|
|
1375
1395
|
}
|
|
1376
1396
|
|
|
1377
1397
|
# Lock file management for concurrent install protection
|
|
1378
|
-
LOCK_FILE="$HOME/.claude/.
|
|
1398
|
+
LOCK_FILE="$HOME/.claude/.omc-update.lock"
|
|
1379
1399
|
LOCK_TIMEOUT=300 # 5 minutes - stale lock threshold
|
|
1380
1400
|
|
|
1381
1401
|
acquire_lock() {
|
|
@@ -1688,42 +1708,40 @@ Use the Task tool to delegate to specialized agents:
|
|
|
1688
1708
|
|
|
1689
1709
|
| Agent | Model | Purpose | When to Use |
|
|
1690
1710
|
|-------|-------|---------|-------------|
|
|
1691
|
-
| `
|
|
1692
|
-
| `
|
|
1711
|
+
| `architect` | Opus | Architecture & debugging | Complex problems, root cause analysis |
|
|
1712
|
+
| `researcher` | Sonnet | Documentation & research | Finding docs, understanding code |
|
|
1693
1713
|
| `explore` | Haiku | Fast search | Quick file/pattern searches |
|
|
1694
|
-
| `
|
|
1695
|
-
| `
|
|
1696
|
-
| `
|
|
1697
|
-
| `
|
|
1698
|
-
| `
|
|
1699
|
-
| `
|
|
1700
|
-
| `
|
|
1714
|
+
| `designer` | Sonnet | UI/UX | Component design, styling |
|
|
1715
|
+
| `writer` | Haiku | Documentation | README, API docs, comments |
|
|
1716
|
+
| `vision` | Sonnet | Visual analysis | Screenshots, diagrams |
|
|
1717
|
+
| `critic` | Opus | Plan review | Critical evaluation of plans |
|
|
1718
|
+
| `analyst` | Opus | Pre-planning | Hidden requirements, risk analysis |
|
|
1719
|
+
| `executor` | Sonnet | Focused execution | Direct task implementation |
|
|
1720
|
+
| `planner` | Opus | Strategic planning | Creating comprehensive work plans |
|
|
1701
1721
|
|
|
1702
1722
|
## Slash Commands
|
|
1703
1723
|
|
|
1704
1724
|
| Command | Description |
|
|
1705
1725
|
|---------|-------------|
|
|
1706
|
-
| `/
|
|
1707
|
-
| `/
|
|
1708
|
-
| `/
|
|
1726
|
+
| `/orchestrate <task>` | Activate OMC multi-agent orchestration |
|
|
1727
|
+
| `/omc-default` | Configure OMC for current project (./.claude/CLAUDE.md) |
|
|
1728
|
+
| `/omc-default-global` | Configure OMC globally (~/.claude/CLAUDE.md) |
|
|
1709
1729
|
| `/ultrawork <task>` | Maximum performance mode with parallel agents |
|
|
1710
1730
|
| `/deepsearch <query>` | Thorough codebase search |
|
|
1711
1731
|
| `/analyze <target>` | Deep analysis and investigation |
|
|
1712
|
-
| `/plan <description>` | Start planning session with
|
|
1713
|
-
| `/review [plan-path]` | Review a plan with
|
|
1714
|
-
| `/
|
|
1715
|
-
| `/
|
|
1716
|
-
| `/ralph-loop <task>` | Self-referential loop until task completion |
|
|
1732
|
+
| `/plan <description>` | Start planning session with Planner |
|
|
1733
|
+
| `/review [plan-path]` | Review a plan with Critic |
|
|
1734
|
+
| `/planner <task>` | Strategic planning with interview workflow |
|
|
1735
|
+
| `/ralph <task>` | Self-referential loop until task completion |
|
|
1717
1736
|
| `/cancel-ralph` | Cancel active Ralph Loop |
|
|
1718
|
-
| `/update` | Check for and install updates |
|
|
1719
1737
|
|
|
1720
1738
|
## Planning Workflow
|
|
1721
1739
|
|
|
1722
1740
|
1. Use `/plan` to start a planning session
|
|
1723
|
-
2.
|
|
1741
|
+
2. Planner will interview you about requirements
|
|
1724
1742
|
3. Say "Create the plan" when ready
|
|
1725
|
-
4. Use `/review` to have
|
|
1726
|
-
5. Execute the plan with `/
|
|
1743
|
+
4. Use `/review` to have Critic evaluate the plan
|
|
1744
|
+
5. Execute the plan with `/orchestrate`
|
|
1727
1745
|
|
|
1728
1746
|
## Orchestration Principles
|
|
1729
1747
|
|
|
@@ -1731,7 +1749,7 @@ Use the Task tool to delegate to specialized agents:
|
|
|
1731
1749
|
2. **Parallelize**: Launch multiple subagents concurrently when tasks are independent
|
|
1732
1750
|
3. **Persist**: Continue until ALL tasks are complete
|
|
1733
1751
|
4. **Verify**: Check your todo list before declaring completion
|
|
1734
|
-
5. **Plan First**: For complex tasks, use
|
|
1752
|
+
5. **Plan First**: For complex tasks, use Planner to create a plan
|
|
1735
1753
|
|
|
1736
1754
|
## Critical Rules
|
|
1737
1755
|
|
|
@@ -1791,7 +1809,7 @@ fi
|
|
|
1791
1809
|
|
|
1792
1810
|
# Save version metadata for auto-update system
|
|
1793
1811
|
VERSION="2.0.6"
|
|
1794
|
-
VERSION_FILE="$CLAUDE_CONFIG_DIR/.
|
|
1812
|
+
VERSION_FILE="$CLAUDE_CONFIG_DIR/.omc-version.json"
|
|
1795
1813
|
|
|
1796
1814
|
cat > "$VERSION_FILE" << VERSION_EOF
|
|
1797
1815
|
{
|
|
@@ -1805,7 +1823,7 @@ echo -e "${GREEN}✓ Saved version metadata${NC}"
|
|
|
1805
1823
|
|
|
1806
1824
|
echo ""
|
|
1807
1825
|
echo -e "${GREEN}╔═══════════════════════════════════════════════════════════╗${NC}"
|
|
1808
|
-
echo -e "${GREEN}║ Installation Complete!
|
|
1826
|
+
echo -e "${GREEN}║ oh-my-claudecode Installation Complete! ║${NC}"
|
|
1809
1827
|
echo -e "${GREEN}╚═══════════════════════════════════════════════════════════╝${NC}"
|
|
1810
1828
|
echo ""
|
|
1811
1829
|
echo -e "Installed to: ${BLUE}$CLAUDE_CONFIG_DIR${NC}"
|
|
@@ -1815,8 +1833,8 @@ echo " claude # Start Claude Code normally"
|
|
|
1815
1833
|
echo ""
|
|
1816
1834
|
echo -e "${YELLOW}Slash Commands:${NC}"
|
|
1817
1835
|
echo " /sisyphus <task> # Activate Sisyphus orchestration mode"
|
|
1818
|
-
echo " /
|
|
1819
|
-
echo " /
|
|
1836
|
+
echo " /omc-default # Configure for current project"
|
|
1837
|
+
echo " /omc-default-global # Configure globally"
|
|
1820
1838
|
echo " /ultrawork <task> # Maximum performance mode"
|
|
1821
1839
|
echo " /deepsearch <query> # Thorough codebase search"
|
|
1822
1840
|
echo " /analyze <target> # Deep analysis mode"
|
|
@@ -1853,12 +1871,12 @@ echo " # Or run this install script again:"
|
|
|
1853
1871
|
echo " curl -fsSL https://raw.githubusercontent.com/Yeachan-Heo/oh-my-claude-sisyphus/main/scripts/install.sh | bash"
|
|
1854
1872
|
echo ""
|
|
1855
1873
|
echo -e "${YELLOW}After Updates:${NC}"
|
|
1856
|
-
echo " Run '/
|
|
1874
|
+
echo " Run '/omc-default' (project) or '/omc-default-global' (global)"
|
|
1857
1875
|
echo " to download the latest CLAUDE.md configuration."
|
|
1858
1876
|
echo " This ensures you get the newest features and agent behaviors."
|
|
1859
1877
|
echo ""
|
|
1860
1878
|
echo -e "${BLUE}Quick Start:${NC}"
|
|
1861
1879
|
echo " 1. Run 'claude' to start Claude Code"
|
|
1862
|
-
echo " 2. Type '/
|
|
1880
|
+
echo " 2. Type '/omc-default' for project config or '/omc-default-global' for global"
|
|
1863
1881
|
echo " 3. Or use '/sisyphus <task>' for one-time activation"
|
|
1864
1882
|
echo ""
|
|
@@ -138,7 +138,7 @@ function activateUltraworkState(directory, prompt) {
|
|
|
138
138
|
};
|
|
139
139
|
|
|
140
140
|
// Write to local .sisyphus directory
|
|
141
|
-
const localDir = join(directory, '.
|
|
141
|
+
const localDir = join(directory, '.omc');
|
|
142
142
|
if (!existsSync(localDir)) {
|
|
143
143
|
try { mkdirSync(localDir, { recursive: true }); } catch {}
|
|
144
144
|
}
|