maxsimcli 1.1.0 → 1.1.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/dist/assets/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## 1.1.1 (2026-02-24)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
- **discuss:** enforce AskUserQuestion tool for all user interactions ([149fda4](https://github.com/maystudios/maxsim/commit/149fda4))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Claude Opus 4.6
|
|
10
|
+
- Sven
|
|
11
|
+
|
|
1
12
|
## 1.1.0 (2026-02-24)
|
|
2
13
|
|
|
3
14
|
### 🚀 Features
|
|
@@ -22,6 +22,9 @@ Extract implementation decisions that downstream agents need — researcher and
|
|
|
22
22
|
4. Create CONTEXT.md with decisions that guide research and planning
|
|
23
23
|
|
|
24
24
|
**Output:** `{phase_num}-CONTEXT.md` — decisions clear enough that downstream agents can act without asking the user again
|
|
25
|
+
|
|
26
|
+
**CRITICAL — AskUserQuestion tool mandate:**
|
|
27
|
+
Every single question to the user MUST use the `AskUserQuestion` tool. NEVER ask questions as plain text in your response. This includes gray area selection, deep-dive questions, continuation prompts, and any other user interaction. If you need the user's input, use `AskUserQuestion`. No exceptions.
|
|
25
28
|
</objective>
|
|
26
29
|
|
|
27
30
|
<execution_context>
|
|
@@ -10,6 +10,23 @@ Extract implementation decisions that downstream agents need. Analyze the phase
|
|
|
10
10
|
You are a thinking partner, not an interviewer. The user is the visionary — you are the builder. Your job is to capture decisions that will guide research and planning, not to figure out implementation yourself.
|
|
11
11
|
</purpose>
|
|
12
12
|
|
|
13
|
+
<tool_mandate>
|
|
14
|
+
**CRITICAL — AskUserQuestion is MANDATORY for ALL user interactions.**
|
|
15
|
+
|
|
16
|
+
Every question directed at the user MUST use the `AskUserQuestion` tool. NEVER write a question as plain text and wait for the user to respond. This applies to:
|
|
17
|
+
|
|
18
|
+
- Gray area selection (multiSelect)
|
|
19
|
+
- Every deep-dive question within an area
|
|
20
|
+
- "More questions or next area?" continuation prompts
|
|
21
|
+
- "Ready to create context?" final prompts
|
|
22
|
+
- Any clarification or follow-up question
|
|
23
|
+
- Existing context handling (update/view/skip)
|
|
24
|
+
|
|
25
|
+
**Why:** Plain-text questions create a worse UX — the user has to type free-form answers instead of selecting from well-designed options. AskUserQuestion provides structured choices, which is the entire point of the discuss workflow.
|
|
26
|
+
|
|
27
|
+
**The rule is simple:** If you need input from the user → use `AskUserQuestion`. Zero exceptions.
|
|
28
|
+
</tool_mandate>
|
|
29
|
+
|
|
13
30
|
<downstream_awareness>
|
|
14
31
|
**CONTEXT.md feeds into:**
|
|
15
32
|
|
package/dist/install.cjs
CHANGED
|
@@ -6485,7 +6485,7 @@ var require_dist = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6485
6485
|
var require_package = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
6486
6486
|
module.exports = {
|
|
6487
6487
|
"name": "maxsimcli",
|
|
6488
|
-
"version": "1.1.
|
|
6488
|
+
"version": "1.1.1",
|
|
6489
6489
|
"private": false,
|
|
6490
6490
|
"description": "A meta-prompting, context engineering and spec-driven development system for Claude Code, OpenCode, Gemini and Codex by MayStudios.",
|
|
6491
6491
|
"bin": { "maxsimcli": "dist/install.cjs" },
|
package/package.json
CHANGED