maxsimcli 2.3.0 → 2.4.0
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/.tsbuildinfo +1 -1
- package/dist/assets/CHANGELOG.md +10 -0
- package/dist/assets/dashboard/client/assets/{index-Cjvf4AIW.js → index-G0WOLbCS.js} +1 -1
- package/dist/assets/dashboard/client/index.html +1 -1
- package/dist/assets/dashboard/server.js +24 -12
- package/dist/assets/templates/commands/maxsim/set-profile.md +2 -2
- package/dist/assets/templates/workflows/set-profile.md +3 -2
- package/dist/cli.cjs +24 -12
- package/dist/cli.cjs.map +1 -1
- package/package.json +1 -1
|
@@ -34659,57 +34659,68 @@ var require_core = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
34659
34659
|
"maxsim-planner": {
|
|
34660
34660
|
quality: "opus",
|
|
34661
34661
|
balanced: "opus",
|
|
34662
|
-
budget: "sonnet"
|
|
34662
|
+
budget: "sonnet",
|
|
34663
|
+
tokenburner: "opus"
|
|
34663
34664
|
},
|
|
34664
34665
|
"maxsim-roadmapper": {
|
|
34665
34666
|
quality: "opus",
|
|
34666
34667
|
balanced: "sonnet",
|
|
34667
|
-
budget: "sonnet"
|
|
34668
|
+
budget: "sonnet",
|
|
34669
|
+
tokenburner: "opus"
|
|
34668
34670
|
},
|
|
34669
34671
|
"maxsim-executor": {
|
|
34670
34672
|
quality: "opus",
|
|
34671
34673
|
balanced: "sonnet",
|
|
34672
|
-
budget: "sonnet"
|
|
34674
|
+
budget: "sonnet",
|
|
34675
|
+
tokenburner: "opus"
|
|
34673
34676
|
},
|
|
34674
34677
|
"maxsim-phase-researcher": {
|
|
34675
34678
|
quality: "opus",
|
|
34676
34679
|
balanced: "sonnet",
|
|
34677
|
-
budget: "haiku"
|
|
34680
|
+
budget: "haiku",
|
|
34681
|
+
tokenburner: "opus"
|
|
34678
34682
|
},
|
|
34679
34683
|
"maxsim-project-researcher": {
|
|
34680
34684
|
quality: "opus",
|
|
34681
34685
|
balanced: "sonnet",
|
|
34682
|
-
budget: "haiku"
|
|
34686
|
+
budget: "haiku",
|
|
34687
|
+
tokenburner: "opus"
|
|
34683
34688
|
},
|
|
34684
34689
|
"maxsim-research-synthesizer": {
|
|
34685
34690
|
quality: "sonnet",
|
|
34686
34691
|
balanced: "sonnet",
|
|
34687
|
-
budget: "haiku"
|
|
34692
|
+
budget: "haiku",
|
|
34693
|
+
tokenburner: "opus"
|
|
34688
34694
|
},
|
|
34689
34695
|
"maxsim-debugger": {
|
|
34690
34696
|
quality: "opus",
|
|
34691
34697
|
balanced: "sonnet",
|
|
34692
|
-
budget: "sonnet"
|
|
34698
|
+
budget: "sonnet",
|
|
34699
|
+
tokenburner: "opus"
|
|
34693
34700
|
},
|
|
34694
34701
|
"maxsim-codebase-mapper": {
|
|
34695
34702
|
quality: "sonnet",
|
|
34696
34703
|
balanced: "haiku",
|
|
34697
|
-
budget: "haiku"
|
|
34704
|
+
budget: "haiku",
|
|
34705
|
+
tokenburner: "opus"
|
|
34698
34706
|
},
|
|
34699
34707
|
"maxsim-verifier": {
|
|
34700
34708
|
quality: "sonnet",
|
|
34701
34709
|
balanced: "sonnet",
|
|
34702
|
-
budget: "haiku"
|
|
34710
|
+
budget: "haiku",
|
|
34711
|
+
tokenburner: "opus"
|
|
34703
34712
|
},
|
|
34704
34713
|
"maxsim-plan-checker": {
|
|
34705
34714
|
quality: "sonnet",
|
|
34706
34715
|
balanced: "sonnet",
|
|
34707
|
-
budget: "haiku"
|
|
34716
|
+
budget: "haiku",
|
|
34717
|
+
tokenburner: "opus"
|
|
34708
34718
|
},
|
|
34709
34719
|
"maxsim-integration-checker": {
|
|
34710
34720
|
quality: "sonnet",
|
|
34711
34721
|
balanced: "sonnet",
|
|
34712
|
-
budget: "haiku"
|
|
34722
|
+
budget: "haiku",
|
|
34723
|
+
tokenburner: "opus"
|
|
34713
34724
|
}
|
|
34714
34725
|
};
|
|
34715
34726
|
function output(result, raw, rawValue) {
|
|
@@ -37843,7 +37854,8 @@ var require_verify = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
37843
37854
|
const validProfiles = [
|
|
37844
37855
|
"quality",
|
|
37845
37856
|
"balanced",
|
|
37846
|
-
"budget"
|
|
37857
|
+
"budget",
|
|
37858
|
+
"tokenburner"
|
|
37847
37859
|
];
|
|
37848
37860
|
if (parsed.model_profile && !validProfiles.includes(parsed.model_profile)) addIssue("warning", "W004", `config.json: invalid model_profile "${parsed.model_profile}"`, `Valid values: ${validProfiles.join(", ")}`);
|
|
37849
37861
|
} catch (thrown) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: maxsim:set-profile
|
|
3
|
-
description: Switch model profile for MAXSIM agents (quality/balanced/budget)
|
|
3
|
+
description: Switch model profile for MAXSIM agents (quality/balanced/budget/tokenburner)
|
|
4
4
|
argument-hint: <profile>
|
|
5
5
|
allowed-tools:
|
|
6
6
|
- Read
|
|
@@ -12,7 +12,7 @@ allowed-tools:
|
|
|
12
12
|
Switch the model profile used by MAXSIM agents. Controls which Claude model each agent uses, balancing quality vs token spend.
|
|
13
13
|
|
|
14
14
|
Routes to the set-profile workflow which handles:
|
|
15
|
-
- Argument validation (quality/balanced/budget)
|
|
15
|
+
- Argument validation (quality/balanced/budget/tokenburner)
|
|
16
16
|
- Config file creation if missing
|
|
17
17
|
- Profile update in config.json
|
|
18
18
|
- Confirmation with model table display
|
|
@@ -12,9 +12,9 @@ Read all files referenced by the invoking prompt's execution_context before star
|
|
|
12
12
|
Validate argument:
|
|
13
13
|
|
|
14
14
|
```
|
|
15
|
-
if $ARGUMENTS.profile not in ["quality", "balanced", "budget"]:
|
|
15
|
+
if $ARGUMENTS.profile not in ["quality", "balanced", "budget", "tokenburner"]:
|
|
16
16
|
Error: Invalid profile "$ARGUMENTS.profile"
|
|
17
|
-
Valid profiles: quality, balanced, budget
|
|
17
|
+
Valid profiles: quality, balanced, budget, tokenburner
|
|
18
18
|
EXIT
|
|
19
19
|
```
|
|
20
20
|
</step>
|
|
@@ -68,6 +68,7 @@ Map profile names:
|
|
|
68
68
|
- quality: use "quality" column from MODEL_PROFILES
|
|
69
69
|
- balanced: use "balanced" column from MODEL_PROFILES
|
|
70
70
|
- budget: use "budget" column from MODEL_PROFILES
|
|
71
|
+
- tokenburner: use "tokenburner" column from MODEL_PROFILES (all opus)
|
|
71
72
|
</step>
|
|
72
73
|
|
|
73
74
|
</process>
|
package/dist/cli.cjs
CHANGED
|
@@ -146,57 +146,68 @@ var require_core = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
146
146
|
"maxsim-planner": {
|
|
147
147
|
quality: "opus",
|
|
148
148
|
balanced: "opus",
|
|
149
|
-
budget: "sonnet"
|
|
149
|
+
budget: "sonnet",
|
|
150
|
+
tokenburner: "opus"
|
|
150
151
|
},
|
|
151
152
|
"maxsim-roadmapper": {
|
|
152
153
|
quality: "opus",
|
|
153
154
|
balanced: "sonnet",
|
|
154
|
-
budget: "sonnet"
|
|
155
|
+
budget: "sonnet",
|
|
156
|
+
tokenburner: "opus"
|
|
155
157
|
},
|
|
156
158
|
"maxsim-executor": {
|
|
157
159
|
quality: "opus",
|
|
158
160
|
balanced: "sonnet",
|
|
159
|
-
budget: "sonnet"
|
|
161
|
+
budget: "sonnet",
|
|
162
|
+
tokenburner: "opus"
|
|
160
163
|
},
|
|
161
164
|
"maxsim-phase-researcher": {
|
|
162
165
|
quality: "opus",
|
|
163
166
|
balanced: "sonnet",
|
|
164
|
-
budget: "haiku"
|
|
167
|
+
budget: "haiku",
|
|
168
|
+
tokenburner: "opus"
|
|
165
169
|
},
|
|
166
170
|
"maxsim-project-researcher": {
|
|
167
171
|
quality: "opus",
|
|
168
172
|
balanced: "sonnet",
|
|
169
|
-
budget: "haiku"
|
|
173
|
+
budget: "haiku",
|
|
174
|
+
tokenburner: "opus"
|
|
170
175
|
},
|
|
171
176
|
"maxsim-research-synthesizer": {
|
|
172
177
|
quality: "sonnet",
|
|
173
178
|
balanced: "sonnet",
|
|
174
|
-
budget: "haiku"
|
|
179
|
+
budget: "haiku",
|
|
180
|
+
tokenburner: "opus"
|
|
175
181
|
},
|
|
176
182
|
"maxsim-debugger": {
|
|
177
183
|
quality: "opus",
|
|
178
184
|
balanced: "sonnet",
|
|
179
|
-
budget: "sonnet"
|
|
185
|
+
budget: "sonnet",
|
|
186
|
+
tokenburner: "opus"
|
|
180
187
|
},
|
|
181
188
|
"maxsim-codebase-mapper": {
|
|
182
189
|
quality: "sonnet",
|
|
183
190
|
balanced: "haiku",
|
|
184
|
-
budget: "haiku"
|
|
191
|
+
budget: "haiku",
|
|
192
|
+
tokenburner: "opus"
|
|
185
193
|
},
|
|
186
194
|
"maxsim-verifier": {
|
|
187
195
|
quality: "sonnet",
|
|
188
196
|
balanced: "sonnet",
|
|
189
|
-
budget: "haiku"
|
|
197
|
+
budget: "haiku",
|
|
198
|
+
tokenburner: "opus"
|
|
190
199
|
},
|
|
191
200
|
"maxsim-plan-checker": {
|
|
192
201
|
quality: "sonnet",
|
|
193
202
|
balanced: "sonnet",
|
|
194
|
-
budget: "haiku"
|
|
203
|
+
budget: "haiku",
|
|
204
|
+
tokenburner: "opus"
|
|
195
205
|
},
|
|
196
206
|
"maxsim-integration-checker": {
|
|
197
207
|
quality: "sonnet",
|
|
198
208
|
balanced: "sonnet",
|
|
199
|
-
budget: "haiku"
|
|
209
|
+
budget: "haiku",
|
|
210
|
+
tokenburner: "opus"
|
|
200
211
|
}
|
|
201
212
|
};
|
|
202
213
|
function output(result, raw, rawValue) {
|
|
@@ -3330,7 +3341,8 @@ var require_verify = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
3330
3341
|
const validProfiles = [
|
|
3331
3342
|
"quality",
|
|
3332
3343
|
"balanced",
|
|
3333
|
-
"budget"
|
|
3344
|
+
"budget",
|
|
3345
|
+
"tokenburner"
|
|
3334
3346
|
];
|
|
3335
3347
|
if (parsed.model_profile && !validProfiles.includes(parsed.model_profile)) addIssue("warning", "W004", `config.json: invalid model_profile "${parsed.model_profile}"`, `Valid values: ${validProfiles.join(", ")}`);
|
|
3336
3348
|
} catch (thrown) {
|