codemuster 0.3.1 → 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 +35 -0
- package/README.md +4 -0
- package/lib/launcher.js +4 -2
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,41 @@ 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
|
+
|
|
19
|
+
## 0.3.3 - 2026-09-19
|
|
20
|
+
|
|
21
|
+
- Show the actual Codex model and thinking level before agent work by reading
|
|
22
|
+
effective repository settings. Explicit flags override those settings, and all
|
|
23
|
+
workers use the values shown. If lookup fails, request explicit model and effort
|
|
24
|
+
instead of showing unknown defaults.
|
|
25
|
+
- Forward launcher-only cancellation on Unix while preserving graceful Windows
|
|
26
|
+
Ctrl+C handling. Improve subprocess cleanup and retain isolated repair worktrees
|
|
27
|
+
when a worker fails.
|
|
28
|
+
- Correct C# and TypeScript mapping for inherited actions, linked documents,
|
|
29
|
+
standalone projects, operators and method-ID collisions; surface TypeScript
|
|
30
|
+
configuration diagnostics.
|
|
31
|
+
- Strengthen configuration validation, glob matching, audit-pack code fences,
|
|
32
|
+
stale dependency handling and per-target UX evidence requirements.
|
|
33
|
+
- Improve report layout, protect build output during package staging, and fix
|
|
34
|
+
test-process and temporary-file cleanup.
|
|
35
|
+
|
|
36
|
+
Use `npm install -g codemuster@0.3.3` to receive the launcher changes as well as
|
|
37
|
+
the native binary.
|
|
38
|
+
|
|
39
|
+
Version 0.3.2 was tagged but not published; its release was stopped for the
|
|
40
|
+
Windows cancellation correction.
|
|
41
|
+
|
|
7
42
|
## 0.3.1 - 2026-09-19
|
|
8
43
|
|
|
9
44
|
- Add a compact terminal banner, highlighted provider/model/thinking settings and
|
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/lib/launcher.js
CHANGED
|
@@ -236,8 +236,10 @@ async function update({ registry, stateDir, platform, arch, currentVersion, now
|
|
|
236
236
|
function runBuild(binary, args) {
|
|
237
237
|
return new Promise((resolve, reject) => {
|
|
238
238
|
const child = childProcess.spawn(binary, args, { stdio: 'inherit' });
|
|
239
|
-
//
|
|
240
|
-
const handlers = ['SIGINT', 'SIGTERM', 'SIGHUP'].map((signal) => [signal, () =>
|
|
239
|
+
// Windows delivers Ctrl+C to the console group; forwarding it would force-kill the native build.
|
|
240
|
+
const handlers = ['SIGINT', 'SIGTERM', 'SIGHUP'].map((signal) => [signal, () => {
|
|
241
|
+
if (signal !== 'SIGINT' || process.platform !== 'win32') child.kill(signal);
|
|
242
|
+
}]);
|
|
241
243
|
handlers.forEach(([signal, handler]) => process.on(signal, handler));
|
|
242
244
|
const done = () => handlers.forEach(([signal, handler]) => process.off(signal, handler));
|
|
243
245
|
child.on('error', (error) => {
|
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
|
}
|