codemuster 0.3.0 → 0.3.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.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,37 @@ 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.3 - 2026-09-19
8
+
9
+ - Show the actual Codex model and thinking level before agent work by reading
10
+ effective repository settings. Explicit flags override those settings, and all
11
+ workers use the values shown. If lookup fails, request explicit model and effort
12
+ instead of showing unknown defaults.
13
+ - Forward launcher-only cancellation on Unix while preserving graceful Windows
14
+ Ctrl+C handling. Improve subprocess cleanup and retain isolated repair worktrees
15
+ when a worker fails.
16
+ - Correct C# and TypeScript mapping for inherited actions, linked documents,
17
+ standalone projects, operators and method-ID collisions; surface TypeScript
18
+ configuration diagnostics.
19
+ - Strengthen configuration validation, glob matching, audit-pack code fences,
20
+ stale dependency handling and per-target UX evidence requirements.
21
+ - Improve report layout, protect build output during package staging, and fix
22
+ test-process and temporary-file cleanup.
23
+
24
+ Use `npm install -g codemuster@0.3.3` to receive the launcher changes as well as
25
+ the native binary.
26
+
27
+ Version 0.3.2 was tagged but not published; its release was stopped for the
28
+ Windows cancellation correction.
29
+
30
+ ## 0.3.1 - 2026-09-19
31
+
32
+ - Add a compact terminal banner, highlighted provider/model/thinking settings and
33
+ countdown bar before agent commands. Add colored audit progress counts and an
34
+ elapsed activity indicator for intelligent configuration, with explicit results.
35
+ - Respect `NO_COLOR`, keep redirected/CI output plain, and disable animation and
36
+ the countdown for `TERM=dumb` terminals.
37
+
7
38
  ## 0.3.0 - 2026-09-19
8
39
 
9
40
  - Show the intervening release notes after `codemuster update`.
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
- // The terminal already delivers Ctrl+C to the build, which cancels cleanly; the launcher only has to outlive it.
240
- const handlers = ['SIGINT', 'SIGTERM', 'SIGHUP'].map((signal) => [signal, () => signal !== 'SIGINT' && child.kill(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.0",
3
+ "version": "0.3.3",
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.0",
41
- "@codemuster/darwin-x64": "0.3.0",
42
- "@codemuster/linux-arm64": "0.3.0",
43
- "@codemuster/linux-x64": "0.3.0",
44
- "@codemuster/win32-arm64": "0.3.0",
45
- "@codemuster/win32-x64": "0.3.0"
40
+ "@codemuster/darwin-arm64": "0.3.3",
41
+ "@codemuster/darwin-x64": "0.3.3",
42
+ "@codemuster/linux-arm64": "0.3.3",
43
+ "@codemuster/linux-x64": "0.3.3",
44
+ "@codemuster/win32-arm64": "0.3.3",
45
+ "@codemuster/win32-x64": "0.3.3"
46
46
  }
47
47
  }