oh-my-claude-sisyphus 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -55,7 +55,9 @@ The installer adds to your Claude Code config (`~/.claude/`):
55
55
  │ ├── deepsearch.md # /deepsearch command
56
56
  │ ├── analyze.md # /analyze command
57
57
  │ ├── plan.md # /plan command (Prometheus)
58
- └── review.md # /review command (Momus)
58
+ ├── review.md # /review command (Momus)
59
+ │ ├── prometheus.md # /prometheus command
60
+ │ └── orchestrator.md # /orchestrator command
59
61
  └── CLAUDE.md # Sisyphus system prompt
60
62
  ```
61
63
 
@@ -78,6 +80,8 @@ claude
78
80
  | `/analyze <target>` | Deep analysis and investigation |
79
81
  | `/plan <description>` | Start planning session with Prometheus |
80
82
  | `/review [plan-path]` | Review a plan with Momus |
83
+ | `/prometheus <task>` | Strategic planning with interview workflow |
84
+ | `/orchestrator <task>` | Complex multi-step task coordination |
81
85
 
82
86
  ### Examples
83
87
 
@@ -206,7 +210,7 @@ Or manually:
206
210
 
207
211
  ```bash
208
212
  rm ~/.claude/agents/{oracle,librarian,explore,frontend-engineer,document-writer,multimodal-looker,momus,metis,orchestrator-sisyphus,sisyphus-junior,prometheus}.md
