maxsimcli 4.15.1 → 4.15.3

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,17 @@
1
+ ## [4.15.2](https://github.com/maystudios/maxsimcli/compare/v4.15.1...v4.15.2) (2026-03-11)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **workflows:** add missing GitHub fields to init workflow Parse JSON instructions ([539487b](https://github.com/maystudios/maxsimcli/commit/539487bb0bc59e818cab72e1e0969f9c2e69760a))
7
+
8
+ ## [4.15.1](https://github.com/maystudios/maxsimcli/compare/v4.15.0...v4.15.1) (2026-03-11)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **workflows:** add missing "In Review" board transition before verification ([70031e6](https://github.com/maystudios/maxsimcli/commit/70031e6691334834281cc74d94f0985d6bc531d2))
14
+
1
15
  # [4.15.0](https://github.com/maystudios/maxsimcli/compare/v4.14.0...v4.15.0) (2026-03-11)
2
16
 
3
17
 
@@ -39,11 +39,15 @@ Check if `--auto` flag is present in $ARGUMENTS.
39
39
 
40
40
  **MANDATORY FIRST STEP — Execute these checks before ANY user interaction:**
41
41
 
42
+ **If `INIT_CONTEXT` was already loaded by the router** (the init.md workflow runs this before delegating), use that JSON directly — do NOT re-run the CLI command.
43
+
44
+ **Otherwise**, run:
45
+
42
46
  ```bash
43
47
  INIT=$(node ~/.claude/maxsim/bin/maxsim-tools.cjs init init-existing)
44
48
  ```
45
49
 
46
- Parse JSON for: `researcher_model`, `synthesizer_model`, `roadmapper_model`, `mapper_model`, `commit_docs`, `project_exists`, `planning_exists`, `planning_files`, `has_codebase_map`, `has_existing_code`, `has_package_file`, `has_git`, `has_readme`, `conflict_detected`, `existing_file_count`, `brave_search_available`, `parallelization`, `project_path`, `codebase_dir`.
50
+ Parse JSON for: `researcher_model`, `synthesizer_model`, `roadmapper_model`, `mapper_model`, `commit_docs`, `project_exists`, `planning_exists`, `planning_files`, `has_codebase_map`, `has_existing_code`, `has_package_file`, `has_git`, `has_readme`, `conflict_detected`, `existing_file_count`, `brave_search_available`, `parallelization`, `project_path`, `codebase_dir`, `github_ready`, `has_github_remote`, `gh_authenticated`.
47
51
 
48
52
  **If `has_existing_code` is false AND `has_package_file` is false:**
49
53
 
@@ -72,7 +72,16 @@ Display:
72
72
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
73
73
  ```
74
74
 
75
- Delegate to @./workflows/new-project.md -- execute the full new-project workflow end-to-end.
75
+ **CRITICAL Run init context BEFORE delegating:**
76
+
77
+ ```bash
78
+ INIT_CONTEXT=$(node ~/.claude/maxsim/bin/maxsim-tools.cjs init new-project)
79
+ echo "$INIT_CONTEXT"
80
+ ```
81
+
82
+ Save this JSON output — the sub-workflow will use it as `INIT_CONTEXT` and skip its own init call.
83
+
84
+ Now delegate to @./workflows/new-project.md — execute the full new-project workflow end-to-end. The `INIT_CONTEXT` JSON is already loaded; the sub-workflow will detect this and skip Step 1's CLI call.
76
85
 
77
86
  Pass through:
78
87
  - `--auto` flag if set
@@ -96,7 +105,16 @@ Display:
96
105
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
97
106
  ```
98
107
 
99
- Delegate to @./workflows/init-existing.md -- execute the full init-existing workflow end-to-end.
108
+ **CRITICAL Run init context BEFORE delegating:**
109
+
110
+ ```bash
111
+ INIT_CONTEXT=$(node ~/.claude/maxsim/bin/maxsim-tools.cjs init init-existing)
112
+ echo "$INIT_CONTEXT"
113
+ ```
114
+
115
+ Save this JSON output — the sub-workflow will use it as `INIT_CONTEXT` and skip its own init call.
116
+
117
+ Now delegate to @./workflows/init-existing.md — execute the full init-existing workflow end-to-end. The `INIT_CONTEXT` JSON is already loaded; the sub-workflow will detect this and skip Step 1's CLI call.
100
118
 
101
119
  Pass through:
102
120
  - `--auto` flag if set
@@ -52,11 +52,15 @@ The document should describe what you want to build.
52
52
 
53
53
  **MANDATORY FIRST STEP — Execute these checks before ANY user interaction:**
54
54
 
55
+ **If `INIT_CONTEXT` was already loaded by the router** (the init.md workflow runs this before delegating), use that JSON directly — do NOT re-run the CLI command.
56
+
57
+ **Otherwise**, run:
58
+
55
59
  ```bash
56
60
  INIT=$(node ~/.claude/maxsim/bin/maxsim-tools.cjs init new-project)
57
61
  ```
58
62
 
59
- Parse JSON for: `researcher_model`, `synthesizer_model`, `roadmapper_model`, `commit_docs`, `project_exists`, `has_codebase_map`, `planning_exists`, `has_existing_code`, `has_package_file`, `is_brownfield`, `needs_codebase_map`, `has_git`, `project_path`.
63
+ Parse JSON for: `researcher_model`, `synthesizer_model`, `roadmapper_model`, `commit_docs`, `project_exists`, `has_codebase_map`, `planning_exists`, `has_existing_code`, `has_package_file`, `is_brownfield`, `needs_codebase_map`, `has_git`, `project_path`, `github_ready`, `has_github_remote`, `gh_authenticated`.
60
64
 
61
65
  **If `project_exists` is true:** Error — project already initialized. Use `/maxsim:progress`.
62
66
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "maxsimcli",
3
- "version": "4.15.1",
3
+ "version": "4.15.3",
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": {