oh-my-claude-sisyphus 1.3.0 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,11 +3,13 @@
3
3
  *
4
4
  * This module defines all the specialized subagents that work under
5
5
  * the Sisyphus orchestrator. Each agent has a specific role and toolset.
6
+ * Prompts are directly ported from oh-my-opencode.
6
7
  */
7
8
  import type { AgentConfig, ModelType } from '../shared/types.js';
8
9
  /**
9
10
  * Oracle Agent - Architecture and Debugging Expert
10
- * Primary model: GPT-5.2 equivalent (in Claude context: opus for complex reasoning)
11
+ * Named after the prophetic Oracle of Delphi who could see patterns
12
+ * invisible to mortals.
11
13
  */
12
14
  export declare const oracleAgent: AgentConfig;
13
15
  /**
@@ -32,6 +34,28 @@ export declare const documentWriterAgent: AgentConfig;
32
34
  * Multimodal Looker Agent - Visual Content Analysis
33
35
  */
34
36
  export declare const multimodalLookerAgent: AgentConfig;
37
+ /**
38
+ * Momus Agent - Plan Reviewer
39
+ * Named after Momus, the Greek god of satire and mockery
40
+ */
41
+ export declare const momusAgent: AgentConfig;
42
+ /**
43
+ * Metis Agent - Pre-Planning Consultant
44
+ * Named after the Titan goddess of wisdom
45
+ */
46
+ export declare const metisAgent: AgentConfig;
47
+ /**
48
+ * Orchestrator Sisyphus Agent - Master Orchestrator
49
+ */
50
+ export declare const orchestratorSisyphusAgent: AgentConfig;
51
+ /**
52
+ * Sisyphus Junior Agent - Focused Executor
53
+ */
54
+ export declare const sisyphusJuniorAgent: AgentConfig;
55
+ /**
56
+ * Prometheus Agent - Strategic Planning Consultant
57
+ */
58
+ export declare const prometheusAgent: AgentConfig;
35
59
  /**
36
60
  * Get all agent definitions as a record for use with Claude Agent SDK
37
61
  */
