maxsimcli 4.0.0 → 4.0.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/README.md +43 -17
- package/dist/assets/CHANGELOG.md +53 -0
- package/dist/mcp-server.cjs +22489 -32
- package/dist/mcp-server.cjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ MAXSIM solves this by offloading work to fresh-context subagents, each with a si
|
|
|
23
23
|
npx maxsimcli@latest
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
**Works with Claude Code
|
|
26
|
+
**Works with Claude Code — on Mac, Windows, and Linux.**
|
|
27
27
|
|
|
28
28
|
> ⚠️ **Early Alpha** — APIs, commands, and workflows may change between releases. Expect rough edges.
|
|
29
29
|
|
|
@@ -75,7 +75,7 @@ That's the loop. Discuss → Plan → Execute → Verify. Each phase is isolated
|
|
|
75
75
|
|
|
76
76
|
## How It Works
|
|
77
77
|
|
|
78
|
-
MAXSIM installs
|
|
78
|
+
MAXSIM installs 32 slash commands, 11 skills, and an MCP server into Claude Code. Each command is a structured workflow that spawns specialized subagents with fresh context.
|
|
79
79
|
|
|
80
80
|
### The Core Loop
|
|
81
81
|
|
|
@@ -251,27 +251,18 @@ npx maxsimcli@latest
|
|
|
251
251
|
```
|
|
252
252
|
|
|
253
253
|
The installer prompts you to choose:
|
|
254
|
-
1. **
|
|
255
|
-
2. **Location** — Global (all projects) or local (current project only)
|
|
254
|
+
1. **Location** — Global (all projects) or local (current project only)
|
|
256
255
|
|
|
257
|
-
Verify with:
|
|
258
|
-
- Claude Code / Gemini: `/maxsim:help`
|
|
259
|
-
- OpenCode: `/maxsim-help`
|
|
260
|
-
- Codex: `$maxsim-help`
|
|
256
|
+
Verify with: `/maxsim:help`
|
|
261
257
|
|
|
262
258
|
<details>
|
|
263
259
|
<summary><strong>Non-interactive Install (Docker, CI, Scripts)</strong></summary>
|
|
264
260
|
|
|
265
261
|
```bash
|
|
266
|
-
npx maxsimcli --claude --global #
|
|
267
|
-
npx maxsimcli --
|
|
268
|
-
npx maxsimcli --gemini --global # Gemini CLI → ~/.gemini/
|
|
269
|
-
npx maxsimcli --codex --global # Codex → ~/.codex/
|
|
270
|
-
npx maxsimcli --all --global # All runtimes
|
|
262
|
+
npx maxsimcli --claude --global # Global install → ~/.claude/
|
|
263
|
+
npx maxsimcli --claude --local # Project-scoped install → ./.claude/
|
|
271
264
|
```
|
|
272
265
|
|
|
273
|
-
Add `--local` instead of `--global` for project-scoped installs.
|
|
274
|
-
|
|
275
266
|
</details>
|
|
276
267
|
|
|
277
268
|
---
|
|
@@ -306,7 +297,7 @@ Project settings live in `.planning/config.json`, created during `/maxsim:new-pr
|
|
|
306
297
|
|
|
307
298
|
### Model Profiles
|
|
308
299
|
|
|
309
|
-
MAXSIM has **4 model profiles** that control which Claude model each of the
|
|
300
|
+
MAXSIM has **4 model profiles** that control which Claude model each of the 13 specialized agents uses:
|
|
310
301
|
|
|
311
302
|
| Profile | Planners & Executors | Researchers | Orchestrators |
|
|
312
303
|
|---------|---------------------|-------------|---------------|
|
|
@@ -356,7 +347,7 @@ The context bar shows a 10-segment indicator that turns red and blinks above 95%
|
|
|
356
347
|
|
|
357
348
|
## Agents
|
|
358
349
|
|
|
359
|
-
|
|
350
|
+
13 specialized subagents, each with fresh context and a single responsibility:
|
|
360
351
|
|
|
361
352
|
| Agent | Role |
|
|
362
353
|
|-------|------|
|
|
@@ -367,6 +358,8 @@ The context bar shows a 10-segment indicator that turns red and blinks above 95%
|
|
|
367
358
|
| `maxsim-roadmapper` | Creates project roadmaps with phase breakdown |
|
|
368
359
|
| `maxsim-plan-checker` | Verifies plans will achieve the phase goal |
|
|
369
360
|
| `maxsim-executor` | Implements plans with atomic commits |
|
|
361
|
+
| `maxsim-spec-reviewer` | Reviews implementation for spec compliance after execution |
|
|
362
|
+
| `maxsim-code-reviewer` | Reviews implementation for code quality and patterns |
|
|
370
363
|
| `maxsim-verifier` | Goal-backward verification after execution |
|
|
371
364
|
| `maxsim-debugger` | Scientific-method debugging with persistent state |
|
|
372
365
|
| `maxsim-integration-checker` | Verifies cross-phase integration and E2E flows |
|
|
@@ -374,6 +367,39 @@ The context bar shows a 10-segment indicator that turns red and blinks above 95%
|
|
|
374
367
|
|
|
375
368
|
---
|
|
376
369
|
|
|
370
|
+
## Skills
|
|
371
|
+
|
|
372
|
+
MAXSIM includes 11 built-in skills that enforce workflow constraints and best practices. Skills auto-trigger based on context — they're not optional guidelines, they're active workflow enforcement.
|
|
373
|
+
|
|
374
|
+
| Skill | Description |
|
|
375
|
+
|-------|-------------|
|
|
376
|
+
| `batch-worktree` | Run parallel tasks in isolated git worktrees |
|
|
377
|
+
| `brainstorming` | Structured ideation and feature exploration |
|
|
378
|
+
| `code-review` | Automated code review with quality checks |
|
|
379
|
+
| `memory-management` | Persistent memory across sessions |
|
|
380
|
+
| `roadmap-writing` | Guided roadmap and requirements authoring |
|
|
381
|
+
| `sdd` | Spec-driven development workflow |
|
|
382
|
+
| `simplify` | Review changed code for reuse, quality, and efficiency |
|
|
383
|
+
| `systematic-debugging` | Root-cause investigation before attempting fixes |
|
|
384
|
+
| `tdd` | Test-driven development — failing test before implementation |
|
|
385
|
+
| `using-maxsim` | Guide for effective MAXSIM usage |
|
|
386
|
+
| `verification-before-completion` | Verify work before claiming completion |
|
|
387
|
+
|
|
388
|
+
---
|
|
389
|
+
|
|
390
|
+
## MCP Server
|
|
391
|
+
|
|
392
|
+
MAXSIM installs an MCP (Model Context Protocol) server that exposes project tools directly to Claude Code. The server is auto-configured during installation via `.mcp.json`.
|
|
393
|
+
|
|
394
|
+
**Exposed tools:**
|
|
395
|
+
- **Phase operations** — list, add, complete, and remove phases
|
|
396
|
+
- **State management** — read/update STATE.md (decisions, blockers, metrics)
|
|
397
|
+
- **Todo operations** — create, list, and complete todos
|
|
398
|
+
|
|
399
|
+
The MCP server runs as a stdio process managed by Claude Code — no manual startup needed.
|
|
400
|
+
|
|
401
|
+
---
|
|
402
|
+
|
|
377
403
|
## Contributing
|
|
378
404
|
|
|
379
405
|
MAXSIM is open source and contributions are welcome.
|
package/dist/assets/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,56 @@
|
|
|
1
|
+
# [4.0.0](https://github.com/maystudios/maxsimcli/compare/v3.12.0...v4.0.0) (2026-03-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
* feat!: remove non-Claude adapters and simplify install to Claude-only ([e640107](https://github.com/maystudios/maxsimcli/commit/e640107bc7d66fd6b6a22778fc3f5aa2f720f1ae))
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* **core:** add actionable context to catch blocks across core modules ([3bda2eb](https://github.com/maystudios/maxsimcli/commit/3bda2eb3767500a2500cd4ce394af90a79ef1c8a))
|
|
10
|
+
* **core:** replace Unix find with cross-platform fs walk ([#22](https://github.com/maystudios/maxsimcli/issues/22)) ([8dddae4](https://github.com/maystudios/maxsimcli/commit/8dddae4f2af7fa2c0e398025779c4fcc85389244))
|
|
11
|
+
* **core:** replace Unix find with cross-platform fs walk for Windows compatibility ([b121ae6](https://github.com/maystudios/maxsimcli/commit/b121ae68d5d38733960e9ff72c2f7a982f54d739))
|
|
12
|
+
* **dashboard:** increase health check timeout to 10s and verify multi-project isolation ([bee185c](https://github.com/maystudios/maxsimcli/commit/bee185c91e730896040afef63eaac5d782cefc28))
|
|
13
|
+
* **install:** add .mcp.json backup and install recovery safety ([77eb4fe](https://github.com/maystudios/maxsimcli/commit/77eb4feeafd141eca94349f19615fcee97bb6718))
|
|
14
|
+
* **install:** move skills install path from agents/skills/ to skills/ ([436712a](https://github.com/maystudios/maxsimcli/commit/436712a4adee7c86ae9480a6aa93e52ff017338a))
|
|
15
|
+
* **install:** remove dead isCodex reference and reject deprecated runtime flags ([#21](https://github.com/maystudios/maxsimcli/issues/21)) ([9a4af80](https://github.com/maystudios/maxsimcli/commit/9a4af80c5543fcd69970fbac4f9c71c9f5821388))
|
|
16
|
+
* resolve duplicate CmdResult and update tests for CmdResult pattern ([1e02d4b](https://github.com/maystudios/maxsimcli/commit/1e02d4b7df95d3833fd92f3413870a18ff1be3d4))
|
|
17
|
+
* **state:** harden STATE.md parsing for format drift resilience ([9881d1c](https://github.com/maystudios/maxsimcli/commit/9881d1c9f6b1810aa5838f651aa16f9bd87cdf5d))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* add artefakte system, context loader, and start command (Units 1, 9, 10) ([dbbc2b4](https://github.com/maystudios/maxsimcli/commit/dbbc2b4d35412f9b51e100a9aa2bd027dcd4e398))
|
|
23
|
+
* add brainstorming and roadmap-writing skills (Units 7, 8) ([1b8c64c](https://github.com/maystudios/maxsimcli/commit/1b8c64c2c5dec6f2873df1cc79a5002b176f7e96))
|
|
24
|
+
* async I/O for hot-path commands and phase-list pagination (Phase 10) ([19e7741](https://github.com/maystudios/maxsimcli/commit/19e7741c8df1567a08f59282235b217855d4cd85))
|
|
25
|
+
* **execution:** wire Execute-Review-Simplify-Review cycle into execution pipeline ([7a6a998](https://github.com/maystudios/maxsimcli/commit/7a6a998aeb707288930d99e36c06ba0cac23dfae))
|
|
26
|
+
* **mcp:** complete E2E Q&A routing between Claude Code and dashboard ([ac3115a](https://github.com/maystudios/maxsimcli/commit/ac3115a7e120ae9b1e597ae6f9afe664449640a2))
|
|
27
|
+
* rewrite workflows with thinking-partner behavior and artefakte integration (Units 2-6) ([f44b4f4](https://github.com/maystudios/maxsimcli/commit/f44b4f4589df9f94fc3b927a88e5683c2b5bbf2d))
|
|
28
|
+
* **skills:** add batch-worktree and sdd skill templates ([84997be](https://github.com/maystudios/maxsimcli/commit/84997be21443de3213636f862c480ca32caed254))
|
|
29
|
+
* **skills:** add skill-list, skill-install, skill-update CLI commands ([d848acd](https://github.com/maystudios/maxsimcli/commit/d848acd678e19a4eb1bf947e15a972786a801ef0))
|
|
30
|
+
* **skills:** register using-maxsim skill for auto-trigger at conversation start ([d5f0a50](https://github.com/maystudios/maxsimcli/commit/d5f0a50ab625655cf1d3e53eebbb86661b011bf3))
|
|
31
|
+
* unified dashboard mode with enhanced MCP Q&A and multi-project support (Units 11-14) ([b26205e](https://github.com/maystudios/maxsimcli/commit/b26205ebffb1770daa6f2bbb82ced801af8800eb))
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### BREAKING CHANGES
|
|
35
|
+
|
|
36
|
+
* Remove OpenCode, Gemini, and Codex runtime support.
|
|
37
|
+
MAXSIM v2.0 is Claude Code-only.
|
|
38
|
+
|
|
39
|
+
- Delete adapter files: opencode.ts, gemini.ts, codex.ts
|
|
40
|
+
- Delete transforms/: tool-maps.ts, frontmatter.ts, content.ts
|
|
41
|
+
- Simplify adapter registry to export only claudeAdapter
|
|
42
|
+
- Narrow RuntimeName type to 'claude' literal
|
|
43
|
+
- Narrow AdapterConfig.commandStructure to 'nested' only
|
|
44
|
+
- Remove --opencode, --gemini, --codex, --both, --all CLI flags
|
|
45
|
+
- Remove promptRuntime() multi-runtime selector
|
|
46
|
+
- Remove copyFlattenedCommands() and copyCommandsAsCodexSkills()
|
|
47
|
+
- Remove configureOpencodePermissions() and parseJsonc()
|
|
48
|
+
- Remove non-Claude branches from install, uninstall, hooks, manifest
|
|
49
|
+
- Simplify shared.ts to use claudeAdapter directly (no adapter map)
|
|
50
|
+
- Update help text and banner for Claude-only messaging
|
|
51
|
+
|
|
52
|
+
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
|
53
|
+
|
|
1
54
|
# [3.12.0](https://github.com/maystudios/maxsimcli/compare/v3.11.0...v3.12.0) (2026-03-01)
|
|
2
55
|
|
|
3
56
|
|