oh-my-claude-sisyphus 3.7.0 → 3.7.3
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 +24 -1
- package/commands/hud.md +37 -5
- package/commands/omc-setup.md +105 -0
- package/dist/__tests__/compatibility-security.test.d.ts +13 -0
- package/dist/__tests__/compatibility-security.test.d.ts.map +1 -0
- package/dist/__tests__/compatibility-security.test.js +403 -0
- package/dist/__tests__/compatibility-security.test.js.map +1 -0
- package/dist/__tests__/compatibility.test.d.ts +7 -0
- package/dist/__tests__/compatibility.test.d.ts.map +1 -0
- package/dist/__tests__/compatibility.test.js +484 -0
- package/dist/__tests__/compatibility.test.js.map +1 -0
- package/dist/__tests__/hud/analytics-display.test.js +141 -1
- package/dist/__tests__/hud/analytics-display.test.js.map +1 -1
- package/dist/__tests__/hud-windows.test.d.ts +2 -0
- package/dist/__tests__/hud-windows.test.d.ts.map +1 -0
- package/dist/__tests__/hud-windows.test.js +91 -0
- package/dist/__tests__/hud-windows.test.js.map +1 -0
- package/dist/cli/analytics.js +0 -0
- package/dist/cli/index.js +0 -0
- package/dist/compatibility/discovery.d.ts +58 -0
- package/dist/compatibility/discovery.d.ts.map +1 -0
- package/dist/compatibility/discovery.js +619 -0
- package/dist/compatibility/discovery.js.map +1 -0
- package/dist/compatibility/index.d.ts +51 -0
- package/dist/compatibility/index.d.ts.map +1 -0
- package/dist/compatibility/index.js +72 -0
- package/dist/compatibility/index.js.map +1 -0
- package/dist/compatibility/mcp-bridge.d.ts +138 -0
- package/dist/compatibility/mcp-bridge.d.ts.map +1 -0
- package/dist/compatibility/mcp-bridge.js +524 -0
- package/dist/compatibility/mcp-bridge.js.map +1 -0
- package/dist/compatibility/permission-adapter.d.ts +79 -0
- package/dist/compatibility/permission-adapter.d.ts.map +1 -0
- package/dist/compatibility/permission-adapter.js +369 -0
- package/dist/compatibility/permission-adapter.js.map +1 -0
- package/dist/compatibility/registry.d.ts +161 -0
- package/dist/compatibility/registry.d.ts.map +1 -0
- package/dist/compatibility/registry.js +389 -0
- package/dist/compatibility/registry.js.map +1 -0
- package/dist/compatibility/types.d.ts +249 -0
- package/dist/compatibility/types.d.ts.map +1 -0
- package/dist/compatibility/types.js +8 -0
- package/dist/compatibility/types.js.map +1 -0
- package/dist/features/rate-limit-wait/daemon.d.ts.map +1 -1
- package/dist/features/rate-limit-wait/daemon.js +44 -1
- package/dist/features/rate-limit-wait/daemon.js.map +1 -1
- package/dist/features/state-manager/index.d.ts.map +1 -1
- package/dist/features/state-manager/index.js +4 -1
- package/dist/features/state-manager/index.js.map +1 -1
- package/dist/hooks/permission-handler/__tests__/index.test.js +47 -0
- package/dist/hooks/permission-handler/__tests__/index.test.js.map +1 -1
- package/dist/hooks/permission-handler/index.d.ts +1 -1
- package/dist/hooks/permission-handler/index.d.ts.map +1 -1
- package/dist/hooks/permission-handler/index.js +11 -15
- package/dist/hooks/permission-handler/index.js.map +1 -1
- package/dist/hooks/plugin-patterns/index.d.ts +5 -0
- package/dist/hooks/plugin-patterns/index.d.ts.map +1 -1
- package/dist/hooks/plugin-patterns/index.js +26 -1
- package/dist/hooks/plugin-patterns/index.js.map +1 -1
- package/dist/hooks/session-end/index.d.ts +0 -8
- package/dist/hooks/session-end/index.d.ts.map +1 -1
- package/dist/hooks/session-end/index.js +5 -12
- package/dist/hooks/session-end/index.js.map +1 -1
- package/dist/hooks/subagent-tracker/index.d.ts.map +1 -1
- package/dist/hooks/subagent-tracker/index.js +32 -17
- package/dist/hooks/subagent-tracker/index.js.map +1 -1
- package/dist/hud/analytics-display.d.ts +17 -1
- package/dist/hud/analytics-display.d.ts.map +1 -1
- package/dist/hud/analytics-display.js +55 -12
- package/dist/hud/analytics-display.js.map +1 -1
- package/dist/hud/render.d.ts.map +1 -1
- package/dist/hud/render.js +49 -18
- package/dist/hud/render.js.map +1 -1
- package/dist/hud/types.d.ts +2 -0
- package/dist/hud/types.d.ts.map +1 -1
- package/dist/hud/types.js +14 -0
- package/dist/hud/types.js.map +1 -1
- package/dist/installer/index.d.ts.map +1 -1
- package/dist/installer/index.js +3 -2
- package/dist/installer/index.js.map +1 -1
- package/docs/COMPATIBILITY.md +1051 -0
- package/hooks/keyword-detector.sh +4 -4
- package/hooks/persistent-mode.sh +10 -10
- package/hooks/session-start.sh +4 -4
- package/package.json +3 -1
- package/scripts/keyword-detector.mjs +4 -4
- package/scripts/persistent-mode.mjs +6 -6
- package/scripts/persistent-mode.sh +10 -10
- package/scripts/session-start.mjs +4 -4
- package/skills/hud/SKILL.md +37 -5
- package/skills/omc-setup/SKILL.md +162 -4
- package/skills/writer-memory/SKILL.md +443 -0
- package/skills/writer-memory/lib/character-tracker.ts +338 -0
- package/skills/writer-memory/lib/memory-manager.ts +804 -0
- package/skills/writer-memory/lib/relationship-graph.ts +400 -0
- package/skills/writer-memory/lib/scene-organizer.ts +544 -0
- package/skills/writer-memory/lib/synopsis-builder.ts +339 -0
- package/skills/writer-memory/templates/synopsis-template.md +46 -0
- package/templates/hooks/keyword-detector.sh +4 -4
- package/templates/hooks/persistent-mode.sh +10 -10
- package/templates/hooks/session-start.sh +4 -4
- package/dist/__tests__/analytics/analytics-summary.test.d.ts +0 -2
- package/dist/__tests__/analytics/analytics-summary.test.d.ts.map +0 -1
- package/dist/__tests__/analytics/analytics-summary.test.js +0 -267
- package/dist/__tests__/analytics/analytics-summary.test.js.map +0 -1
- package/dist/__tests__/analytics/cost-estimator.test.d.ts +0 -2
- package/dist/__tests__/analytics/cost-estimator.test.d.ts.map +0 -1
- package/dist/__tests__/analytics/cost-estimator.test.js +0 -212
- package/dist/__tests__/analytics/cost-estimator.test.js.map +0 -1
- package/dist/__tests__/hooks/auto-slash-command/executor.test.d.ts +0 -7
- package/dist/__tests__/hooks/auto-slash-command/executor.test.d.ts.map +0 -1
- package/dist/__tests__/hooks/auto-slash-command/executor.test.js +0 -374
- package/dist/__tests__/hooks/auto-slash-command/executor.test.js.map +0 -1
- package/dist/__tests__/hud/auto-tracking.integration.test.d.ts +0 -2
- package/dist/__tests__/hud/auto-tracking.integration.test.d.ts.map +0 -1
- package/dist/__tests__/hud/auto-tracking.integration.test.js +0 -12
- package/dist/__tests__/hud/auto-tracking.integration.test.js.map +0 -1
- package/dist/__tests__/learned-skills/config.test.d.ts +0 -2
- package/dist/__tests__/learned-skills/config.test.d.ts.map +0 -1
- package/dist/__tests__/learned-skills/config.test.js +0 -37
- package/dist/__tests__/learned-skills/config.test.js.map +0 -1
- package/dist/__tests__/learned-skills/detector.test.d.ts +0 -2
- package/dist/__tests__/learned-skills/detector.test.d.ts.map +0 -1
- package/dist/__tests__/learned-skills/detector.test.js +0 -99
- package/dist/__tests__/learned-skills/detector.test.js.map +0 -1
- package/dist/__tests__/learned-skills/finder.test.d.ts +0 -2
- package/dist/__tests__/learned-skills/finder.test.d.ts.map +0 -1
- package/dist/__tests__/learned-skills/finder.test.js +0 -59
- package/dist/__tests__/learned-skills/finder.test.js.map +0 -1
- package/dist/__tests__/learned-skills/loader.test.d.ts +0 -2
- package/dist/__tests__/learned-skills/loader.test.d.ts.map +0 -1
- package/dist/__tests__/learned-skills/loader.test.js +0 -69
- package/dist/__tests__/learned-skills/loader.test.js.map +0 -1
- package/dist/__tests__/learned-skills/parser.test.d.ts +0 -2
- package/dist/__tests__/learned-skills/parser.test.d.ts.map +0 -1
- package/dist/__tests__/learned-skills/parser.test.js +0 -81
- package/dist/__tests__/learned-skills/parser.test.js.map +0 -1
- package/dist/__tests__/learned-skills/validator.test.d.ts +0 -2
- package/dist/__tests__/learned-skills/validator.test.d.ts.map +0 -1
- package/dist/__tests__/learned-skills/validator.test.js +0 -85
- package/dist/__tests__/learned-skills/validator.test.js.map +0 -1
- package/dist/agents/codex-agents.d.ts +0 -20
- package/dist/agents/codex-agents.d.ts.map +0 -1
- package/dist/agents/codex-agents.js +0 -36
- package/dist/agents/codex-agents.js.map +0 -1
- package/dist/agents/document-writer.d.ts +0 -11
- package/dist/agents/document-writer.d.ts.map +0 -1
- package/dist/agents/document-writer.js +0 -209
- package/dist/agents/document-writer.js.map +0 -1
- package/dist/agents/frontend-engineer.d.ts +0 -11
- package/dist/agents/frontend-engineer.d.ts.map +0 -1
- package/dist/agents/frontend-engineer.js +0 -115
- package/dist/agents/frontend-engineer.js.map +0 -1
- package/dist/agents/librarian.d.ts +0 -12
- package/dist/agents/librarian.d.ts.map +0 -1
- package/dist/agents/librarian.js +0 -103
- package/dist/agents/librarian.js.map +0 -1
- package/dist/agents/metis.d.ts +0 -12
- package/dist/agents/metis.d.ts.map +0 -1
- package/dist/agents/metis.js +0 -117
- package/dist/agents/metis.js.map +0 -1
- package/dist/agents/momus.d.ts +0 -12
- package/dist/agents/momus.d.ts.map +0 -1
- package/dist/agents/momus.js +0 -128
- package/dist/agents/momus.js.map +0 -1
- package/dist/agents/multimodal-looker.d.ts +0 -11
- package/dist/agents/multimodal-looker.d.ts.map +0 -1
- package/dist/agents/multimodal-looker.js +0 -70
- package/dist/agents/multimodal-looker.js.map +0 -1
- package/dist/agents/oracle.d.ts +0 -13
- package/dist/agents/oracle.d.ts.map +0 -1
- package/dist/agents/oracle.js +0 -191
- package/dist/agents/oracle.js.map +0 -1
- package/dist/agents/orchestrator-sisyphus.d.ts +0 -11
- package/dist/agents/orchestrator-sisyphus.d.ts.map +0 -1
- package/dist/agents/orchestrator-sisyphus.js +0 -115
- package/dist/agents/orchestrator-sisyphus.js.map +0 -1
- package/dist/agents/prometheus.d.ts +0 -12
- package/dist/agents/prometheus.d.ts.map +0 -1
- package/dist/agents/prometheus.js +0 -195
- package/dist/agents/prometheus.js.map +0 -1
- package/dist/agents/sisyphus-junior.d.ts +0 -12
- package/dist/agents/sisyphus-junior.d.ts.map +0 -1
- package/dist/agents/sisyphus-junior.js +0 -93
- package/dist/agents/sisyphus-junior.js.map +0 -1
- package/dist/cli/components/CostDashboard.d.ts +0 -15
- package/dist/cli/components/CostDashboard.d.ts.map +0 -1
- package/dist/cli/components/CostDashboard.js +0 -15
- package/dist/cli/components/CostDashboard.js.map +0 -1
- package/dist/cli/components/LiveStats.d.ts +0 -16
- package/dist/cli/components/LiveStats.d.ts.map +0 -1
- package/dist/cli/components/LiveStats.js +0 -16
- package/dist/cli/components/LiveStats.js.map +0 -1
- package/dist/cli/components/SessionBrowser.d.ts +0 -14
- package/dist/cli/components/SessionBrowser.d.ts.map +0 -1
- package/dist/cli/components/SessionBrowser.js +0 -14
- package/dist/cli/components/SessionBrowser.js.map +0 -1
- package/dist/cli/tui.d.ts +0 -21
- package/dist/cli/tui.d.ts.map +0 -1
- package/dist/cli/tui.js +0 -21
- package/dist/cli/tui.js.map +0 -1
- package/dist/hooks/autopilot/signals.d.ts +0 -20
- package/dist/hooks/autopilot/signals.d.ts.map +0 -1
- package/dist/hooks/autopilot/signals.js +0 -75
- package/dist/hooks/autopilot/signals.js.map +0 -1
- package/dist/hooks/autopilot/summary.d.ts +0 -27
- package/dist/hooks/autopilot/summary.d.ts.map +0 -1
- package/dist/hooks/autopilot/summary.js +0 -160
- package/dist/hooks/autopilot/summary.js.map +0 -1
- package/dist/hooks/autopilot/transition.d.ts +0 -39
- package/dist/hooks/autopilot/transition.d.ts.map +0 -1
- package/dist/hooks/autopilot/transition.js +0 -216
- package/dist/hooks/autopilot/transition.js.map +0 -1
- package/dist/hooks/context-window-limit-recovery/constants.d.ts +0 -28
- package/dist/hooks/context-window-limit-recovery/constants.d.ts.map +0 -1
- package/dist/hooks/context-window-limit-recovery/constants.js +0 -85
- package/dist/hooks/context-window-limit-recovery/constants.js.map +0 -1
- package/dist/hooks/context-window-limit-recovery/index.d.ts +0 -62
- package/dist/hooks/context-window-limit-recovery/index.d.ts.map +0 -1
- package/dist/hooks/context-window-limit-recovery/index.js +0 -201
- package/dist/hooks/context-window-limit-recovery/index.js.map +0 -1
- package/dist/hooks/context-window-limit-recovery/parser.d.ts +0 -31
- package/dist/hooks/context-window-limit-recovery/parser.d.ts.map +0 -1
- package/dist/hooks/context-window-limit-recovery/parser.js +0 -241
- package/dist/hooks/context-window-limit-recovery/parser.js.map +0 -1
- package/dist/hooks/context-window-limit-recovery/types.d.ts +0 -84
- package/dist/hooks/context-window-limit-recovery/types.d.ts.map +0 -1
- package/dist/hooks/context-window-limit-recovery/types.js +0 -34
- package/dist/hooks/context-window-limit-recovery/types.js.map +0 -1
- package/dist/hooks/edit-error-recovery/index.d.ts +0 -62
- package/dist/hooks/edit-error-recovery/index.d.ts.map +0 -1
- package/dist/hooks/edit-error-recovery/index.js +0 -89
- package/dist/hooks/edit-error-recovery/index.js.map +0 -1
- package/dist/hooks/learned-skills/config.d.ts +0 -53
- package/dist/hooks/learned-skills/config.d.ts.map +0 -1
- package/dist/hooks/learned-skills/config.js +0 -103
- package/dist/hooks/learned-skills/config.js.map +0 -1
- package/dist/hooks/learned-skills/constants.d.ts +0 -24
- package/dist/hooks/learned-skills/constants.d.ts.map +0 -1
- package/dist/hooks/learned-skills/constants.js +0 -26
- package/dist/hooks/learned-skills/constants.js.map +0 -1
- package/dist/hooks/learned-skills/detection-hook.d.ts +0 -39
- package/dist/hooks/learned-skills/detection-hook.d.ts.map +0 -1
- package/dist/hooks/learned-skills/detection-hook.js +0 -83
- package/dist/hooks/learned-skills/detection-hook.js.map +0 -1
- package/dist/hooks/learned-skills/detector.d.ts +0 -30
- package/dist/hooks/learned-skills/detector.d.ts.map +0 -1
- package/dist/hooks/learned-skills/detector.js +0 -150
- package/dist/hooks/learned-skills/detector.js.map +0 -1
- package/dist/hooks/learned-skills/finder.d.ts +0 -21
- package/dist/hooks/learned-skills/finder.d.ts.map +0 -1
- package/dist/hooks/learned-skills/finder.js +0 -117
- package/dist/hooks/learned-skills/finder.js.map +0 -1
- package/dist/hooks/learned-skills/index.d.ts +0 -62
- package/dist/hooks/learned-skills/index.d.ts.map +0 -1
- package/dist/hooks/learned-skills/index.js +0 -137
- package/dist/hooks/learned-skills/index.js.map +0 -1
- package/dist/hooks/learned-skills/loader.d.ts +0 -20
- package/dist/hooks/learned-skills/loader.d.ts.map +0 -1
- package/dist/hooks/learned-skills/loader.js +0 -107
- package/dist/hooks/learned-skills/loader.js.map +0 -1
- package/dist/hooks/learned-skills/parser.d.ts +0 -21
- package/dist/hooks/learned-skills/parser.d.ts.map +0 -1
- package/dist/hooks/learned-skills/parser.js +0 -190
- package/dist/hooks/learned-skills/parser.js.map +0 -1
- package/dist/hooks/learned-skills/promotion.d.ts +0 -29
- package/dist/hooks/learned-skills/promotion.d.ts.map +0 -1
- package/dist/hooks/learned-skills/promotion.js +0 -87
- package/dist/hooks/learned-skills/promotion.js.map +0 -1
- package/dist/hooks/learned-skills/types.d.ts +0 -109
- package/dist/hooks/learned-skills/types.d.ts.map +0 -1
- package/dist/hooks/learned-skills/types.js +0 -8
- package/dist/hooks/learned-skills/types.js.map +0 -1
- package/dist/hooks/learned-skills/validator.d.ts +0 -15
- package/dist/hooks/learned-skills/validator.d.ts.map +0 -1
- package/dist/hooks/learned-skills/validator.js +0 -87
- package/dist/hooks/learned-skills/validator.js.map +0 -1
- package/dist/hooks/learned-skills/writer.d.ts +0 -27
- package/dist/hooks/learned-skills/writer.d.ts.map +0 -1
- package/dist/hooks/learned-skills/writer.js +0 -126
- package/dist/hooks/learned-skills/writer.js.map +0 -1
- package/dist/hooks/mnemosyne/config.d.ts +0 -53
- package/dist/hooks/mnemosyne/config.d.ts.map +0 -1
- package/dist/hooks/mnemosyne/config.js +0 -103
- package/dist/hooks/mnemosyne/config.js.map +0 -1
- package/dist/hooks/mnemosyne/constants.d.ts +0 -24
- package/dist/hooks/mnemosyne/constants.d.ts.map +0 -1
- package/dist/hooks/mnemosyne/constants.js +0 -26
- package/dist/hooks/mnemosyne/constants.js.map +0 -1
- package/dist/hooks/mnemosyne/detection-hook.d.ts +0 -39
- package/dist/hooks/mnemosyne/detection-hook.d.ts.map +0 -1
- package/dist/hooks/mnemosyne/detection-hook.js +0 -83
- package/dist/hooks/mnemosyne/detection-hook.js.map +0 -1
- package/dist/hooks/mnemosyne/detector.d.ts +0 -30
- package/dist/hooks/mnemosyne/detector.d.ts.map +0 -1
- package/dist/hooks/mnemosyne/detector.js +0 -150
- package/dist/hooks/mnemosyne/detector.js.map +0 -1
- package/dist/hooks/mnemosyne/finder.d.ts +0 -21
- package/dist/hooks/mnemosyne/finder.d.ts.map +0 -1
- package/dist/hooks/mnemosyne/finder.js +0 -117
- package/dist/hooks/mnemosyne/finder.js.map +0 -1
- package/dist/hooks/mnemosyne/index.d.ts +0 -62
- package/dist/hooks/mnemosyne/index.d.ts.map +0 -1
- package/dist/hooks/mnemosyne/index.js +0 -137
- package/dist/hooks/mnemosyne/index.js.map +0 -1
- package/dist/hooks/mnemosyne/loader.d.ts +0 -20
- package/dist/hooks/mnemosyne/loader.d.ts.map +0 -1
- package/dist/hooks/mnemosyne/loader.js +0 -113
- package/dist/hooks/mnemosyne/loader.js.map +0 -1
- package/dist/hooks/mnemosyne/parser.d.ts +0 -21
- package/dist/hooks/mnemosyne/parser.d.ts.map +0 -1
- package/dist/hooks/mnemosyne/parser.js +0 -190
- package/dist/hooks/mnemosyne/parser.js.map +0 -1
- package/dist/hooks/mnemosyne/promotion.d.ts +0 -29
- package/dist/hooks/mnemosyne/promotion.d.ts.map +0 -1
- package/dist/hooks/mnemosyne/promotion.js +0 -87
- package/dist/hooks/mnemosyne/promotion.js.map +0 -1
- package/dist/hooks/mnemosyne/types.d.ts +0 -109
- package/dist/hooks/mnemosyne/types.d.ts.map +0 -1
- package/dist/hooks/mnemosyne/types.js +0 -8
- package/dist/hooks/mnemosyne/types.js.map +0 -1
- package/dist/hooks/mnemosyne/validator.d.ts +0 -15
- package/dist/hooks/mnemosyne/validator.d.ts.map +0 -1
- package/dist/hooks/mnemosyne/validator.js +0 -87
- package/dist/hooks/mnemosyne/validator.js.map +0 -1
- package/dist/hooks/mnemosyne/writer.d.ts +0 -27
- package/dist/hooks/mnemosyne/writer.d.ts.map +0 -1
- package/dist/hooks/mnemosyne/writer.js +0 -126
- package/dist/hooks/mnemosyne/writer.js.map +0 -1
- package/dist/hooks/ralph-loop/index.d.ts +0 -116
- package/dist/hooks/ralph-loop/index.d.ts.map +0 -1
- package/dist/hooks/ralph-loop/index.js +0 -322
- package/dist/hooks/ralph-loop/index.js.map +0 -1
- package/dist/hooks/ralph-prd/index.d.ts +0 -130
- package/dist/hooks/ralph-prd/index.d.ts.map +0 -1
- package/dist/hooks/ralph-prd/index.js +0 -310
- package/dist/hooks/ralph-prd/index.js.map +0 -1
- package/dist/hooks/ralph-progress/index.d.ts +0 -102
- package/dist/hooks/ralph-progress/index.d.ts.map +0 -1
- package/dist/hooks/ralph-progress/index.js +0 -408
- package/dist/hooks/ralph-progress/index.js.map +0 -1
- package/dist/hooks/ralph-verifier/index.d.ts +0 -72
- package/dist/hooks/ralph-verifier/index.d.ts.map +0 -1
- package/dist/hooks/ralph-verifier/index.js +0 -223
- package/dist/hooks/ralph-verifier/index.js.map +0 -1
- package/dist/hooks/session-recovery/constants.d.ts +0 -56
- package/dist/hooks/session-recovery/constants.d.ts.map +0 -1
- package/dist/hooks/session-recovery/constants.js +0 -78
- package/dist/hooks/session-recovery/constants.js.map +0 -1
- package/dist/hooks/session-recovery/index.d.ts +0 -53
- package/dist/hooks/session-recovery/index.d.ts.map +0 -1
- package/dist/hooks/session-recovery/index.js +0 -321
- package/dist/hooks/session-recovery/index.js.map +0 -1
- package/dist/hooks/session-recovery/storage.d.ts +0 -76
- package/dist/hooks/session-recovery/storage.d.ts.map +0 -1
- package/dist/hooks/session-recovery/storage.js +0 -383
- package/dist/hooks/session-recovery/storage.js.map +0 -1
- package/dist/hooks/session-recovery/types.d.ts +0 -145
- package/dist/hooks/session-recovery/types.d.ts.map +0 -1
- package/dist/hooks/session-recovery/types.js +0 -8
- package/dist/hooks/session-recovery/types.js.map +0 -1
- package/dist/hooks/sisyphus-orchestrator/constants.d.ts +0 -23
- package/dist/hooks/sisyphus-orchestrator/constants.d.ts.map +0 -1
- package/dist/hooks/sisyphus-orchestrator/constants.js +0 -142
- package/dist/hooks/sisyphus-orchestrator/constants.js.map +0 -1
- package/dist/hooks/sisyphus-orchestrator/index.d.ts +0 -113
- package/dist/hooks/sisyphus-orchestrator/index.d.ts.map +0 -1
- package/dist/hooks/sisyphus-orchestrator/index.js +0 -309
- package/dist/hooks/sisyphus-orchestrator/index.js.map +0 -1
- package/dist/hooks/ultraqa-loop/index.d.ts +0 -94
- package/dist/hooks/ultraqa-loop/index.d.ts.map +0 -1
- package/dist/hooks/ultraqa-loop/index.js +0 -216
- package/dist/hooks/ultraqa-loop/index.js.map +0 -1
- package/dist/hooks/ultrawork-state/index.d.ts +0 -62
- package/dist/hooks/ultrawork-state/index.d.ts.map +0 -1
- package/dist/hooks/ultrawork-state/index.js +0 -208
- package/dist/hooks/ultrawork-state/index.js.map +0 -1
- package/dist/hud/sisyphus-state.d.ts +0 -31
- package/dist/hud/sisyphus-state.d.ts.map +0 -1
- package/dist/hud/sisyphus-state.js +0 -163
- package/dist/hud/sisyphus-state.js.map +0 -1
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Frontend Engineer Agent
|
|
3
|
-
*
|
|
4
|
-
* Designer-turned-developer who crafts stunning UI/UX.
|
|
5
|
-
*
|
|
6
|
-
* Ported from oh-my-opencode's agent definitions.
|
|
7
|
-
*/
|
|
8
|
-
import type { AgentConfig, AgentPromptMetadata } from './types.js';
|
|
9
|
-
export declare const FRONTEND_ENGINEER_PROMPT_METADATA: AgentPromptMetadata;
|
|
10
|
-
export declare const frontendEngineerAgent: AgentConfig;
|
|
11
|
-
//# sourceMappingURL=frontend-engineer.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"frontend-engineer.d.ts","sourceRoot":"","sources":["../../src/agents/frontend-engineer.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AAEnE,eAAO,MAAM,iCAAiC,EAAE,mBA0B/C,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,WA+EnC,CAAC"}
|
|
@@ -1,115 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Frontend Engineer Agent
|
|
3
|
-
*
|
|
4
|
-
* Designer-turned-developer who crafts stunning UI/UX.
|
|
5
|
-
*
|
|
6
|
-
* Ported from oh-my-opencode's agent definitions.
|
|
7
|
-
*/
|
|
8
|
-
export const FRONTEND_ENGINEER_PROMPT_METADATA = {
|
|
9
|
-
category: 'specialist',
|
|
10
|
-
cost: 'CHEAP',
|
|
11
|
-
promptAlias: 'frontend-engineer',
|
|
12
|
-
triggers: [
|
|
13
|
-
{
|
|
14
|
-
domain: 'UI/UX',
|
|
15
|
-
trigger: 'Visual changes, styling, components, accessibility',
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
domain: 'Design',
|
|
19
|
-
trigger: 'Layout, animations, responsive design',
|
|
20
|
-
},
|
|
21
|
-
],
|
|
22
|
-
useWhen: [
|
|
23
|
-
'Visual styling or layout changes',
|
|
24
|
-
'Component design or refactoring',
|
|
25
|
-
'Animation implementation',
|
|
26
|
-
'Accessibility improvements',
|
|
27
|
-
'Responsive design work',
|
|
28
|
-
],
|
|
29
|
-
avoidWhen: [
|
|
30
|
-
'Pure logic changes in frontend files',
|
|
31
|
-
'Backend/API work',
|
|
32
|
-
'Non-visual refactoring',
|
|
33
|
-
],
|
|
34
|
-
};
|
|
35
|
-
export const frontendEngineerAgent = {
|
|
36
|
-
name: 'frontend-engineer',
|
|
37
|
-
description: `Designer-turned-developer who crafts stunning UI/UX even without design mockups. Use for VISUAL changes only (styling, layout, animation). Pure logic changes in frontend files should be handled directly.`,
|
|
38
|
-
prompt: `# Role: Designer-Turned-Developer
|
|
39
|
-
|
|
40
|
-
You are a designer who learned to code. You see what pure developers miss—spacing, color harmony, micro-interactions, that indefinable "feel" that makes interfaces memorable. Even without mockups, you envision and create beautiful, cohesive interfaces.
|
|
41
|
-
|
|
42
|
-
**Mission**: Create visually stunning, emotionally engaging interfaces users fall in love with. Obsess over pixel-perfect details, smooth animations, and intuitive interactions while maintaining code quality.
|
|
43
|
-
|
|
44
|
-
---
|
|
45
|
-
|
|
46
|
-
# Work Principles
|
|
47
|
-
|
|
48
|
-
1. **Complete what's asked** — Execute the exact task. No scope creep. Work until it works. Never mark work complete without proper verification.
|
|
49
|
-
2. **Leave it better** — Ensure that the project is in a working state after your changes.
|
|
50
|
-
3. **Study before acting** — Examine existing patterns, conventions, and commit history (git log) before implementing. Understand why code is structured the way it is.
|
|
51
|
-
4. **Blend seamlessly** — Match existing code patterns. Your code should look like the team wrote it.
|
|
52
|
-
5. **Be transparent** — Announce each step. Explain reasoning. Report both successes and failures.
|
|
53
|
-
|
|
54
|
-
---
|
|
55
|
-
|
|
56
|
-
# Design Process
|
|
57
|
-
|
|
58
|
-
Before coding, commit to a **BOLD aesthetic direction**:
|
|
59
|
-
|
|
60
|
-
1. **Purpose**: What problem does this solve? Who uses it?
|
|
61
|
-
2. **Tone**: Pick an extreme—brutally minimal, maximalist chaos, retro-futuristic, organic/natural, luxury/refined, playful/toy-like, editorial/magazine, brutalist/raw, art deco/geometric, soft/pastel, industrial/utilitarian
|
|
62
|
-
3. **Constraints**: Technical requirements (framework, performance, accessibility)
|
|
63
|
-
4. **Differentiation**: What's the ONE thing someone will remember?
|
|
64
|
-
|
|
65
|
-
**Key**: Choose a clear direction and execute with precision. Intentionality > intensity.
|
|
66
|
-
|
|
67
|
-
Then implement working code (HTML/CSS/JS, React, Vue, Angular, etc.) that is:
|
|
68
|
-
- Production-grade and functional
|
|
69
|
-
- Visually striking and memorable
|
|
70
|
-
- Cohesive with a clear aesthetic point-of-view
|
|
71
|
-
- Meticulously refined in every detail
|
|
72
|
-
|
|
73
|
-
---
|
|
74
|
-
|
|
75
|
-
# Aesthetic Guidelines
|
|
76
|
-
|
|
77
|
-
## Typography
|
|
78
|
-
Choose distinctive fonts. **Avoid**: Arial, Inter, Roboto, system fonts, Space Grotesk. Pair a characterful display font with a refined body font.
|
|
79
|
-
|
|
80
|
-
## Color
|
|
81
|
-
Commit to a cohesive palette. Use CSS variables. Dominant colors with sharp accents outperform timid, evenly-distributed palettes. **Avoid**: purple gradients on white (AI slop).
|
|
82
|
-
|
|
83
|
-
## Motion
|
|
84
|
-
Focus on high-impact moments. One well-orchestrated page load with staggered reveals (animation-delay) > scattered micro-interactions. Use scroll-triggering and hover states that surprise. Prioritize CSS-only. Use Motion library for React when available.
|
|
85
|
-
|
|
86
|
-
## Spatial Composition
|
|
87
|
-
Unexpected layouts. Asymmetry. Overlap. Diagonal flow. Grid-breaking elements. Generous negative space OR controlled density.
|
|
88
|
-
|
|
89
|
-
## Visual Details
|
|
90
|
-
Create atmosphere and depth—gradient meshes, noise textures, geometric patterns, layered transparencies, dramatic shadows, decorative borders, custom cursors, grain overlays. Never default to solid colors.
|
|
91
|
-
|
|
92
|
-
---
|
|
93
|
-
|
|
94
|
-
# Anti-Patterns (NEVER)
|
|
95
|
-
|
|
96
|
-
- Generic fonts (Inter, Roboto, Arial, system fonts, Space Grotesk)
|
|
97
|
-
- Cliched color schemes (purple gradients on white)
|
|
98
|
-
- Predictable layouts and component patterns
|
|
99
|
-
- Cookie-cutter design lacking context-specific character
|
|
100
|
-
- Converging on common choices across generations
|
|
101
|
-
|
|
102
|
-
---
|
|
103
|
-
|
|
104
|
-
# Execution
|
|
105
|
-
|
|
106
|
-
Match implementation complexity to aesthetic vision:
|
|
107
|
-
- **Maximalist** → Elaborate code with extensive animations and effects
|
|
108
|
-
- **Minimalist** → Restraint, precision, careful spacing and typography
|
|
109
|
-
|
|
110
|
-
Interpret creatively and make unexpected choices that feel genuinely designed for the context. No design should be the same. Vary between light and dark themes, different fonts, different aesthetics. You are capable of extraordinary creative work—don't hold back.`,
|
|
111
|
-
tools: ['Read', 'Edit', 'Write', 'Glob', 'Grep', 'Bash'],
|
|
112
|
-
model: 'sonnet',
|
|
113
|
-
metadata: FRONTEND_ENGINEER_PROMPT_METADATA,
|
|
114
|
-
};
|
|
115
|
-
//# sourceMappingURL=frontend-engineer.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"frontend-engineer.js","sourceRoot":"","sources":["../../src/agents/frontend-engineer.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAIH,MAAM,CAAC,MAAM,iCAAiC,GAAwB;IACpE,QAAQ,EAAE,YAAY;IACtB,IAAI,EAAE,OAAO;IACb,WAAW,EAAE,mBAAmB;IAChC,QAAQ,EAAE;QACR;YACE,MAAM,EAAE,OAAO;YACf,OAAO,EAAE,oDAAoD;SAC9D;QACD;YACE,MAAM,EAAE,QAAQ;YAChB,OAAO,EAAE,uCAAuC;SACjD;KACF;IACD,OAAO,EAAE;QACP,kCAAkC;QAClC,iCAAiC;QACjC,0BAA0B;QAC1B,4BAA4B;QAC5B,wBAAwB;KACzB;IACD,SAAS,EAAE;QACT,sCAAsC;QACtC,kBAAkB;QAClB,wBAAwB;KACzB;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,qBAAqB,GAAgB;IAChD,IAAI,EAAE,mBAAmB;IACzB,WAAW,EAAE,6MAA6M;IAC1N,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wQAwE8P;IACtQ,KAAK,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC;IACxD,KAAK,EAAE,QAAQ;IACf,QAAQ,EAAE,iCAAiC;CAC5C,CAAC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Librarian Agent - Documentation and External Reference Finder
|
|
3
|
-
*
|
|
4
|
-
* Searches external resources: official docs, GitHub, Stack Overflow.
|
|
5
|
-
* For internal codebase searches, use explore agent instead.
|
|
6
|
-
*
|
|
7
|
-
* Ported from oh-my-opencode's librarian agent.
|
|
8
|
-
*/
|
|
9
|
-
import type { AgentConfig, AgentPromptMetadata } from './types.js';
|
|
10
|
-
export declare const LIBRARIAN_PROMPT_METADATA: AgentPromptMetadata;
|
|
11
|
-
export declare const librarianAgent: AgentConfig;
|
|
12
|
-
//# sourceMappingURL=librarian.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"librarian.d.ts","sourceRoot":"","sources":["../../src/agents/librarian.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AAEnE,eAAO,MAAM,yBAAyB,EAAE,mBAqBvC,CAAC;AAmEF,eAAO,MAAM,cAAc,EAAE,WAO5B,CAAC"}
|
package/dist/agents/librarian.js
DELETED
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Librarian Agent - Documentation and External Reference Finder
|
|
3
|
-
*
|
|
4
|
-
* Searches external resources: official docs, GitHub, Stack Overflow.
|
|
5
|
-
* For internal codebase searches, use explore agent instead.
|
|
6
|
-
*
|
|
7
|
-
* Ported from oh-my-opencode's librarian agent.
|
|
8
|
-
*/
|
|
9
|
-
export const LIBRARIAN_PROMPT_METADATA = {
|
|
10
|
-
category: 'exploration',
|
|
11
|
-
cost: 'CHEAP',
|
|
12
|
-
promptAlias: 'Librarian',
|
|
13
|
-
triggers: [
|
|
14
|
-
{ domain: 'External documentation', trigger: 'API references, official docs' },
|
|
15
|
-
{ domain: 'OSS implementations', trigger: 'GitHub examples, package source' },
|
|
16
|
-
{ domain: 'Best practices', trigger: 'Community patterns, recommendations' },
|
|
17
|
-
],
|
|
18
|
-
useWhen: [
|
|
19
|
-
'Looking up official documentation',
|
|
20
|
-
'Finding GitHub examples',
|
|
21
|
-
'Researching npm/pip packages',
|
|
22
|
-
'Stack Overflow solutions',
|
|
23
|
-
'External API references',
|
|
24
|
-
],
|
|
25
|
-
avoidWhen: [
|
|
26
|
-
'Internal codebase search (use explore)',
|
|
27
|
-
'Current project files (use explore)',
|
|
28
|
-
'When you already have the information',
|
|
29
|
-
],
|
|
30
|
-
};
|
|
31
|
-
const LIBRARIAN_PROMPT = `<Role>
|
|
32
|
-
Librarian - External Documentation & Reference Researcher
|
|
33
|
-
|
|
34
|
-
You search EXTERNAL resources: official docs, GitHub repos, OSS implementations, Stack Overflow.
|
|
35
|
-
For INTERNAL codebase searches, use explore agent instead.
|
|
36
|
-
</Role>
|
|
37
|
-
|
|
38
|
-
<Search_Domains>
|
|
39
|
-
## What You Search (EXTERNAL)
|
|
40
|
-
| Source | Use For |
|
|
41
|
-
|--------|---------|
|
|
42
|
-
| Official Docs | API references, best practices, configuration |
|
|
43
|
-
| GitHub | OSS implementations, code examples, issues |
|
|
44
|
-
| Package Repos | npm, PyPI, crates.io package details |
|
|
45
|
-
| Stack Overflow | Common problems and solutions |
|
|
46
|
-
| Technical Blogs | Deep dives, tutorials |
|
|
47
|
-
|
|
48
|
-
## What You DON'T Search (Use explore instead)
|
|
49
|
-
- Current project's source code
|
|
50
|
-
- Local file contents
|
|
51
|
-
- Internal implementations
|
|
52
|
-
</Search_Domains>
|
|
53
|
-
|
|
54
|
-
<Workflow>
|
|
55
|
-
## Research Process
|
|
56
|
-
|
|
57
|
-
1. **Clarify Query**: What exactly is being asked?
|
|
58
|
-
2. **Identify Sources**: Which external resources are relevant?
|
|
59
|
-
3. **Search Strategy**: Formulate effective search queries
|
|
60
|
-
4. **Gather Results**: Collect relevant information
|
|
61
|
-
5. **Synthesize**: Combine findings into actionable response
|
|
62
|
-
6. **Cite Sources**: Always link to original sources
|
|
63
|
-
|
|
64
|
-
## Output Format
|
|
65
|
-
|
|
66
|
-
\`\`\`
|
|
67
|
-
## Query: [What was asked]
|
|
68
|
-
|
|
69
|
-
## Findings
|
|
70
|
-
|
|
71
|
-
### [Source 1: e.g., "Official React Docs"]
|
|
72
|
-
[Key information]
|
|
73
|
-
**Link**: [URL]
|
|
74
|
-
|
|
75
|
-
### [Source 2: e.g., "GitHub Example"]
|
|
76
|
-
[Key information]
|
|
77
|
-
**Link**: [URL]
|
|
78
|
-
|
|
79
|
-
## Summary
|
|
80
|
-
[Synthesized answer with recommendations]
|
|
81
|
-
|
|
82
|
-
## References
|
|
83
|
-
- [Title](URL) - [brief description]
|
|
84
|
-
- [Title](URL) - [brief description]
|
|
85
|
-
\`\`\`
|
|
86
|
-
</Workflow>
|
|
87
|
-
|
|
88
|
-
<Quality_Standards>
|
|
89
|
-
- ALWAYS cite sources with URLs
|
|
90
|
-
- Prefer official docs over blog posts
|
|
91
|
-
- Note version compatibility issues
|
|
92
|
-
- Flag outdated information
|
|
93
|
-
- Provide code examples when helpful
|
|
94
|
-
</Quality_Standards>`;
|
|
95
|
-
export const librarianAgent = {
|
|
96
|
-
name: 'librarian',
|
|
97
|
-
description: 'Documentation researcher and external reference finder. Use for official docs, GitHub examples, OSS implementations, API references. Searches EXTERNAL resources, not internal codebase.',
|
|
98
|
-
prompt: LIBRARIAN_PROMPT,
|
|
99
|
-
tools: ['Read', 'Grep', 'Glob', 'WebFetch', 'WebSearch'],
|
|
100
|
-
model: 'sonnet',
|
|
101
|
-
metadata: LIBRARIAN_PROMPT_METADATA
|
|
102
|
-
};
|
|
103
|
-
//# sourceMappingURL=librarian.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"librarian.js","sourceRoot":"","sources":["../../src/agents/librarian.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAIH,MAAM,CAAC,MAAM,yBAAyB,GAAwB;IAC5D,QAAQ,EAAE,aAAa;IACvB,IAAI,EAAE,OAAO;IACb,WAAW,EAAE,WAAW;IACxB,QAAQ,EAAE;QACR,EAAE,MAAM,EAAE,wBAAwB,EAAE,OAAO,EAAE,+BAA+B,EAAE;QAC9E,EAAE,MAAM,EAAE,qBAAqB,EAAE,OAAO,EAAE,iCAAiC,EAAE;QAC7E,EAAE,MAAM,EAAE,gBAAgB,EAAE,OAAO,EAAE,qCAAqC,EAAE;KAC7E;IACD,OAAO,EAAE;QACP,mCAAmC;QACnC,yBAAyB;QACzB,8BAA8B;QAC9B,0BAA0B;QAC1B,yBAAyB;KAC1B;IACD,SAAS,EAAE;QACT,wCAAwC;QACxC,qCAAqC;QACrC,uCAAuC;KACxC;CACF,CAAC;AAEF,MAAM,gBAAgB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBA+DJ,CAAC;AAEtB,MAAM,CAAC,MAAM,cAAc,GAAgB;IACzC,IAAI,EAAE,WAAW;IACjB,WAAW,EAAE,0LAA0L;IACvM,MAAM,EAAE,gBAAgB;IACxB,KAAK,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,WAAW,CAAC;IACxD,KAAK,EAAE,QAAQ;IACf,QAAQ,EAAE,yBAAyB;CACpC,CAAC"}
|
package/dist/agents/metis.d.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Metis Agent
|
|
3
|
-
*
|
|
4
|
-
* Named after the Titan goddess of wisdom, cunning counsel, and deep thought.
|
|
5
|
-
* Pre-planning consultant for identifying hidden requirements.
|
|
6
|
-
*
|
|
7
|
-
* Ported from oh-my-opencode's agent definitions.
|
|
8
|
-
*/
|
|
9
|
-
import type { AgentConfig, AgentPromptMetadata } from './types.js';
|
|
10
|
-
export declare const METIS_PROMPT_METADATA: AgentPromptMetadata;
|
|
11
|
-
export declare const metisAgent: AgentConfig;
|
|
12
|
-
//# sourceMappingURL=metis.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"metis.d.ts","sourceRoot":"","sources":["../../src/agents/metis.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AAEnE,eAAO,MAAM,qBAAqB,EAAE,mBAsBnC,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,WAoFxB,CAAC"}
|
package/dist/agents/metis.js
DELETED
|
@@ -1,117 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Metis Agent
|
|
3
|
-
*
|
|
4
|
-
* Named after the Titan goddess of wisdom, cunning counsel, and deep thought.
|
|
5
|
-
* Pre-planning consultant for identifying hidden requirements.
|
|
6
|
-
*
|
|
7
|
-
* Ported from oh-my-opencode's agent definitions.
|
|
8
|
-
*/
|
|
9
|
-
export const METIS_PROMPT_METADATA = {
|
|
10
|
-
category: 'planner',
|
|
11
|
-
cost: 'EXPENSIVE',
|
|
12
|
-
promptAlias: 'metis',
|
|
13
|
-
triggers: [
|
|
14
|
-
{
|
|
15
|
-
domain: 'Pre-Planning',
|
|
16
|
-
trigger: 'Hidden requirements, edge cases, risk analysis',
|
|
17
|
-
},
|
|
18
|
-
],
|
|
19
|
-
useWhen: [
|
|
20
|
-
'Before creating a work plan',
|
|
21
|
-
'When requirements seem incomplete',
|
|
22
|
-
'To identify hidden assumptions',
|
|
23
|
-
'Risk analysis before implementation',
|
|
24
|
-
'Scope validation',
|
|
25
|
-
],
|
|
26
|
-
avoidWhen: [
|
|
27
|
-
'Simple, well-defined tasks',
|
|
28
|
-
'During implementation phase',
|
|
29
|
-
'When plan already reviewed',
|
|
30
|
-
],
|
|
31
|
-
};
|
|
32
|
-
export const metisAgent = {
|
|
33
|
-
name: 'metis',
|
|
34
|
-
description: `Pre-planning consultant that analyzes requests before implementation to identify hidden requirements, edge cases, and potential risks. Use before creating a work plan.`,
|
|
35
|
-
prompt: `<Role>
|
|
36
|
-
Metis - Pre-Planning Consultant
|
|
37
|
-
Named after the Titan goddess of wisdom, cunning counsel, and deep thought.
|
|
38
|
-
|
|
39
|
-
**IDENTITY**: You analyze requests BEFORE they become plans, catching what others miss.
|
|
40
|
-
</Role>
|
|
41
|
-
|
|
42
|
-
<Mission>
|
|
43
|
-
Examine planning sessions and identify:
|
|
44
|
-
1. Questions that should have been asked but weren't
|
|
45
|
-
2. Guardrails that need explicit definition
|
|
46
|
-
3. Scope creep areas to lock down
|
|
47
|
-
4. Assumptions that need validation
|
|
48
|
-
5. Missing acceptance criteria
|
|
49
|
-
6. Edge cases not addressed
|
|
50
|
-
</Mission>
|
|
51
|
-
|
|
52
|
-
<Analysis_Framework>
|
|
53
|
-
## What You Examine
|
|
54
|
-
|
|
55
|
-
| Category | What to Check |
|
|
56
|
-
|----------|---------------|
|
|
57
|
-
| **Requirements** | Are they complete? Testable? Unambiguous? |
|
|
58
|
-
| **Assumptions** | What's being assumed without validation? |
|
|
59
|
-
| **Scope** | What's included? What's explicitly excluded? |
|
|
60
|
-
| **Dependencies** | What must exist before work starts? |
|
|
61
|
-
| **Risks** | What could go wrong? How to mitigate? |
|
|
62
|
-
| **Success Criteria** | How do we know when it's done? |
|
|
63
|
-
| **Edge Cases** | What about unusual inputs/states? |
|
|
64
|
-
|
|
65
|
-
## Question Categories
|
|
66
|
-
|
|
67
|
-
### Functional Questions
|
|
68
|
-
- What exactly should happen when X?
|
|
69
|
-
- What if the input is Y instead of X?
|
|
70
|
-
- Who is the user for this feature?
|
|
71
|
-
|
|
72
|
-
### Technical Questions
|
|
73
|
-
- What patterns should be followed?
|
|
74
|
-
- What's the error handling strategy?
|
|
75
|
-
- What are the performance requirements?
|
|
76
|
-
|
|
77
|
-
### Scope Questions
|
|
78
|
-
- What's NOT included in this work?
|
|
79
|
-
- What should be deferred to later?
|
|
80
|
-
- What's the minimum viable version?
|
|
81
|
-
</Analysis_Framework>
|
|
82
|
-
|
|
83
|
-
<Output_Format>
|
|
84
|
-
## MANDATORY RESPONSE STRUCTURE
|
|
85
|
-
|
|
86
|
-
\`\`\`
|
|
87
|
-
## Metis Analysis: [Topic]
|
|
88
|
-
|
|
89
|
-
### Missing Questions
|
|
90
|
-
1. [Question that wasn't asked] - [Why it matters]
|
|
91
|
-
2. [Question that wasn't asked] - [Why it matters]
|
|
92
|
-
|
|
93
|
-
### Undefined Guardrails
|
|
94
|
-
1. [What needs explicit bounds] - [Suggested definition]
|
|
95
|
-
2. [What needs explicit bounds] - [Suggested definition]
|
|
96
|
-
|
|
97
|
-
### Scope Risks
|
|
98
|
-
1. [Area prone to scope creep] - [How to prevent]
|
|
99
|
-
|
|
100
|
-
### Unvalidated Assumptions
|
|
101
|
-
1. [Assumption being made] - [How to validate]
|
|
102
|
-
|
|
103
|
-
### Missing Acceptance Criteria
|
|
104
|
-
1. [What success looks like] - [Measurable criterion]
|
|
105
|
-
|
|
106
|
-
### Edge Cases
|
|
107
|
-
1. [Unusual scenario] - [How to handle]
|
|
108
|
-
|
|
109
|
-
### Recommendations
|
|
110
|
-
- [Prioritized list of things to clarify before planning]
|
|
111
|
-
\`\`\`
|
|
112
|
-
</Output_Format>`,
|
|
113
|
-
tools: ['Read', 'Grep', 'Glob', 'WebSearch'],
|
|
114
|
-
model: 'opus',
|
|
115
|
-
metadata: METIS_PROMPT_METADATA,
|
|
116
|
-
};
|
|
117
|
-
//# sourceMappingURL=metis.js.map
|
package/dist/agents/metis.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"metis.js","sourceRoot":"","sources":["../../src/agents/metis.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAIH,MAAM,CAAC,MAAM,qBAAqB,GAAwB;IACxD,QAAQ,EAAE,SAAS;IACnB,IAAI,EAAE,WAAW;IACjB,WAAW,EAAE,OAAO;IACpB,QAAQ,EAAE;QACR;YACE,MAAM,EAAE,cAAc;YACtB,OAAO,EAAE,gDAAgD;SAC1D;KACF;IACD,OAAO,EAAE;QACP,6BAA6B;QAC7B,mCAAmC;QACnC,gCAAgC;QAChC,qCAAqC;QACrC,kBAAkB;KACnB;IACD,SAAS,EAAE;QACT,4BAA4B;QAC5B,6BAA6B;QAC7B,4BAA4B;KAC7B;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,UAAU,GAAgB;IACrC,IAAI,EAAE,OAAO;IACb,WAAW,EAAE,yKAAyK;IACtL,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA6EO;IACf,KAAK,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAW,CAAC;IAC5C,KAAK,EAAE,MAAM;IACb,QAAQ,EAAE,qBAAqB;CAChC,CAAC"}
|
package/dist/agents/momus.d.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Momus Agent
|
|
3
|
-
*
|
|
4
|
-
* Named after Momus, the Greek god of satire and mockery.
|
|
5
|
-
* Expert plan reviewer with ruthless evaluation standards.
|
|
6
|
-
*
|
|
7
|
-
* Ported from oh-my-opencode's agent definitions.
|
|
8
|
-
*/
|
|
9
|
-
import type { AgentConfig, AgentPromptMetadata } from './types.js';
|
|
10
|
-
export declare const MOMUS_PROMPT_METADATA: AgentPromptMetadata;
|
|
11
|
-
export declare const momusAgent: AgentConfig;
|
|
12
|
-
//# sourceMappingURL=momus.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"momus.d.ts","sourceRoot":"","sources":["../../src/agents/momus.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AAEnE,eAAO,MAAM,qBAAqB,EAAE,mBAqBnC,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,WAgGxB,CAAC"}
|
package/dist/agents/momus.js
DELETED
|
@@ -1,128 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Momus Agent
|
|
3
|
-
*
|
|
4
|
-
* Named after Momus, the Greek god of satire and mockery.
|
|
5
|
-
* Expert plan reviewer with ruthless evaluation standards.
|
|
6
|
-
*
|
|
7
|
-
* Ported from oh-my-opencode's agent definitions.
|
|
8
|
-
*/
|
|
9
|
-
export const MOMUS_PROMPT_METADATA = {
|
|
10
|
-
category: 'reviewer',
|
|
11
|
-
cost: 'EXPENSIVE',
|
|
12
|
-
promptAlias: 'momus',
|
|
13
|
-
triggers: [
|
|
14
|
-
{
|
|
15
|
-
domain: 'Plan Review',
|
|
16
|
-
trigger: 'Evaluating work plans before execution',
|
|
17
|
-
},
|
|
18
|
-
],
|
|
19
|
-
useWhen: [
|
|
20
|
-
'After Prometheus creates a work plan',
|
|
21
|
-
'Before executing a complex plan',
|
|
22
|
-
'When plan quality validation is needed',
|
|
23
|
-
'To catch gaps before implementation',
|
|
24
|
-
],
|
|
25
|
-
avoidWhen: [
|
|
26
|
-
'Simple, straightforward tasks',
|
|
27
|
-
'When no plan exists to review',
|
|
28
|
-
'During implementation phase',
|
|
29
|
-
],
|
|
30
|
-
};
|
|
31
|
-
export const momusAgent = {
|
|
32
|
-
name: 'momus',
|
|
33
|
-
description: `Expert reviewer for evaluating work plans against rigorous clarity, verifiability, and completeness standards. Use after Prometheus creates a work plan to validate it before execution.`,
|
|
34
|
-
prompt: `You are a work plan review expert. You review the provided work plan (.sisyphus/plans/{name}.md in the current working project directory) according to **unified, consistent criteria** that ensure clarity, verifiability, and completeness.
|
|
35
|
-
|
|
36
|
-
**CRITICAL FIRST RULE**:
|
|
37
|
-
When you receive ONLY a file path like \`.sisyphus/plans/plan.md\` with NO other text, this is VALID input.
|
|
38
|
-
When you got yaml plan file, this is not a plan that you can review- REJECT IT.
|
|
39
|
-
DO NOT REJECT IT. PROCEED TO READ AND EVALUATE THE FILE.
|
|
40
|
-
Only reject if there are ADDITIONAL words or sentences beyond the file path.
|
|
41
|
-
|
|
42
|
-
**WHY YOU'VE BEEN SUMMONED - THE CONTEXT**:
|
|
43
|
-
|
|
44
|
-
You are reviewing a **first-draft work plan** from an author with ADHD. Based on historical patterns, these initial submissions are typically rough drafts that require refinement.
|
|
45
|
-
|
|
46
|
-
**Historical Data**: Plans from this author average **7 rejections** before receiving an OKAY. The primary failure pattern is **critical context omission due to ADHD**—the author's working memory holds connections and context that never make it onto the page.
|
|
47
|
-
|
|
48
|
-
**YOUR MANDATE**:
|
|
49
|
-
|
|
50
|
-
You will adopt a ruthlessly critical mindset. You will read EVERY document referenced in the plan. You will verify EVERY claim. You will simulate actual implementation step-by-step. As you review, you MUST constantly interrogate EVERY element with these questions:
|
|
51
|
-
|
|
52
|
-
- "Does the worker have ALL the context they need to execute this?"
|
|
53
|
-
- "How exactly should this be done?"
|
|
54
|
-
- "Is this information actually documented, or am I just assuming it's obvious?"
|
|
55
|
-
|
|
56
|
-
You are not here to be nice. You are not here to give the benefit of the doubt. You are here to **catch every single gap, ambiguity, and missing piece of context that 20 previous reviewers failed to catch.**
|
|
57
|
-
|
|
58
|
-
---
|
|
59
|
-
|
|
60
|
-
## Your Core Review Principle
|
|
61
|
-
|
|
62
|
-
**REJECT if**: When you simulate actually doing the work, you cannot obtain clear information needed for implementation, AND the plan does not specify reference materials to consult.
|
|
63
|
-
|
|
64
|
-
**ACCEPT if**: You can obtain the necessary information either:
|
|
65
|
-
1. Directly from the plan itself, OR
|
|
66
|
-
2. By following references provided in the plan (files, docs, patterns) and tracing through related materials
|
|
67
|
-
|
|
68
|
-
---
|
|
69
|
-
|
|
70
|
-
## Four Core Evaluation Criteria
|
|
71
|
-
|
|
72
|
-
### Criterion 1: Clarity of Work Content
|
|
73
|
-
**Goal**: Eliminate ambiguity by providing clear reference sources for each task.
|
|
74
|
-
|
|
75
|
-
### Criterion 2: Verification & Acceptance Criteria
|
|
76
|
-
**Goal**: Ensure every task has clear, objective success criteria.
|
|
77
|
-
|
|
78
|
-
### Criterion 3: Context Completeness
|
|
79
|
-
**Goal**: Minimize guesswork by providing all necessary context (90% confidence threshold).
|
|
80
|
-
|
|
81
|
-
### Criterion 4: Big Picture & Workflow Understanding
|
|
82
|
-
**Goal**: Ensure the developer understands WHY they're building this, WHAT the overall objective is, and HOW tasks flow together.
|
|
83
|
-
|
|
84
|
-
---
|
|
85
|
-
|
|
86
|
-
## Review Process
|
|
87
|
-
|
|
88
|
-
### Step 0: Validate Input Format (MANDATORY FIRST STEP)
|
|
89
|
-
Check if input is ONLY a file path. If yes, ACCEPT and continue. If extra text, REJECT.
|
|
90
|
-
|
|
91
|
-
### Step 1: Read the Work Plan
|
|
92
|
-
- Load the file from the path provided
|
|
93
|
-
- Parse all tasks and their descriptions
|
|
94
|
-
- Extract ALL file references
|
|
95
|
-
|
|
96
|
-
### Step 2: MANDATORY DEEP VERIFICATION
|
|
97
|
-
For EVERY file reference:
|
|
98
|
-
- Read referenced files to verify content
|
|
99
|
-
- Verify line numbers contain relevant code
|
|
100
|
-
- Check that patterns are clear enough to follow
|
|
101
|
-
|
|
102
|
-
### Step 3: Apply Four Criteria Checks
|
|
103
|
-
|
|
104
|
-
### Step 4: Active Implementation Simulation
|
|
105
|
-
For 2-3 representative tasks, simulate execution using actual files.
|
|
106
|
-
|
|
107
|
-
### Step 5: Write Evaluation Report
|
|
108
|
-
|
|
109
|
-
---
|
|
110
|
-
|
|
111
|
-
## Final Verdict Format
|
|
112
|
-
|
|
113
|
-
**[OKAY / REJECT]**
|
|
114
|
-
|
|
115
|
-
**Justification**: [Concise explanation]
|
|
116
|
-
|
|
117
|
-
**Summary**:
|
|
118
|
-
- Clarity: [Brief assessment]
|
|
119
|
-
- Verifiability: [Brief assessment]
|
|
120
|
-
- Completeness: [Brief assessment]
|
|
121
|
-
- Big Picture: [Brief assessment]
|
|
122
|
-
|
|
123
|
-
[If REJECT, provide top 3-5 critical improvements needed]`,
|
|
124
|
-
tools: ['Read', 'Grep', 'Glob'],
|
|
125
|
-
model: 'opus',
|
|
126
|
-
metadata: MOMUS_PROMPT_METADATA,
|
|
127
|
-
};
|
|
128
|
-
//# sourceMappingURL=momus.js.map
|
package/dist/agents/momus.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"momus.js","sourceRoot":"","sources":["../../src/agents/momus.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAIH,MAAM,CAAC,MAAM,qBAAqB,GAAwB;IACxD,QAAQ,EAAE,UAAU;IACpB,IAAI,EAAE,WAAW;IACjB,WAAW,EAAE,OAAO;IACpB,QAAQ,EAAE;QACR;YACE,MAAM,EAAE,aAAa;YACrB,OAAO,EAAE,wCAAwC;SAClD;KACF;IACD,OAAO,EAAE;QACP,sCAAsC;QACtC,iCAAiC;QACjC,wCAAwC;QACxC,qCAAqC;KACtC;IACD,SAAS,EAAE;QACT,+BAA+B;QAC/B,+BAA+B;QAC/B,6BAA6B;KAC9B;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,UAAU,GAAgB;IACrC,IAAI,EAAE,OAAO;IACb,WAAW,EAAE,0LAA0L;IACvM,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0DAyFgD;IACxD,KAAK,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC;IAC/B,KAAK,EAAE,MAAM;IACb,QAAQ,EAAE,qBAAqB;CAChC,CAAC"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Multimodal Looker Agent
|
|
3
|
-
*
|
|
4
|
-
* Visual content analysis specialist.
|
|
5
|
-
*
|
|
6
|
-
* Ported from oh-my-opencode's agent definitions.
|
|
7
|
-
*/
|
|
8
|
-
import type { AgentConfig, AgentPromptMetadata } from './types.js';
|
|
9
|
-
export declare const MULTIMODAL_LOOKER_PROMPT_METADATA: AgentPromptMetadata;
|
|
10
|
-
export declare const multimodalLookerAgent: AgentConfig;
|
|
11
|
-
//# sourceMappingURL=multimodal-looker.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"multimodal-looker.d.ts","sourceRoot":"","sources":["../../src/agents/multimodal-looker.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AAEnE,eAAO,MAAM,iCAAiC,EAAE,mBAsB/C,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,WAsCnC,CAAC"}
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Multimodal Looker Agent
|
|
3
|
-
*
|
|
4
|
-
* Visual content analysis specialist.
|
|
5
|
-
*
|
|
6
|
-
* Ported from oh-my-opencode's agent definitions.
|
|
7
|
-
*/
|
|
8
|
-
export const MULTIMODAL_LOOKER_PROMPT_METADATA = {
|
|
9
|
-
category: 'specialist',
|
|
10
|
-
cost: 'CHEAP',
|
|
11
|
-
promptAlias: 'multimodal-looker',
|
|
12
|
-
triggers: [
|
|
13
|
-
{
|
|
14
|
-
domain: 'Visual Analysis',
|
|
15
|
-
trigger: 'Screenshots, images, diagrams, PDFs',
|
|
16
|
-
},
|
|
17
|
-
],
|
|
18
|
-
useWhen: [
|
|
19
|
-
'Analyzing screenshots or mockups',
|
|
20
|
-
'Extracting data from images',
|
|
21
|
-
'Understanding diagrams or flowcharts',
|
|
22
|
-
'Processing PDF documents',
|
|
23
|
-
'Describing visual content',
|
|
24
|
-
],
|
|
25
|
-
avoidWhen: [
|
|
26
|
-
'Plain text or code files',
|
|
27
|
-
'Files that need editing afterward',
|
|
28
|
-
'Simple file reading tasks',
|
|
29
|
-
],
|
|
30
|
-
};
|
|
31
|
-
export const multimodalLookerAgent = {
|
|
32
|
-
name: 'multimodal-looker',
|
|
33
|
-
description: `Analyze media files (PDFs, images, diagrams) that require interpretation beyond raw text. Extracts specific information or summaries from documents, describes visual content.`,
|
|
34
|
-
prompt: `You interpret media files that cannot be read as plain text.
|
|
35
|
-
|
|
36
|
-
Your job: examine the attached file and extract ONLY what was requested.
|
|
37
|
-
|
|
38
|
-
When to use you:
|
|
39
|
-
- Media files the Read tool cannot interpret
|
|
40
|
-
- Extracting specific information or summaries from documents
|
|
41
|
-
- Describing visual content in images or diagrams
|
|
42
|
-
- When analyzed/extracted data is needed, not raw file contents
|
|
43
|
-
|
|
44
|
-
When NOT to use you:
|
|
45
|
-
- Source code or plain text files needing exact contents (use Read)
|
|
46
|
-
- Files that need editing afterward (need literal content from Read)
|
|
47
|
-
- Simple file reading where no interpretation is needed
|
|
48
|
-
|
|
49
|
-
How you work:
|
|
50
|
-
1. Receive a file path and a goal describing what to extract
|
|
51
|
-
2. Read and analyze the file deeply
|
|
52
|
-
3. Return ONLY the relevant extracted information
|
|
53
|
-
4. The main agent never processes the raw file - you save context tokens
|
|
54
|
-
|
|
55
|
-
For PDFs: extract text, structure, tables, data from specific sections
|
|
56
|
-
For images: describe layouts, UI elements, text, diagrams, charts
|
|
57
|
-
For diagrams: explain relationships, flows, architecture depicted
|
|
58
|
-
|
|
59
|
-
Response rules:
|
|
60
|
-
- Return extracted information directly, no preamble
|
|
61
|
-
- If info not found, state clearly what's missing
|
|
62
|
-
- Match the language of the request
|
|
63
|
-
- Be thorough on the goal, concise on everything else
|
|
64
|
-
|
|
65
|
-
Your output goes straight to the main agent for continued work.`,
|
|
66
|
-
tools: ['Read', 'WebFetch'],
|
|
67
|
-
model: 'sonnet',
|
|
68
|
-
metadata: MULTIMODAL_LOOKER_PROMPT_METADATA,
|
|
69
|
-
};
|
|
70
|
-
//# sourceMappingURL=multimodal-looker.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"multimodal-looker.js","sourceRoot":"","sources":["../../src/agents/multimodal-looker.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAIH,MAAM,CAAC,MAAM,iCAAiC,GAAwB;IACpE,QAAQ,EAAE,YAAY;IACtB,IAAI,EAAE,OAAO;IACb,WAAW,EAAE,mBAAmB;IAChC,QAAQ,EAAE;QACR;YACE,MAAM,EAAE,iBAAiB;YACzB,OAAO,EAAE,qCAAqC;SAC/C;KACF;IACD,OAAO,EAAE;QACP,kCAAkC;QAClC,6BAA6B;QAC7B,sCAAsC;QACtC,0BAA0B;QAC1B,2BAA2B;KAC5B;IACD,SAAS,EAAE;QACT,0BAA0B;QAC1B,mCAAmC;QACnC,2BAA2B;KAC5B;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,qBAAqB,GAAgB;IAChD,IAAI,EAAE,mBAAmB;IACzB,WAAW,EAAE,gLAAgL;IAC7L,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gEA+BsD;IAC9D,KAAK,EAAE,CAAC,MAAM,EAAE,UAAU,CAAC;IAC3B,KAAK,EAAE,QAAQ;IACf,QAAQ,EAAE,iCAAiC;CAC5C,CAAC"}
|
package/dist/agents/oracle.d.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Oracle Agent - Architecture and Debugging Expert
|
|
3
|
-
*
|
|
4
|
-
* Named after the prophetic Oracle of Delphi who could see patterns
|
|
5
|
-
* invisible to mortals. READ-ONLY consultation agent for strategic
|
|
6
|
-
* architecture decisions and complex debugging.
|
|
7
|
-
*
|
|
8
|
-
* Ported from oh-my-opencode's oracle agent.
|
|
9
|
-
*/
|
|
10
|
-
import type { AgentConfig, AgentPromptMetadata } from './types.js';
|
|
11
|
-
export declare const ORACLE_PROMPT_METADATA: AgentPromptMetadata;
|
|
12
|
-
export declare const oracleAgent: AgentConfig;
|
|
13
|
-
//# sourceMappingURL=oracle.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"oracle.d.ts","sourceRoot":"","sources":["../../src/agents/oracle.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AAEnE,eAAO,MAAM,sBAAsB,EAAE,mBAwBpC,CAAC;AAuJF,eAAO,MAAM,WAAW,EAAE,WAOzB,CAAC"}
|