@codemuster/win32-x64 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 +31 -0
- package/bin/CodeMuster.Application.dll +0 -0
- package/bin/CodeMuster.Application.xml +66 -0
- package/bin/CodeMuster.Domain.dll +0 -0
- package/bin/CodeMuster.Infrastructure.dll +0 -0
- package/bin/CodeMuster.Mapping.CSharp.dll +0 -0
- package/bin/CodeMuster.Mapping.TypeScript.dll +0 -0
- package/bin/codemuster.deps.json +30 -30
- package/bin/codemuster.dll +0 -0
- package/bin/codemuster.exe +0 -0
- package/package.json +1 -1
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`.
|
|
Binary file
|
|
@@ -305,6 +305,58 @@
|
|
|
305
305
|
</code>
|
|
306
306
|
</remarks>
|
|
307
307
|
</member>
|
|
308
|
+
<member name="M:CodeMuster.Application.DeadCodeReview.FetchOptions">
|
|
309
|
+
<remarks>
|
|
310
|
+
Pattern:<br/>
|
|
311
|
+
<code>^,\\s*\\{[^;]*\\}\\s*\\)</code><br/>
|
|
312
|
+
Options:<br/>
|
|
313
|
+
<code>RegexOptions.CultureInvariant | RegexOptions.NonBacktracking</code><br/>
|
|
314
|
+
Explanation:<br/>
|
|
315
|
+
<code>
|
|
316
|
+
○ Match if at the beginning of the string.<br/>
|
|
317
|
+
○ Match ','.<br/>
|
|
318
|
+
○ Match a whitespace character greedily any number of times.<br/>
|
|
319
|
+
○ Match '{'.<br/>
|
|
320
|
+
○ Match a character other than ';' greedily any number of times.<br/>
|
|
321
|
+
○ Match '}'.<br/>
|
|
322
|
+
○ Match a whitespace character greedily any number of times.<br/>
|
|
323
|
+
○ Match ')'.<br/>
|
|
324
|
+
</code>
|
|
325
|
+
</remarks>
|
|
326
|
+
</member>
|
|
327
|
+
<member name="M:CodeMuster.Application.DeadCodeReview.UnknownFetchMethod">
|
|
328
|
+
<remarks>
|
|
329
|
+
Pattern:<br/>
|
|
330
|
+
<code>\\b(?:method|__proto__)\\b|\\.\\.\\.|\\[|\\\\</code><br/>
|
|
331
|
+
Options:<br/>
|
|
332
|
+
<code>RegexOptions.IgnoreCase | RegexOptions.CultureInvariant | RegexOptions.NonBacktracking</code><br/>
|
|
333
|
+
Explanation:<br/>
|
|
334
|
+
<code>
|
|
335
|
+
○ Match with 3 alternative expressions, atomically.<br/>
|
|
336
|
+
○ Match a sequence of expressions.<br/>
|
|
337
|
+
○ Match if at a word boundary.<br/>
|
|
338
|
+
○ Match with 2 alternative expressions.<br/>
|
|
339
|
+
○ Match a sequence of expressions.<br/>
|
|
340
|
+
○ Match a character in the set [Mm].<br/>
|
|
341
|
+
○ Match a character in the set [Ee].<br/>
|
|
342
|
+
○ Match a character in the set [Tt].<br/>
|
|
343
|
+
○ Match a character in the set [Hh].<br/>
|
|
344
|
+
○ Match a character in the set [Oo].<br/>
|
|
345
|
+
○ Match a character in the set [Dd].<br/>
|
|
346
|
+
○ Match a sequence of expressions.<br/>
|
|
347
|
+
○ Match the string "__".<br/>
|
|
348
|
+
○ Match a character in the set [Pp].<br/>
|
|
349
|
+
○ Match a character in the set [Rr].<br/>
|
|
350
|
+
○ Match a character in the set [Oo].<br/>
|
|
351
|
+
○ Match a character in the set [Tt].<br/>
|
|
352
|
+
○ Match a character in the set [Oo].<br/>
|
|
353
|
+
○ Match the string "__".<br/>
|
|
354
|
+
○ Match if at a word boundary.<br/>
|
|
355
|
+
○ Match the string "...".<br/>
|
|
356
|
+
○ Match a character in the set [[\\].<br/>
|
|
357
|
+
</code>
|
|
358
|
+
</remarks>
|
|
359
|
+
</member>
|
|
308
360
|
<member name="T:CodeMuster.Application.DeadCodeScan">
|
|
309
361
|
<summary>Plans and records conservative static usage assessments during scan.</summary>
|
|
310
362
|
</member>
|
|
@@ -1266,5 +1318,19 @@
|
|
|
1266
1318
|
<member name="F:System.Text.RegularExpressions.Generated.FetchMethod_1.Instance">
|
|
1267
1319
|
<summary>Cached, thread-safe singleton instance.</summary>
|
|
1268
1320
|
</member>
|
|
1321
|
+
<member name="T:System.Text.RegularExpressions.Generated.FetchOptions_2">
|
|
1322
|
+
<summary>Caches a <see cref="T:System.Text.RegularExpressions.Regex"/> instance for the FetchOptions method.</summary>
|
|
1323
|
+
<remarks>A custom Regex-derived type could not be generated because RegexOptions.NonBacktracking isn't supported.</remarks>
|
|
1324
|
+
</member>
|
|
1325
|
+
<member name="F:System.Text.RegularExpressions.Generated.FetchOptions_2.Instance">
|
|
1326
|
+
<summary>Cached, thread-safe singleton instance.</summary>
|
|
1327
|
+
</member>
|
|
1328
|
+
<member name="T:System.Text.RegularExpressions.Generated.UnknownFetchMethod_3">
|
|
1329
|
+
<summary>Caches a <see cref="T:System.Text.RegularExpressions.Regex"/> instance for the UnknownFetchMethod method.</summary>
|
|
1330
|
+
<remarks>A custom Regex-derived type could not be generated because RegexOptions.NonBacktracking isn't supported.</remarks>
|
|
1331
|
+
</member>
|
|
1332
|
+
<member name="F:System.Text.RegularExpressions.Generated.UnknownFetchMethod_3.Instance">
|
|
1333
|
+
<summary>Cached, thread-safe singleton instance.</summary>
|
|
1334
|
+
</member>
|
|
1269
1335
|
</members>
|
|
1270
1336
|
</doc>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/bin/codemuster.deps.json
CHANGED
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
"targets": {
|
|
8
8
|
".NETCoreApp,Version=v10.0": {},
|
|
9
9
|
".NETCoreApp,Version=v10.0/win-x64": {
|
|
10
|
-
"codemuster/0.3.
|
|
10
|
+
"codemuster/0.3.3": {
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"CodeMuster.Application": "0.3.
|
|
13
|
-
"CodeMuster.Infrastructure": "0.3.
|
|
14
|
-
"CodeMuster.Mapping.CSharp": "0.3.
|
|
15
|
-
"CodeMuster.Mapping.TypeScript": "0.3.
|
|
12
|
+
"CodeMuster.Application": "0.3.3",
|
|
13
|
+
"CodeMuster.Infrastructure": "0.3.3",
|
|
14
|
+
"CodeMuster.Mapping.CSharp": "0.3.3",
|
|
15
|
+
"CodeMuster.Mapping.TypeScript": "0.3.3",
|
|
16
16
|
"runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "10.0.12"
|
|
17
17
|
},
|
|
18
18
|
"runtime": {
|
|
@@ -1036,65 +1036,65 @@
|
|
|
1036
1036
|
}
|
|
1037
1037
|
}
|
|
1038
1038
|
},
|
|
1039
|
-
"CodeMuster.Application/0.3.
|
|
1039
|
+
"CodeMuster.Application/0.3.3": {
|
|
1040
1040
|
"dependencies": {
|
|
1041
|
-
"CodeMuster.Domain": "0.3.
|
|
1041
|
+
"CodeMuster.Domain": "0.3.3"
|
|
1042
1042
|
},
|
|
1043
1043
|
"runtime": {
|
|
1044
1044
|
"CodeMuster.Application.dll": {
|
|
1045
|
-
"assemblyVersion": "0.3.
|
|
1046
|
-
"fileVersion": "0.3.
|
|
1045
|
+
"assemblyVersion": "0.3.3.0",
|
|
1046
|
+
"fileVersion": "0.3.3.0"
|
|
1047
1047
|
}
|
|
1048
1048
|
}
|
|
1049
1049
|
},
|
|
1050
|
-
"CodeMuster.Domain/0.3.
|
|
1050
|
+
"CodeMuster.Domain/0.3.3": {
|
|
1051
1051
|
"runtime": {
|
|
1052
1052
|
"CodeMuster.Domain.dll": {
|
|
1053
|
-
"assemblyVersion": "0.3.
|
|
1054
|
-
"fileVersion": "0.3.
|
|
1053
|
+
"assemblyVersion": "0.3.3.0",
|
|
1054
|
+
"fileVersion": "0.3.3.0"
|
|
1055
1055
|
}
|
|
1056
1056
|
}
|
|
1057
1057
|
},
|
|
1058
|
-
"CodeMuster.Infrastructure/0.3.
|
|
1058
|
+
"CodeMuster.Infrastructure/0.3.3": {
|
|
1059
1059
|
"dependencies": {
|
|
1060
|
-
"CodeMuster.Domain": "0.3.
|
|
1060
|
+
"CodeMuster.Domain": "0.3.3",
|
|
1061
1061
|
"Microsoft.Data.Sqlite": "10.0.12"
|
|
1062
1062
|
},
|
|
1063
1063
|
"runtime": {
|
|
1064
1064
|
"CodeMuster.Infrastructure.dll": {
|
|
1065
|
-
"assemblyVersion": "0.3.
|
|
1066
|
-
"fileVersion": "0.3.
|
|
1065
|
+
"assemblyVersion": "0.3.3.0",
|
|
1066
|
+
"fileVersion": "0.3.3.0"
|
|
1067
1067
|
}
|
|
1068
1068
|
}
|
|
1069
1069
|
},
|
|
1070
|
-
"CodeMuster.Mapping.CSharp/0.3.
|
|
1070
|
+
"CodeMuster.Mapping.CSharp/0.3.3": {
|
|
1071
1071
|
"dependencies": {
|
|
1072
|
-
"CodeMuster.Domain": "0.3.
|
|
1072
|
+
"CodeMuster.Domain": "0.3.3",
|
|
1073
1073
|
"Microsoft.CodeAnalysis.CSharp.Workspaces": "5.9.0",
|
|
1074
1074
|
"Microsoft.CodeAnalysis.Workspaces.MSBuild": "5.9.0"
|
|
1075
1075
|
},
|
|
1076
1076
|
"runtime": {
|
|
1077
1077
|
"CodeMuster.Mapping.CSharp.dll": {
|
|
1078
|
-
"assemblyVersion": "0.3.
|
|
1079
|
-
"fileVersion": "0.3.
|
|
1078
|
+
"assemblyVersion": "0.3.3.0",
|
|
1079
|
+
"fileVersion": "0.3.3.0"
|
|
1080
1080
|
}
|
|
1081
1081
|
}
|
|
1082
1082
|
},
|
|
1083
|
-
"CodeMuster.Mapping.TypeScript/0.3.
|
|
1083
|
+
"CodeMuster.Mapping.TypeScript/0.3.3": {
|
|
1084
1084
|
"dependencies": {
|
|
1085
|
-
"CodeMuster.Domain": "0.3.
|
|
1085
|
+
"CodeMuster.Domain": "0.3.3"
|
|
1086
1086
|
},
|
|
1087
1087
|
"runtime": {
|
|
1088
1088
|
"CodeMuster.Mapping.TypeScript.dll": {
|
|
1089
|
-
"assemblyVersion": "0.3.
|
|
1090
|
-
"fileVersion": "0.3.
|
|
1089
|
+
"assemblyVersion": "0.3.3.0",
|
|
1090
|
+
"fileVersion": "0.3.3.0"
|
|
1091
1091
|
}
|
|
1092
1092
|
}
|
|
1093
1093
|
}
|
|
1094
1094
|
}
|
|
1095
1095
|
},
|
|
1096
1096
|
"libraries": {
|
|
1097
|
-
"codemuster/0.3.
|
|
1097
|
+
"codemuster/0.3.3": {
|
|
1098
1098
|
"type": "project",
|
|
1099
1099
|
"serviceable": false,
|
|
1100
1100
|
"sha512": ""
|
|
@@ -1286,27 +1286,27 @@
|
|
|
1286
1286
|
"path": "system.composition.typedparts/10.0.1",
|
|
1287
1287
|
"hashPath": "system.composition.typedparts.10.0.1.nupkg.sha512"
|
|
1288
1288
|
},
|
|
1289
|
-
"CodeMuster.Application/0.3.
|
|
1289
|
+
"CodeMuster.Application/0.3.3": {
|
|
1290
1290
|
"type": "project",
|
|
1291
1291
|
"serviceable": false,
|
|
1292
1292
|
"sha512": ""
|
|
1293
1293
|
},
|
|
1294
|
-
"CodeMuster.Domain/0.3.
|
|
1294
|
+
"CodeMuster.Domain/0.3.3": {
|
|
1295
1295
|
"type": "project",
|
|
1296
1296
|
"serviceable": false,
|
|
1297
1297
|
"sha512": ""
|
|
1298
1298
|
},
|
|
1299
|
-
"CodeMuster.Infrastructure/0.3.
|
|
1299
|
+
"CodeMuster.Infrastructure/0.3.3": {
|
|
1300
1300
|
"type": "project",
|
|
1301
1301
|
"serviceable": false,
|
|
1302
1302
|
"sha512": ""
|
|
1303
1303
|
},
|
|
1304
|
-
"CodeMuster.Mapping.CSharp/0.3.
|
|
1304
|
+
"CodeMuster.Mapping.CSharp/0.3.3": {
|
|
1305
1305
|
"type": "project",
|
|
1306
1306
|
"serviceable": false,
|
|
1307
1307
|
"sha512": ""
|
|
1308
1308
|
},
|
|
1309
|
-
"CodeMuster.Mapping.TypeScript/0.3.
|
|
1309
|
+
"CodeMuster.Mapping.TypeScript/0.3.3": {
|
|
1310
1310
|
"type": "project",
|
|
1311
1311
|
"serviceable": false,
|
|
1312
1312
|
"sha512": ""
|
package/bin/codemuster.dll
CHANGED
|
Binary file
|
package/bin/codemuster.exe
CHANGED
|
Binary file
|