@e0ipso/ai-task-manager 1.26.6 → 1.26.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@e0ipso/ai-task-manager",
3
- "version": "1.26.6",
3
+ "version": "1.26.7",
4
4
  "description": "Task management for AI coding assistants",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -113,14 +113,16 @@ Think harder before interrupting the user—only trigger this loop when you can
113
113
  - Build a clarification packet grouped by theme.
114
114
  - Prefill each question with the most plausible answer so the user can confirm/deny quickly.
115
115
  - Always include an **“Other / open-ended”** option to capture nuances you did not anticipate.
116
- 5. Send the packet, capture the responses (including open-ended notes), update the Plan Clarifications table, then jump back to Step 1 to ensure no new gaps remain.
116
+ 5. **STOP AND ASK**: Present the clarification packet to the user. **You must halt execution here and await user input.** Do not simulate the user's response. Do not proceed to Stage 3 until you have received explicit answers.
117
117
 
118
118
  ```mermaid
119
119
  flowchart TD
120
120
  A[Inspect current plan] --> B{Need more clarification?}
121
121
  B -- No --> C[End · proceed with refinement]
122
- B -- Yes --> D[Collect question set\n• targeted prompts\n• prefilled answers\n• open-ended field]
123
- D --> B
122
+ B -- Yes --> D[Construct Question Packet]
123
+ D --> E[STOP · Ask User]
124
+ E --> F[Receive Input]
125
+ F --> B
124
126
  ```
125
127
 
126
128
  ## Stage 3: Refinement Implementation