codemuster 0.3.3 → 0.3.4
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 +12 -0
- package/README.md +4 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ 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.4 - 2026-09-20
|
|
8
|
+
|
|
9
|
+
- `codemuster fix` no longer stops the whole run when one file is too large for a
|
|
10
|
+
whole-file pack. Previously a single oversized file at the head of the queue
|
|
11
|
+
ended the run with nothing repaired. That file is now recorded as skipped with
|
|
12
|
+
its reason, every other file is still repaired and committed, the summary
|
|
13
|
+
reports the skipped count, and the exit code stays zero. Raise
|
|
14
|
+
`slice_token_budget` in `.codemuster/config.json` or split the file and the next
|
|
15
|
+
`fix` picks it up, with no extra flag and no rescan.
|
|
16
|
+
- A file whose repair already completed is revisited when the audit later confirms
|
|
17
|
+
a finding in it that the repair never answered.
|
|
18
|
+
|
|
7
19
|
## 0.3.3 - 2026-09-19
|
|
8
20
|
|
|
9
21
|
- 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.4",
|
|
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.4",
|
|
41
|
+
"@codemuster/darwin-x64": "0.3.4",
|
|
42
|
+
"@codemuster/linux-arm64": "0.3.4",
|
|
43
|
+
"@codemuster/linux-x64": "0.3.4",
|
|
44
|
+
"@codemuster/win32-arm64": "0.3.4",
|
|
45
|
+
"@codemuster/win32-x64": "0.3.4"
|
|
46
46
|
}
|
|
47
47
|
}
|