209
- rm ~/.claude/commands/{sisyphus,sisyphus-default,ultrawork,deepsearch,analyze,plan,review}.md
213
+ rm ~/.claude/commands/{sisyphus,sisyphus-default,ultrawork,deepsearch,analyze,plan,review,prometheus,orchestrator}.md
210
214
  ```
211
215
 
212
216
  ## SDK Usage (Advanced)
@@ -321,7 +325,7 @@ The original oh-my-opencode used multiple AI providers. This port uses Claude mo
321
325
  |---------|-------------|
322
326
  | **11 Specialized Agents** | Oracle, Librarian, Explore, Frontend Engineer, Document Writer, Multimodal Looker, Momus, Metis, Orchestrator-Sisyphus, Sisyphus-Junior, Prometheus |
323
327
  | **Magic Keywords** | `ultrawork`, `search`, `analyze` trigger enhanced modes |
324
- | **Slash Commands** | `/sisyphus`, `/sisyphus-default`, `/ultrawork`, `/deepsearch`, `/analyze`, `/plan`, `/review` |
328
+ | **Slash Commands** | `/sisyphus`, `/sisyphus-default`, `/ultrawork`, `/deepsearch`, `/analyze`, `/plan`, `/review`, `/prometheus`, `/orchestrator` |
325
329
  | **Configuration System** | JSONC config with multi-source merging |
326
330
  | **Context Injection** | Auto-loads CLAUDE.md and AGENTS.md files |
327
331
  | **Continuation Enforcement** | System prompt enforces task completion |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-claude-sisyphus",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Multi-agent orchestration system for Claude Agent SDK - Port of oh-my-opencode",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -656,7 +656,101 @@ I will critically evaluate the specified plan using Momus, the ruthless plan rev
656
656
  Provide a plan file path to review, or I'll review the most recent plan in `.sisyphus/plans/`.
657
657
  CMD_EOF
658
658
 
659
- echo -e "${GREEN}✓ Installed 7 slash commands${NC}"
659
+ # Prometheus Command
660
+ cat > "$CLAUDE_CONFIG_DIR/commands/prometheus.md" << 'CMD_EOF'
661
+ ---
662
+ description: Start strategic planning with Prometheus
663
+ ---
664
+
665
+ [PROMETHEUS PLANNING MODE]
666
+
667
+ $ARGUMENTS
668
+
669
+ ## Strategic Planning with Prometheus
670
+
671
+ You are now in a planning session with Prometheus, the strategic planning consultant.
672
+
673
+ ### How This Works
674
+
675
+ 1. **Interview Phase**: I will ask clarifying questions to fully understand your requirements
676
+ 2. **Analysis Phase**: I'll consult with Metis to identify hidden requirements and risks
677
+ 3. **Planning Phase**: When you're ready, I'll create a comprehensive work plan
678
+
679
+ ### Trigger Planning
680
+
681
+ Say any of these when you're ready to generate the plan:
682
+ - "Make it into a work plan!"
683
+ - "Create the plan"
684
+ - "I'm ready to plan"
685
+ - "Generate the plan"
686
+
687
+ ### Plan Storage
688
+
689
+ Plans are saved to `.sisyphus/plans/` for later execution with `/sisyphus`.
690
+
691
+ ### What Makes a Good Plan
692
+
693
+ - Clear requirements summary
694
+ - Concrete acceptance criteria
695
+ - Specific implementation steps with file references
696
+ - Risk identification and mitigations
697
+ - Verification steps
698
+
699
+ ---
700
+
701
+ Tell me about what you want to build or accomplish. I'll ask questions to understand the full scope before creating a plan.
702
+ CMD_EOF
703
+
704
+ # Orchestrator Command
705
+ cat > "$CLAUDE_CONFIG_DIR/commands/orchestrator.md" << 'CMD_EOF'
706
+ ---
707
+ description: Activate Orchestrator-Sisyphus for complex multi-step tasks
708
+ ---
709
+
710
+ [ORCHESTRATOR MODE]
711
+
712
+ $ARGUMENTS
713
+
714
+ ## Orchestrator-Sisyphus Activated
715
+
716
+ You are now running with Orchestrator-Sisyphus, the master coordinator for complex multi-step tasks.
717
+
718
+ ### Capabilities
719
+
720
+ 1. **Todo Management**: Break down complex tasks into atomic, trackable todos
721
+ 2. **Smart Delegation**: Route tasks to the most appropriate specialist agent
722
+ 3. **Progress Tracking**: Monitor completion status and handle blockers
723
+ 4. **Verification**: Ensure all tasks are truly complete before finishing
724
+
725
+ ### Agent Routing
726
+
727
+ | Task Type | Delegated To |
728
+ |-----------|--------------|
729
+ | Visual/UI work | frontend-engineer |
730
+ | Complex analysis/debugging | oracle |
731
+ | Documentation | document-writer |
732
+ | Quick searches | explore |
733
+ | Research/docs lookup | librarian |
734
+ | Image/screenshot analysis | multimodal-looker |
735
+
736
+ ### Notepad System
737
+
738
+ Learnings and discoveries are recorded in `.sisyphus/notepads/` to prevent repeated mistakes.
739
+
740
+ ### Verification Protocol
741
+
742
+ Before marking any task complete:
743
+ - Check file existence
744
+ - Run tests if applicable
745
+ - Type check if TypeScript
746
+ - Code review for quality
747
+
748
+ ---
749
+
750
+ Describe the complex task you need orchestrated. I'll break it down and coordinate the specialists.
751
+ CMD_EOF
752
+
753
+ echo -e "${GREEN}✓ Installed 9 slash commands${NC}"
660
754
 
661
755
  echo -e "${BLUE}[5/5]${NC} Creating CLAUDE.md with Sisyphus system prompt..."
662
756
 
@@ -696,6 +790,8 @@ Use the Task tool to delegate to specialized agents:
696
790
  | `/analyze <target>` | Deep analysis and investigation |
697
791
  | `/plan <description>` | Start planning session with Prometheus |
698
792
  | `/review [plan-path]` | Review a plan with Momus |
793
+ | `/prometheus <task>` | Strategic planning with interview workflow |
794
+ | `/orchestrator <task>` | Complex multi-step task coordination |
699
795
 
700
796
  ## Planning Workflow
701
797