@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
|
@@ -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.
|
|
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[
|
|
123
|
-
D -->
|
|
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
|