oh-my-claude-sisyphus 3.3.4 → 3.3.5

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/agents/planner.md CHANGED
@@ -114,6 +114,41 @@ If the orchestrator did NOT provide pre-gathered context:
114
114
  | "How many files will this touch?" | "Should we prioritize backward compatibility?" |
115
115
  | "What's the test coverage?" | "What's your risk tolerance for this change?" |
116
116
 
117
+ ### MANDATORY: Use AskUserQuestion Tool
118
+
119
+ When asking user-preference questions (Preference, Requirement, Scope, Constraint, Ownership, Risk tolerance), you MUST use the `AskUserQuestion` tool instead of asking via plain text.
120
+
121
+ **Why:** This provides a clickable option UI that is faster for users than typing responses.
122
+
123
+ **How to use:**
124
+ - Question: Clear, specific question ending with "?"
125
+ - Options: 2-4 distinct choices with brief descriptions
126
+ - For open-ended questions where options aren't possible, plain text is acceptable
127
+ - Users can always select "Other" to provide custom input
128
+
129
+ **Example:**
130
+ Use AskUserQuestion tool with:
131
+ - Question: "What's your priority for this feature?"
132
+ - Options:
133
+ 1. **Speed** - Get it working quickly, polish later
134
+ 2. **Quality** - Take time to do it right
135
+ 3. **Balance** - Reasonable quality in reasonable time
136
+
137
+ **Question Types That REQUIRE AskUserQuestion:**
138
+
139
+ | Type | Example Question | Example Options |
140
+ |------|------------------|-----------------|
141
+ | Preference | "What's your priority?" | Speed / Quality / Balance |
142
+ | Requirement | "What's the deadline?" | This week / This month / No deadline |
143
+ | Scope | "Include feature Y?" | Yes / No / Maybe later |
144
+ | Constraint | "Performance requirements?" | Critical / Nice-to-have / Not important |
145
+ | Risk tolerance | "Refactoring acceptable?" | Minimal / Moderate / Extensive |
146
+
147
+ **When Plain Text is OK:**
148
+ - Questions that need specific values (e.g., "What port number?")
149
+ - Follow-up clarifications on a previous answer
150
+ - Questions with too many possible answers to enumerate
151
+
117
152
  ---
118
153
 
119
154
  # PHASE 2: PLAN GENERATION TRIGGER
package/docs/CLAUDE.md CHANGED
@@ -311,6 +311,13 @@ A request is BROAD and needs planning if ANY of:
311
311
  3. THEN invoke `planner` skill with gathered context
312
312
  4. Planner asks ONLY user-preference questions
313
313
 
314
+ ### AskUserQuestion in Planning
315
+
316
+ When in planning/interview mode, use the `AskUserQuestion` tool for preference questions instead of plain text. This provides a clickable UI for faster user responses.
317
+
318
+ **Applies to**: Planner agent, plan skill, planning interviews
319
+ **Question types**: Preference, Requirement, Scope, Constraint, Risk tolerance
320
+
314
321
  ### Mandatory Architect Verification
315
322
 
316
323
  **HARD RULE: Never claim completion without Architect approval.**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-claude-sisyphus",
3
- "version": "3.3.4",
3
+ "version": "3.3.5",
4
4
  "description": "Multi-agent orchestration system for Claude Code - Inspired by oh-my-opencode",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -18,6 +18,7 @@ I will ask clarifying questions to fully understand your requirements before cre
18
18
 
19
19
  ### What Happens Next
20
20
  1. **Interview** - I'll ask questions about your goals, constraints, and preferences
21
+ - Questions will use the AskUserQuestion tool for easy option selection (clickable UI instead of typing)
21
22
  2. **Analysis** - Analyst will analyze for hidden requirements and risks
22
23
  3. **Planning** - I'll create a comprehensive work plan
23
24
  4. **Review** (optional) - Critic can review the plan for quality
@@ -22,6 +22,17 @@ Ask clarifying questions about: Goals, Constraints, Context, Risks, Preferences
22
22
 
23
23
  **CRITICAL**: Don't assume. Ask until requirements are clear.
24
24
 
25
+ **IMPORTANT**: Use the `AskUserQuestion` tool when asking preference questions. This provides a clickable UI for faster responses.
26
+
27
+ **Question types requiring AskUserQuestion:**
28
+ - Preference (speed vs quality)
29
+ - Requirement (deadline)
30
+ - Scope (include feature Y?)
31
+ - Constraint (performance needs)
32
+ - Risk tolerance (refactoring acceptable?)
33
+
34
+ **When plain text is OK:** Questions needing specific values (port numbers, names) or follow-up clarifications.
35
+
25
36
  ### Phase 2: Analysis
26
37
  Consult Analyst for hidden requirements, edge cases, risks.
27
38