codemuster 0.3.3 → 0.3.5
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/CHANGELOG.md +27 -0
- package/README.md +4 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,33 @@ User-visible changes by released version. Add upcoming changes under Unreleased;
|
|
|
4
4
|
move them to a dated version heading before publishing. Historical entries below
|
|
5
5
|
start with 0.2.8.
|
|
6
6
|
|
|
7
|
+
## 0.3.5 - 2026-09-21
|
|
8
|
+
|
|
9
|
+
- A repair that cannot be integrated no longer ends the whole run. Previously one
|
|
10
|
+
such file cancelled every other worker mid-call, so a parallel `fix` could pay
|
|
11
|
+
for many agent calls and keep no repairs. The run now stops starting new
|
|
12
|
+
repairs, lets the calls already running finish, and retains each of those
|
|
13
|
+
repairs unapplied in its own worker checkout with the path reported, so they
|
|
14
|
+
can still be recovered. The file that could not be integrated is reported and
|
|
15
|
+
the command exits non-zero.
|
|
16
|
+
- The message for a file changed outside the allowed scope during validation no
|
|
17
|
+
longer blames the configured test command. CodeMuster compares the checkout
|
|
18
|
+
before and after validation, so it now says the change came either from the
|
|
19
|
+
test command or from something else using the same checkout. Running `fix`
|
|
20
|
+
while another tool or agent writes to the same checkout is what produces this.
|
|
21
|
+
|
|
22
|
+
## 0.3.4 - 2026-09-20
|
|
23
|
+
|
|
24
|
+
- `codemuster fix` no longer stops the whole run when one file is too large for a
|
|
25
|
+
whole-file pack. Previously a single oversized file at the head of the queue
|
|
26
|
+
ended the run with nothing repaired. That file is now recorded as skipped with
|
|
27
|
+
its reason, every other file is still repaired and committed, the summary
|
|
28
|
+
reports the skipped count, and the exit code stays zero. Raise
|
|
29
|
+
`slice_token_budget` in `.codemuster/config.json` or split the file and the next
|
|
30
|
+
`fix` picks it up, with no extra flag and no rescan.
|
|
31
|
+
- A file whose repair already completed is revisited when the audit later confirms
|
|
32
|
+
a finding in it that the repair never answered.
|
|
33
|
+
|
|
7
34
|
## 0.3.3 - 2026-09-19
|
|
8
35
|
|
|
9
36
|
- Show the actual Codex model and thinking level before agent work by reading
|
package/README.md
CHANGED
|
@@ -149,6 +149,10 @@ are rejected and reported with a retained worker path. The untracked Impeccable
|
|
|
149
149
|
excluded from the patch and does not block it. Without `test_command`, CodeMuster warns that
|
|
150
150
|
it is accepting fixes without running your tests.
|
|
151
151
|
|
|
152
|
+
A file whose whole-file pack exceeds `slice_token_budget` is skipped with its reason, counted in the
|
|
153
|
+
run summary, and left unanalyzed without spending an attempt; the other files are still fixed.
|
|
154
|
+
Raise `slice_token_budget` or split the file and the next `fix` picks it up with no flag.
|
|
155
|
+
|
|
152
156
|
Retry declines through `fix --retry-declined`. For a repair spanning related files, select an
|
|
153
157
|
exact primary `--path` and `--include-related path/to/caller,path/to/catalog -j 1`; all paths
|
|
154
158
|
must be existing tracked files. The worker stays inside that explicit scope.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codemuster",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "CodeMuster: full-coverage codebase audits with a coverage number, driven by your coding agent through one skill.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"author": "Tim Carter",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"test": "node --test test/launcher.test.js test/plugin.test.js test/release.test.js"
|
|
38
38
|
},
|
|
39
39
|
"optionalDependencies": {
|
|
40
|
-
"@codemuster/darwin-arm64": "0.3.
|
|
41
|
-
"@codemuster/darwin-x64": "0.3.
|
|
42
|
-
"@codemuster/linux-arm64": "0.3.
|
|
43
|
-
"@codemuster/linux-x64": "0.3.
|
|
44
|
-
"@codemuster/win32-arm64": "0.3.
|
|
45
|
-
"@codemuster/win32-x64": "0.3.
|
|
40
|
+
"@codemuster/darwin-arm64": "0.3.5",
|
|
41
|
+
"@codemuster/darwin-x64": "0.3.5",
|
|
42
|
+
"@codemuster/linux-arm64": "0.3.5",
|
|
43
|
+
"@codemuster/linux-x64": "0.3.5",
|
|
44
|
+
"@codemuster/win32-arm64": "0.3.5",
|
|
45
|
+
"@codemuster/win32-x64": "0.3.5"
|
|
46
46
|
}
|
|
47
47
|
}
|