maxsimcli 4.2.1 → 4.2.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.
- package/README.md +19 -8
- package/dist/assets/CHANGELOG.md +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -282,6 +282,7 @@ Project settings live in `.planning/config.json`, created during `/maxsim:new-pr
|
|
|
282
282
|
"model_profile": "balanced",
|
|
283
283
|
"branching_strategy": "none",
|
|
284
284
|
"commit_docs": true,
|
|
285
|
+
"search_gitignored": false,
|
|
285
286
|
"research": true,
|
|
286
287
|
"plan_checker": true,
|
|
287
288
|
"verifier": true,
|
|
@@ -295,6 +296,7 @@ Project settings live in `.planning/config.json`, created during `/maxsim:new-pr
|
|
|
295
296
|
| `model_profile` | `quality` \| `balanced` \| `budget` \| `tokenburner` | `balanced` | Which models agents use |
|
|
296
297
|
| `branching_strategy` | `none` \| `phase` \| `milestone` | `none` | Git branch creation per phase or milestone |
|
|
297
298
|
| `commit_docs` | boolean | `true` | Commit documentation changes separately |
|
|
299
|
+
| `search_gitignored` | boolean | `false` | Include gitignored files in codebase searches |
|
|
298
300
|
| `research` | boolean | `true` | Enable research agent before planning |
|
|
299
301
|
| `plan_checker` | boolean | `true` | Enable plan-checker agent before execution |
|
|
300
302
|
| `verifier` | boolean | `true` | Enable verifier agent after execution |
|
|
@@ -303,14 +305,23 @@ Project settings live in `.planning/config.json`, created during `/maxsim:new-pr
|
|
|
303
305
|
|
|
304
306
|
### Model Profiles
|
|
305
307
|
|
|
306
|
-
MAXSIM has **4 model profiles** that control which Claude model each of the
|
|
307
|
-
|
|
308
|
-
|
|
|
309
|
-
|
|
310
|
-
|
|
|
311
|
-
|
|
|
312
|
-
|
|
|
313
|
-
|
|
|
308
|
+
MAXSIM has **4 model profiles** that control which Claude model each of the 11 profiled agents uses:
|
|
309
|
+
|
|
310
|
+
| Agent | `quality` | `balanced` | `budget` | `tokenburner` |
|
|
311
|
+
|-------|-----------|------------|----------|---------------|
|
|
312
|
+
| Planner | Opus | Opus | Sonnet | Opus |
|
|
313
|
+
| Roadmapper | Opus | Sonnet | Sonnet | Opus |
|
|
314
|
+
| Executor | Opus | Sonnet | Sonnet | Opus |
|
|
315
|
+
| Debugger | Opus | Sonnet | Sonnet | Opus |
|
|
316
|
+
| Phase Researcher | Opus | Sonnet | Haiku | Opus |
|
|
317
|
+
| Project Researcher | Opus | Sonnet | Haiku | Opus |
|
|
318
|
+
| Research Synthesizer | Sonnet | Sonnet | Haiku | Opus |
|
|
319
|
+
| Codebase Mapper | Sonnet | Haiku | Haiku | Opus |
|
|
320
|
+
| Verifier | Sonnet | Sonnet | Haiku | Opus |
|
|
321
|
+
| Plan Checker | Sonnet | Sonnet | Haiku | Opus |
|
|
322
|
+
| Integration Checker | Sonnet | Sonnet | Haiku | Opus |
|
|
323
|
+
|
|
324
|
+
The remaining 2 agents (Spec Reviewer and Code Reviewer) are spawned by the Executor and inherit its model.
|
|
314
325
|
|
|
315
326
|
> `tokenburner` assigns Opus to every single agent. Use it when cost is no concern and you want maximum quality end-to-end.
|
|
316
327
|
|
package/dist/assets/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [4.2.1](https://github.com/maystudios/maxsimcli/compare/v4.2.0...v4.2.1) (2026-03-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **dashboard:** execute commands on button click instead of just copying ([ab10ff9](https://github.com/maystudios/maxsimcli/commit/ab10ff9bcb6d74695d52cb1430e5f99485484652))
|
|
7
|
+
|
|
1
8
|
# [4.2.0](https://github.com/maystudios/maxsimcli/compare/v4.1.0...v4.2.0) (2026-03-02)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED