maxsimcli 1.1.0 → 1.1.2

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.
@@ -1,3 +1,26 @@
1
+ ## 1.1.2 (2026-02-24)
2
+
3
+ ### 🚀 Features
4
+
5
+ - **13-01:** scaffold packages/dashboard NX package with Next.js 15 and dependencies ([8cb33d6](https://github.com/maystudios/maxsim/commit/8cb33d6))
6
+ - **13-01:** add dark theme layout, globals, utilities, types, and Aceternity config ([c8f76cb](https://github.com/maystudios/maxsim/commit/c8f76cb))
7
+
8
+ ### ❤️ Thank You
9
+
10
+ - Claude Opus 4.6
11
+ - Sven
12
+
13
+ ## 1.1.1 (2026-02-24)
14
+
15
+ ### 🩹 Fixes
16
+
17
+ - **discuss:** enforce AskUserQuestion tool for all user interactions ([149fda4](https://github.com/maystudios/maxsim/commit/149fda4))
18
+
19
+ ### ❤️ Thank You
20
+
21
+ - Claude Opus 4.6
22
+ - Sven
23
+
1
24
  ## 1.1.0 (2026-02-24)
2
25
 
3
26
  ### 🚀 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.0",
6488
+ "version": "1.1.2",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "maxsimcli",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "private": false,
5
5
  "description": "A meta-prompting, context engineering and spec-driven development system for Claude Code, OpenCode, Gemini and Codex by MayStudios.",
6
6
  "bin": {
@@ -43,8 +43,8 @@
43
43
  "chalk": "^5.6.2",
44
44
  "ora": "^9.3.0",
45
45
  "@maxsim/adapters": "0.0.1",
46
- "@maxsim/core": "0.0.1",
47
46
  "@maxsim/hooks": "0.0.1",
47
+ "@maxsim/core": "0.0.1",
48
48
  "@maxsim/templates": "0.0.1"
49
49
  },
50
50
  "dependencies": {