codemuster 0.3.0 → 0.3.1
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 +8 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ 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.1 - 2026-09-19
|
|
8
|
+
|
|
9
|
+
- Add a compact terminal banner, highlighted provider/model/thinking settings and
|
|
10
|
+
countdown bar before agent commands. Add colored audit progress counts and an
|
|
11
|
+
elapsed activity indicator for intelligent configuration, with explicit results.
|
|
12
|
+
- Respect `NO_COLOR`, keep redirected/CI output plain, and disable animation and
|
|
13
|
+
the countdown for `TERM=dumb` terminals.
|
|
14
|
+
|
|
7
15
|
## 0.3.0 - 2026-09-19
|
|
8
16
|
|
|
9
17
|
- Show the intervening release notes after `codemuster update`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codemuster",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
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.1",
|
|
41
|
+
"@codemuster/darwin-x64": "0.3.1",
|
|
42
|
+
"@codemuster/linux-arm64": "0.3.1",
|
|
43
|
+
"@codemuster/linux-x64": "0.3.1",
|
|
44
|
+
"@codemuster/win32-arm64": "0.3.1",
|
|
45
|
+
"@codemuster/win32-x64": "0.3.1"
|
|
46
46
|
}
|
|
47
47
|
}
|