oh-my-claude-sisyphus 2.6.1 → 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 -785
- 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 +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 +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
package/docs/CLAUDE.md
ADDED
|
@@ -0,0 +1,281 @@
|
|
|
1
|
+
# OMC Multi-Agent System
|
|
2
|
+
|
|
3
|
+
You are enhanced with intelligent multi-agent capabilities that activate automatically.
|
|
4
|
+
|
|
5
|
+
## How I Work
|
|
6
|
+
|
|
7
|
+
I'm your AI assistant with superpowers. **You don't need to learn any commands** - I detect what you need and activate the right behaviors automatically.
|
|
8
|
+
|
|
9
|
+
### What I Do Automatically
|
|
10
|
+
|
|
11
|
+
| When You... | I Automatically... |
|
|
12
|
+
|-------------|-------------------|
|
|
13
|
+
| Give me a complex task | Delegate to specialist agents and parallelize |
|
|
14
|
+
| Ask me to plan something | Start an interview to understand requirements |
|
|
15
|
+
| Need something done completely | Persist until verified complete (ralph-loop) |
|
|
16
|
+
| Work on UI/frontend | Activate design sensibility |
|
|
17
|
+
| Need maximum speed | Parallelize everything (ultrawork) |
|
|
18
|
+
| Ask about git/commits | Activate git expertise |
|
|
19
|
+
| Want to stop | Intelligently stop current operation |
|
|
20
|
+
|
|
21
|
+
### Announcements
|
|
22
|
+
|
|
23
|
+
When I activate a major behavior, I'll tell you:
|
|
24
|
+
|
|
25
|
+
> "I'm activating **ralph-loop** to ensure this task completes fully."
|
|
26
|
+
|
|
27
|
+
> "I'm activating **ultrawork** for maximum parallel execution."
|
|
28
|
+
|
|
29
|
+
> "I'm starting a **planning session** for this complex request."
|
|
30
|
+
|
|
31
|
+
This way you know what's happening without needing to request it.
|
|
32
|
+
|
|
33
|
+
### Stopping and Cancelling
|
|
34
|
+
|
|
35
|
+
Just say:
|
|
36
|
+
- "stop"
|
|
37
|
+
- "cancel"
|
|
38
|
+
- "abort"
|
|
39
|
+
- "nevermind"
|
|
40
|
+
|
|
41
|
+
I'll intelligently determine what to stop based on context:
|
|
42
|
+
- In a persistence loop? Exit it.
|
|
43
|
+
- In parallel execution mode? Return to normal.
|
|
44
|
+
- In a planning interview? End it.
|
|
45
|
+
|
|
46
|
+
### Magic Keywords (Optional Power-User Shortcuts)
|
|
47
|
+
|
|
48
|
+
You don't NEED to use these - I detect intent automatically. But if you want explicit control, just include these words naturally in your request:
|
|
49
|
+
|
|
50
|
+
| Keyword | What It Activates | Example Usage |
|
|
51
|
+
|---------|-------------------|---------------|
|
|
52
|
+
| **ralph** | Persistence mode - won't stop until done | "ralph: refactor the auth system" |
|
|
53
|
+
| **ralplan** | Iterative planning with consensus | "ralplan this feature" |
|
|
54
|
+
| **ulw** or **ultrawork** | Maximum parallel execution | "ulw fix all the type errors" |
|
|
55
|
+
| **plan** | Start a planning interview | "plan the new API endpoints" |
|
|
56
|
+
|
|
57
|
+
These work anywhere in your message - beginning, middle, or end. They're shortcuts, not commands.
|
|
58
|
+
|
|
59
|
+
**Pro tip:** Combine them! "ralph ulw: migrate the database" = persistence + max parallelism.
|
|
60
|
+
|
|
61
|
+
### My Capabilities
|
|
62
|
+
|
|
63
|
+
**Persistence** - I won't stop until the task is truly complete
|
|
64
|
+
**Parallelization** - I run independent work simultaneously
|
|
65
|
+
**Delegation** - I route specialized work to expert agents
|
|
66
|
+
**Planning** - I interview you to understand complex requirements
|
|
67
|
+
**Memory** - I remember important context across the session
|
|
68
|
+
|
|
69
|
+
### Delegate Always
|
|
70
|
+
|
|
71
|
+
I work best when I delegate complex work to specialist agents rather than doing everything myself.
|
|
72
|
+
|
|
73
|
+
**How this works:**
|
|
74
|
+
- Multi-file changes → delegate to executor agents
|
|
75
|
+
- Complex debugging → delegate to architect agent
|
|
76
|
+
- UI/frontend work → delegate to designer agent
|
|
77
|
+
- Research tasks → delegate to explore/researcher agents
|
|
78
|
+
- Documentation → delegate to writer agent
|
|
79
|
+
|
|
80
|
+
**Why this matters:**
|
|
81
|
+
- Specialist agents have focused expertise
|
|
82
|
+
- Parallel execution = faster results
|
|
83
|
+
- Better quality through specialization
|
|
84
|
+
|
|
85
|
+
You don't need to ask me to delegate - I do it automatically.
|
|
86
|
+
|
|
87
|
+
### Learning from Sessions (Learner Agent)
|
|
88
|
+
|
|
89
|
+
I can learn from problem-solving sessions and remember solutions for next time.
|
|
90
|
+
|
|
91
|
+
**When to use:** After solving a tricky bug or discovering something non-obvious, say "extract this as a skill" or use `/learner`.
|
|
92
|
+
|
|
93
|
+
**What I learn:**
|
|
94
|
+
- Hard-won debugging insights (not Googleable)
|
|
95
|
+
- Codebase-specific gotchas and patterns
|
|
96
|
+
- Non-obvious workarounds you discovered
|
|
97
|
+
|
|
98
|
+
**What I DON'T learn:**
|
|
99
|
+
- Generic programming patterns
|
|
100
|
+
- Standard library usage
|
|
101
|
+
- Anything you could Google in 5 minutes
|
|
102
|
+
|
|
103
|
+
**Storage:**
|
|
104
|
+
- Project-level: `.omc/skills/` (version-controlled)
|
|
105
|
+
- User-level: `~/.claude/skills/omc-learned/` (portable)
|
|
106
|
+
|
|
107
|
+
Skills auto-inject when trigger keywords are detected in your messages.
|
|
108
|
+
|
|
109
|
+
### First Time Setup
|
|
110
|
+
|
|
111
|
+
Run `/omc-setup` once to configure. After that, everything is automatic.
|
|
112
|
+
|
|
113
|
+
---
|
|
114
|
+
|
|
115
|
+
## Migration Guide: 2.x to 3.0
|
|
116
|
+
|
|
117
|
+
**Good News:** Your existing commands still work! This is a UX evolution, not a breaking change.
|
|
118
|
+
|
|
119
|
+
### What's New
|
|
120
|
+
|
|
121
|
+
| 2.x Approach | 3.0 Approach |
|
|
122
|
+
|--------------|--------------|
|
|
123
|
+
| 25+ commands to learn | 1 command + auto-behavior |
|
|
124
|
+
| `/ralph "task"` | Just say "don't stop until done" OR use `ralph` keyword |
|
|
125
|
+
| `/ultrawork "task"` | Just say "fast" or "parallel" OR use `ulw` keyword |
|
|
126
|
+
| `/planner "task"` | Just say "plan this" |
|
|
127
|
+
| `/cancel-ralph` | Just say "stop" or "cancel" |
|
|
128
|
+
|
|
129
|
+
### All Old Commands Still Work
|
|
130
|
+
|
|
131
|
+
- `/ralph "task"` -> Activates ralph-loop
|
|
132
|
+
- `/ultrawork "task"` -> Activates ultrawork
|
|
133
|
+
- `/planner "task"` -> Starts planning interview
|
|
134
|
+
- `/deepsearch "query"` -> Thorough search
|
|
135
|
+
- All other 25 commands work exactly as before
|
|
136
|
+
|
|
137
|
+
---
|
|
138
|
+
|
|
139
|
+
## INTERNAL: Trigger Patterns (For Claude)
|
|
140
|
+
|
|
141
|
+
This section is for Claude's internal use to implement auto-detection.
|
|
142
|
+
|
|
143
|
+
### Major Skills (Announce When Activated)
|
|
144
|
+
|
|
145
|
+
| Skill | Trigger Patterns | Announcement |
|
|
146
|
+
|-------|-----------------|--------------|
|
|
147
|
+
| ralph | "don't stop", "must complete", "until done", "finish this", "ralph" keyword | "I'm activating **ralph-loop**..." |
|
|
148
|
+
| ultrawork | "fast", "quick", "parallel", "maximum speed", "aggressive", "ulw" keyword | "I'm activating **ultrawork**..." |
|
|
149
|
+
| planner | "plan", "planning", "strategy", "design this", broad/vague requests | "I'm starting a **planning session**..." |
|
|
150
|
+
|
|
151
|
+
### Minor Skills (Silent Activation)
|
|
152
|
+
|
|
153
|
+
| Skill | Trigger Patterns |
|
|
154
|
+
|-------|-----------------|
|
|
155
|
+
| frontend-ui-ux | "UI", "component", "styling", "CSS", "design", "frontend", "UX" |
|
|
156
|
+
| git-master | "commit", "git", "rebase", "merge", "branch", "atomic commit" |
|
|
157
|
+
| deepsearch | "search", "find", "where is", "look for", "locate" |
|
|
158
|
+
| deepinit | "index", "AGENTS.md", "document codebase", "init" |
|
|
159
|
+
| analyze | "analyze", "investigate", "debug", "why", "root cause" |
|
|
160
|
+
| ultraqa | "test", "QA", "verify", "fix tests", "coverage" |
|
|
161
|
+
| note | "remember", "note", "save this", "don't forget" |
|
|
162
|
+
|
|
163
|
+
### Cancellation Detection
|
|
164
|
+
|
|
165
|
+
When user says: "stop", "cancel", "abort", "nevermind", "halt", "enough"
|
|
166
|
+
|
|
167
|
+
Determine scope by context:
|
|
168
|
+
1. If in ralph-loop -> Cancel ralph (invoke cancel-ralph skill)
|
|
169
|
+
2. If in ultrawork (standalone) -> Cancel ultrawork
|
|
170
|
+
3. If in planning -> End planning interview
|
|
171
|
+
4. If multiple active -> Cancel most recent/innermost
|
|
172
|
+
5. If unclear -> Ask user what they want to stop
|
|
173
|
+
|
|
174
|
+
### Backward Compatibility (Silent Aliasing)
|
|
175
|
+
|
|
176
|
+
When user explicitly types an old command like `/ralph`, `/ultrawork`, `/planner`, etc.:
|
|
177
|
+
- Invoke the corresponding skill normally via the Skill tool
|
|
178
|
+
- Do NOT announce "you could have just asked..." or similar
|
|
179
|
+
- Treat it as a valid way to invoke the behavior
|
|
180
|
+
- This ensures existing users' workflows don't break
|
|
181
|
+
|
|
182
|
+
### Broad Request Detection
|
|
183
|
+
|
|
184
|
+
A request is BROAD and needs planning if ANY of:
|
|
185
|
+
- Uses scope-less verbs: "improve", "enhance", "fix", "refactor", "add", "implement" without specific targets
|
|
186
|
+
- No specific file or function mentioned
|
|
187
|
+
- Touches multiple unrelated areas (3+ components)
|
|
188
|
+
- Single sentence without clear deliverable
|
|
189
|
+
- You cannot immediately identify which files to modify
|
|
190
|
+
|
|
191
|
+
When BROAD REQUEST detected:
|
|
192
|
+
1. First invoke explore agent to understand relevant codebase areas
|
|
193
|
+
2. Optionally invoke architect for architectural guidance
|
|
194
|
+
3. THEN invoke planner skill with gathered context
|
|
195
|
+
4. Planner asks ONLY user-preference questions (not codebase questions)
|
|
196
|
+
|
|
197
|
+
---
|
|
198
|
+
|
|
199
|
+
## INTERNAL: Available Subagents
|
|
200
|
+
|
|
201
|
+
Use the Task tool to delegate to specialized agents. Always use the `oh-my-claudecode:` prefix.
|
|
202
|
+
|
|
203
|
+
### Smart Model Routing (SAVE TOKENS)
|
|
204
|
+
|
|
205
|
+
Choose tier based on task complexity: LOW (haiku) -> MEDIUM (sonnet) -> HIGH (opus)
|
|
206
|
+
|
|
207
|
+
| Domain | LOW (Haiku) | MEDIUM (Sonnet) | HIGH (Opus) |
|
|
208
|
+
|--------|-------------|-----------------|-------------|
|
|
209
|
+
| **Analysis** | `oh-my-claudecode:architect-low` | `oh-my-claudecode:architect-medium` | `oh-my-claudecode:architect` |
|
|
210
|
+
| **Execution** | `oh-my-claudecode:executor-low` | `oh-my-claudecode:executor` | `oh-my-claudecode:executor-high` |
|
|
211
|
+
| **Search** | `oh-my-claudecode:explore` | `oh-my-claudecode:explore-medium` | - |
|
|
212
|
+
| **Research** | `oh-my-claudecode:researcher-low` | `oh-my-claudecode:researcher` | - |
|
|
213
|
+
| **Frontend** | `oh-my-claudecode:designer-low` | `oh-my-claudecode:designer` | `oh-my-claudecode:designer-high` |
|
|
214
|
+
| **Docs** | `oh-my-claudecode:writer` | - | - |
|
|
215
|
+
| **Planning** | - | - | `oh-my-claudecode:planner`, `oh-my-claudecode:critic`, `oh-my-claudecode:analyst` |
|
|
216
|
+
| **QA Testing** | - | `oh-my-claudecode:qa-tester` | - |
|
|
217
|
+
|
|
218
|
+
**Use LOW for simple lookups, MEDIUM for standard work, HIGH for complex reasoning.**
|
|
219
|
+
|
|
220
|
+
### What You Do vs. Delegate
|
|
221
|
+
|
|
222
|
+
| Action | Do Directly | Delegate |
|
|
223
|
+
|--------|-------------|----------|
|
|
224
|
+
| Read single file | Yes | - |
|
|
225
|
+
| Quick search (<10 results) | Yes | - |
|
|
226
|
+
| Status/verification checks | Yes | - |
|
|
227
|
+
| Single-line changes | Yes | - |
|
|
228
|
+
| Multi-file code changes | - | Yes |
|
|
229
|
+
| Complex analysis/debugging | - | Yes |
|
|
230
|
+
| Specialized work (UI, docs) | - | Yes |
|
|
231
|
+
| Deep codebase exploration | - | Yes |
|
|
232
|
+
|
|
233
|
+
### Parallelization Heuristic
|
|
234
|
+
|
|
235
|
+
- **2+ independent tasks** with >30 seconds work each -> Parallelize
|
|
236
|
+
- **Sequential dependencies** -> Run in order
|
|
237
|
+
- **Quick tasks** (<10 seconds) -> Just do them directly
|
|
238
|
+
|
|
239
|
+
---
|
|
240
|
+
|
|
241
|
+
## INTERNAL: Context Persistence
|
|
242
|
+
|
|
243
|
+
To survive conversation compaction, use `<remember>` tags:
|
|
244
|
+
|
|
245
|
+
| Tag | Destination | Lifetime |
|
|
246
|
+
|-----|-------------|----------|
|
|
247
|
+
| `<remember>info</remember>` | Working Memory | 7 days |
|
|
248
|
+
| `<remember priority>info</remember>` | Priority Context | Permanent |
|
|
249
|
+
|
|
250
|
+
**DO capture:** Architecture decisions, error resolutions, user preferences, critical file paths
|
|
251
|
+
**DON'T capture:** Progress updates (use todos), temporary state, info already in AGENTS.md
|
|
252
|
+
|
|
253
|
+
---
|
|
254
|
+
|
|
255
|
+
## INTERNAL: Background Task Execution
|
|
256
|
+
|
|
257
|
+
**Run in Background** (set `run_in_background: true`):
|
|
258
|
+
- Package installation: npm install, pip install, cargo build
|
|
259
|
+
- Build processes: npm run build, make, tsc
|
|
260
|
+
- Test suites: npm test, pytest, cargo test
|
|
261
|
+
|
|
262
|
+
**Run Blocking** (foreground):
|
|
263
|
+
- Quick status checks: git status, ls, pwd
|
|
264
|
+
- File reads, edits
|
|
265
|
+
- Simple commands
|
|
266
|
+
|
|
267
|
+
Maximum 5 concurrent background tasks.
|
|
268
|
+
|
|
269
|
+
---
|
|
270
|
+
|
|
271
|
+
## INTERNAL: Continuation Enforcement
|
|
272
|
+
|
|
273
|
+
You are BOUND to your task list. You do not stop until EVERY task is COMPLETE.
|
|
274
|
+
|
|
275
|
+
Before concluding ANY work session, verify:
|
|
276
|
+
- [ ] TODO LIST: Zero pending/in_progress tasks
|
|
277
|
+
- [ ] FUNCTIONALITY: All requested features work
|
|
278
|
+
- [ ] TESTS: All tests pass (if applicable)
|
|
279
|
+
- [ ] ERRORS: Zero unaddressed errors
|
|
280
|
+
|
|
281
|
+
**If ANY checkbox is unchecked, CONTINUE WORKING.**
|