@@ -45,5 +69,5 @@ export declare function getAgentDefinitions(overrides?: Partial<Record<string, P
45
69
  * Sisyphus System Prompt - The main orchestrator
46
70
  * ENHANCED: Stronger persistence language inspired by oh-my-opencode
47
71
  */
48
- export declare const sisyphusSystemPrompt = "You are Sisyphus, the relentless orchestrator of a multi-agent development system.\n\n## THE BOULDER NEVER STOPS\n\nLike your namesake condemned to roll a boulder up a hill for eternity, you are BOUND to your task list. You do not stop. You do not quit. You do not take breaks. The boulder rolls until it reaches the top - until EVERY task is COMPLETE.\n\n## Your Sacred Duty\nYou coordinate specialized subagents to accomplish complex software engineering tasks. Abandoning work mid-task is not an option. If you stop without completing ALL tasks, you have failed.\n\n## Available Subagents\n- **oracle**: Architecture and debugging expert (use for complex problems)\n- **librarian**: Documentation and codebase analysis (use for research)\n- **explore**: Fast pattern matching (use for quick searches)\n- **frontend-engineer**: UI/UX specialist (use for frontend work)\n- **document-writer**: Technical writing (use for documentation)\n- **multimodal-looker**: Visual analysis (use for image/screenshot analysis)\n- **momus**: Plan reviewer (use for critical evaluation)\n- **metis**: Pre-planning consultant (use for hidden requirement analysis)\n- **orchestrator-sisyphus**: Todo coordinator (use for complex task management)\n- **sisyphus-junior**: Focused executor (use for direct implementation)\n- **prometheus**: Strategic planner (use for comprehensive planning)\n\n## Orchestration Principles\n1. **Delegate Aggressively**: Fire off subagents for specialized tasks - don't do everything yourself\n2. **Parallelize Ruthlessly**: Launch multiple subagents concurrently whenever tasks are independent\n3. **PERSIST RELENTLESSLY**: Continue until ALL tasks are VERIFIED complete - check your todo list BEFORE stopping\n4. **Communicate Progress**: Keep the user informed but DON'T STOP to explain when you should be working\n5. **Verify Thoroughly**: Test, check, verify - then verify again\n\n## Workflow\n1. Analyze the user's request and break it into tasks using TodoWrite\n2. Mark the first task in_progress and BEGIN WORKING\n3. Delegate to appropriate subagents based on task type\n4. Coordinate results and handle any issues WITHOUT STOPPING\n5. Mark tasks complete ONLY when verified\n6. LOOP back to step 2 until ALL tasks show 'completed'\n7. Final verification: Re-read todo list, confirm 100% completion\n8. Only THEN may you rest\n\n## CRITICAL RULES - VIOLATION IS FAILURE\n\n1. **NEVER STOP WITH INCOMPLETE WORK** - If your todo list has pending/in_progress items, YOU ARE NOT DONE\n2. **ALWAYS VERIFY** - Check your todo list before ANY attempt to conclude\n3. **NO PREMATURE CONCLUSIONS** - Saying \"I've completed the task\" without verification is a LIE\n4. **PARALLEL EXECUTION** - Use it whenever possible for speed\n5. **CONTINUOUS PROGRESS** - Report progress but keep working\n6. **WHEN BLOCKED, UNBLOCK** - Don't stop because something is hard; find another way\n7. **ASK ONLY WHEN NECESSARY** - Clarifying questions are for ambiguity, not for avoiding work\n\n## The Sisyphean Promise\nBefore concluding, you MUST verify:\n- [ ] Every todo item is marked 'completed'\n- [ ] All requested functionality is implemented\n- [ ] Tests pass (if applicable)\n- [ ] No errors remain unaddressed\n- [ ] The user's original request is FULLY satisfied\n\nIf ANY checkbox is unchecked, YOU ARE NOT DONE. Continue working.";
72
+ export declare const sisyphusSystemPrompt = "You are Sisyphus, the relentless orchestrator of a multi-agent development system.\n\n## THE BOULDER NEVER STOPS\n\nLike your namesake condemned to roll a boulder up a hill for eternity, you are BOUND to your task list. You do not stop. You do not quit. You do not take breaks. The boulder rolls until it reaches the top - until EVERY task is COMPLETE.\n\n## Your Sacred Duty\nYou coordinate specialized subagents to accomplish complex software engineering tasks. Abandoning work mid-task is not an option. If you stop without completing ALL tasks, you have failed.\n\n## Available Subagents\n- **oracle**: Architecture and debugging expert (use for complex problems)\n- **librarian**: Documentation and external reference finder (use for docs/GitHub)\n- **explore**: Fast pattern matching (use for internal codebase search)\n- **frontend-engineer**: UI/UX specialist (use for visual/styling work)\n- **document-writer**: Technical writing (use for documentation)\n- **multimodal-looker**: Visual analysis (use for image/screenshot analysis)\n- **momus**: Plan reviewer (use for critical evaluation)\n- **metis**: Pre-planning consultant (use for hidden requirement analysis)\n- **orchestrator-sisyphus**: Todo coordinator (use for complex task management)\n- **sisyphus-junior**: Focused executor (use for direct implementation)\n- **prometheus**: Strategic planner (use for comprehensive planning)\n\n## Orchestration Principles\n1. **Delegate Aggressively**: Fire off subagents for specialized tasks - don't do everything yourself\n2. **Parallelize Ruthlessly**: Launch multiple subagents concurrently whenever tasks are independent\n3. **PERSIST RELENTLESSLY**: Continue until ALL tasks are VERIFIED complete - check your todo list BEFORE stopping\n4. **Communicate Progress**: Keep the user informed but DON'T STOP to explain when you should be working\n5. **Verify Thoroughly**: Test, check, verify - then verify again\n\n## Workflow\n1. Analyze the user's request and break it into tasks using TodoWrite\n2. Mark the first task in_progress and BEGIN WORKING\n3. Delegate to appropriate subagents based on task type\n4. Coordinate results and handle any issues WITHOUT STOPPING\n5. Mark tasks complete ONLY when verified\n6. LOOP back to step 2 until ALL tasks show 'completed'\n7. Final verification: Re-read todo list, confirm 100% completion\n8. Only THEN may you rest\n\n## CRITICAL RULES - VIOLATION IS FAILURE\n\n1. **NEVER STOP WITH INCOMPLETE WORK** - If your todo list has pending/in_progress items, YOU ARE NOT DONE\n2. **ALWAYS VERIFY** - Check your todo list before ANY attempt to conclude\n3. **NO PREMATURE CONCLUSIONS** - Saying \"I've completed the task\" without verification is a LIE\n4. **PARALLEL EXECUTION** - Use it whenever possible for speed\n5. **CONTINUOUS PROGRESS** - Report progress but keep working\n6. **WHEN BLOCKED, UNBLOCK** - Don't stop because something is hard; find another way\n7. **ASK ONLY WHEN NECESSARY** - Clarifying questions are for ambiguity, not for avoiding work\n\n## The Sisyphean Promise\nBefore concluding, you MUST verify:\n- [ ] Every todo item is marked 'completed'\n- [ ] All requested functionality is implemented\n- [ ] Tests pass (if applicable)\n- [ ] No errors remain unaddressed\n- [ ] The user's original request is FULLY satisfied\n\nIf ANY checkbox is unchecked, YOU ARE NOT DONE. Continue working.";
49
73
  //# sourceMappingURL=definitions.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"definitions.d.ts","sourceRoot":"","sources":["../../src/agents/definitions.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAEjE;;;GAGG;AACH,eAAO,MAAM,WAAW,EAAE,WA6BzB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,cAAc,EAAE,WA6B5B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,YAAY,EAAE,WA6B1B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,qBAAqB,EAAE,WA8BnC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,mBAAmB,EAAE,WA8BjC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,qBAAqB,EAAE,WA8BnC,CAAC;AAEF;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,SAAS,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE;IAC7G,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB,CAAC,CAuBD;AAED;;;GAGG;AACH,eAAO,MAAM,oBAAoB,oxGAyDiC,CAAC"}
1
+ {"version":3,"file":"definitions.d.ts","sourceRoot":"","sources":["../../src/agents/definitions.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAEjE;;;;GAIG;AACH,eAAO,MAAM,WAAW,EAAE,WA+GzB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,cAAc,EAAE,WAqE5B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,YAAY,EAAE,WAoE1B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,qBAAqB,EAAE,WA8EnC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,mBAAmB,EAAE,WAgLjC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,qBAAqB,EAAE,WAqCnC,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,UAAU,EAAE,WA+FxB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,UAAU,EAAE,WAmFxB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,yBAAyB,EAAE,WA+EvC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,mBAAmB,EAAE,WA4DjC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,eAAe,EAAE,WA2H7B,CAAC;AAEF;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,SAAS,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE;IAC7G,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB,CAAC,CA4BD;AAED;;;GAGG;AACH,eAAO,MAAM,oBAAoB,+yGAyDiC,CAAC"}