@codemuster/darwin-x64 0.2.9 → 0.3.0
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 +43 -0
- package/bin/CodeMuster.Application.dll +0 -0
- package/bin/CodeMuster.Application.xml +15 -0
- package/bin/CodeMuster.Domain.dll +0 -0
- package/bin/CodeMuster.Domain.xml +3 -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/package.json +3 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
User-visible changes by released version. Add upcoming changes under Unreleased;
|
|
4
|
+
move them to a dated version heading before publishing. Historical entries below
|
|
5
|
+
start with 0.2.8.
|
|
6
|
+
|
|
7
|
+
## 0.3.0 - 2026-09-19
|
|
8
|
+
|
|
9
|
+
- Show the intervening release notes after `codemuster update`.
|
|
10
|
+
- Check for a newer version on every normal command and report the result without
|
|
11
|
+
changing command output or stopping work when the registry is unavailable.
|
|
12
|
+
- Include this changelog in the launcher and every platform package.
|
|
13
|
+
- Preview the worker limit, provider, model and thinking level before `run`, `verify`
|
|
14
|
+
or `fix`. Interactive terminals wait ten seconds; Enter starts immediately and
|
|
15
|
+
Escape or Ctrl+C cancels. CI and redirected commands start without waiting.
|
|
16
|
+
- Add `intelligent-config` to inspect repository context with an AI agent and apply
|
|
17
|
+
validated exclusions, scoped lenses and detected test setup. Preserve existing
|
|
18
|
+
custom settings and keep an exact backup before replacing the config.
|
|
19
|
+
|
|
20
|
+
Upgrade from 0.2.9 or earlier with `npm install -g codemuster@0.3.0` to
|
|
21
|
+
install the new launcher. Older launchers update only the native binary, so their
|
|
22
|
+
`codemuster update` cannot add release-note or per-command update notices.
|
|
23
|
+
|
|
24
|
+
## 0.2.9 - 2026-09-19
|
|
25
|
+
|
|
26
|
+
- Exclude non-code documents, data, configuration and database files from AI review,
|
|
27
|
+
including Markdown, text, JSON, YAML, XML, CSV, Office documents and SQLite files.
|
|
28
|
+
Mapper metadata and ecosystem dependency audits retain their required inputs.
|
|
29
|
+
- Mark oversized packs as skipped once and continue other work. Skips retain a
|
|
30
|
+
reason, consume no agent attempts or retries, and never count as reviewed.
|
|
31
|
+
- Show skipped work in status and reports. Rescan or use `run --force` to retry it.
|
|
32
|
+
- Upgrade the ledger to schema 7 while preserving audit history. Older CLIs cannot
|
|
33
|
+
open this schema. Run `codemuster scan` after upgrading to refresh exclusions.
|
|
34
|
+
|
|
35
|
+
## 0.2.8 - 2026-09-15
|
|
36
|
+
|
|
37
|
+
- Add settings-driven proactive plugin workflows for Claude and Codex, with shared
|
|
38
|
+
setup, skills and hooks.
|
|
39
|
+
- Isolate fix workers, enforce repair scope, preserve dirty work through explicit
|
|
40
|
+
stash handling, and validate fixes before recording success.
|
|
41
|
+
- Add opt-in static usage assessments and browser-backed user-experience reviews.
|
|
42
|
+
- Prevent dead-code scans from failing on wall-clock regex timeouts.
|
|
43
|
+
- Support exact CLI version pins and separate update caches by OS and architecture.
|
|
Binary file
|
|
@@ -654,6 +654,21 @@
|
|
|
654
654
|
<member name="P:CodeMuster.Application.InitResult.Gitignore">
|
|
655
655
|
<summary>What happened to <c>.gitignore</c>.</summary>
|
|
656
656
|
</member>
|
|
657
|
+
<member name="T:CodeMuster.Application.IntelligentConfig">
|
|
658
|
+
<summary>Uses a read-only agent to recommend additive, repository-specific audit configuration.</summary>
|
|
659
|
+
</member>
|
|
660
|
+
<member name="M:CodeMuster.Application.IntelligentConfig.#ctor(CodeMuster.Domain.ISourceTree,CodeMuster.Domain.IFileSystem,CodeMuster.Domain.IAgentAdapter,CodeMuster.Domain.IClock)">
|
|
661
|
+
<summary>Uses a read-only agent to recommend additive, repository-specific audit configuration.</summary>
|
|
662
|
+
</member>
|
|
663
|
+
<member name="M:CodeMuster.Application.IntelligentConfig.RunAsync(System.String,System.Threading.CancellationToken)">
|
|
664
|
+
<summary>Inspects tracked repository context and applies validated recommendations, preserving a backup.</summary>
|
|
665
|
+
</member>
|
|
666
|
+
<member name="T:CodeMuster.Application.IntelligentConfigResult">
|
|
667
|
+
<summary>Applied configuration changes and the retained repo-relative backup, if anything changed.</summary>
|
|
668
|
+
</member>
|
|
669
|
+
<member name="M:CodeMuster.Application.IntelligentConfigResult.#ctor(System.Boolean,System.String,System.Collections.Generic.IReadOnlyList{System.String},System.Int32)">
|
|
670
|
+
<summary>Applied configuration changes and the retained repo-relative backup, if anything changed.</summary>
|
|
671
|
+
</member>
|
|
657
672
|
<member name="T:CodeMuster.Application.Lens">
|
|
658
673
|
<summary>One named set of audit instructions from <c>.codemuster/config.json</c>, scoped by globs and languages.</summary>
|
|
659
674
|
<param name="Id">Short name the model echoes back as <c>lens_id</c> on each finding.</param>
|
|
Binary file
|
|
@@ -599,6 +599,9 @@
|
|
|
599
599
|
<member name="M:CodeMuster.Domain.IFileSystem.WriteAllTextAsync(System.String,System.String,System.Threading.CancellationToken)">
|
|
600
600
|
<summary>Writes a whole file as UTF-8 text without a byte-order mark, creating missing parent directories.</summary>
|
|
601
601
|
</member>
|
|
602
|
+
<member name="M:CodeMuster.Domain.IFileSystem.WriteAllTextAtomicallyAsync(System.String,System.String,System.Threading.CancellationToken)">
|
|
603
|
+
<summary>Writes UTF-8 to a sibling temporary file and replaces the destination only after the write completes.</summary>
|
|
604
|
+
</member>
|
|
602
605
|
<member name="T:CodeMuster.Domain.ILedger">
|
|
603
606
|
<summary>The SQLite ledger behind every verb (D04). Implementations must be safe for two writers with a busy timeout.</summary>
|
|
604
607
|
</member>
|
|
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/osx-x64": {
|
|
10
|
-
"codemuster/0.
|
|
10
|
+
"codemuster/0.3.0": {
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"CodeMuster.Application": "0.
|
|
13
|
-
"CodeMuster.Infrastructure": "0.
|
|
14
|
-
"CodeMuster.Mapping.CSharp": "0.
|
|
15
|
-
"CodeMuster.Mapping.TypeScript": "0.
|
|
12
|
+
"CodeMuster.Application": "0.3.0",
|
|
13
|
+
"CodeMuster.Infrastructure": "0.3.0",
|
|
14
|
+
"CodeMuster.Mapping.CSharp": "0.3.0",
|
|
15
|
+
"CodeMuster.Mapping.TypeScript": "0.3.0",
|
|
16
16
|
"runtimepack.Microsoft.NETCore.App.Runtime.osx-x64": "10.0.12"
|
|
17
17
|
},
|
|
18
18
|
"runtime": {
|
|
@@ -1033,65 +1033,65 @@
|
|
|
1033
1033
|
}
|
|
1034
1034
|
}
|
|
1035
1035
|
},
|
|
1036
|
-
"CodeMuster.Application/0.
|
|
1036
|
+
"CodeMuster.Application/0.3.0": {
|
|
1037
1037
|
"dependencies": {
|
|
1038
|
-
"CodeMuster.Domain": "0.
|
|
1038
|
+
"CodeMuster.Domain": "0.3.0"
|
|
1039
1039
|
},
|
|
1040
1040
|
"runtime": {
|
|
1041
1041
|
"CodeMuster.Application.dll": {
|
|
1042
|
-
"assemblyVersion": "0.
|
|
1043
|
-
"fileVersion": "0.
|
|
1042
|
+
"assemblyVersion": "0.3.0.0",
|
|
1043
|
+
"fileVersion": "0.3.0.0"
|
|
1044
1044
|
}
|
|
1045
1045
|
}
|
|
1046
1046
|
},
|
|
1047
|
-
"CodeMuster.Domain/0.
|
|
1047
|
+
"CodeMuster.Domain/0.3.0": {
|
|
1048
1048
|
"runtime": {
|
|
1049
1049
|
"CodeMuster.Domain.dll": {
|
|
1050
|
-
"assemblyVersion": "0.
|
|
1051
|
-
"fileVersion": "0.
|
|
1050
|
+
"assemblyVersion": "0.3.0.0",
|
|
1051
|
+
"fileVersion": "0.3.0.0"
|
|
1052
1052
|
}
|
|
1053
1053
|
}
|
|
1054
1054
|
},
|
|
1055
|
-
"CodeMuster.Infrastructure/0.
|
|
1055
|
+
"CodeMuster.Infrastructure/0.3.0": {
|
|
1056
1056
|
"dependencies": {
|
|
1057
|
-
"CodeMuster.Domain": "0.
|
|
1057
|
+
"CodeMuster.Domain": "0.3.0",
|
|
1058
1058
|
"Microsoft.Data.Sqlite": "10.0.12"
|
|
1059
1059
|
},
|
|
1060
1060
|
"runtime": {
|
|
1061
1061
|
"CodeMuster.Infrastructure.dll": {
|
|
1062
|
-
"assemblyVersion": "0.
|
|
1063
|
-
"fileVersion": "0.
|
|
1062
|
+
"assemblyVersion": "0.3.0.0",
|
|
1063
|
+
"fileVersion": "0.3.0.0"
|
|
1064
1064
|
}
|
|
1065
1065
|
}
|
|
1066
1066
|
},
|
|
1067
|
-
"CodeMuster.Mapping.CSharp/0.
|
|
1067
|
+
"CodeMuster.Mapping.CSharp/0.3.0": {
|
|
1068
1068
|
"dependencies": {
|
|
1069
|
-
"CodeMuster.Domain": "0.
|
|
1069
|
+
"CodeMuster.Domain": "0.3.0",
|
|
1070
1070
|
"Microsoft.CodeAnalysis.CSharp.Workspaces": "5.9.0",
|
|
1071
1071
|
"Microsoft.CodeAnalysis.Workspaces.MSBuild": "5.9.0"
|
|
1072
1072
|
},
|
|
1073
1073
|
"runtime": {
|
|
1074
1074
|
"CodeMuster.Mapping.CSharp.dll": {
|
|
1075
|
-
"assemblyVersion": "0.
|
|
1076
|
-
"fileVersion": "0.
|
|
1075
|
+
"assemblyVersion": "0.3.0.0",
|
|
1076
|
+
"fileVersion": "0.3.0.0"
|
|
1077
1077
|
}
|
|
1078
1078
|
}
|
|
1079
1079
|
},
|
|
1080
|
-
"CodeMuster.Mapping.TypeScript/0.
|
|
1080
|
+
"CodeMuster.Mapping.TypeScript/0.3.0": {
|
|
1081
1081
|
"dependencies": {
|
|
1082
|
-
"CodeMuster.Domain": "0.
|
|
1082
|
+
"CodeMuster.Domain": "0.3.0"
|
|
1083
1083
|
},
|
|
1084
1084
|
"runtime": {
|
|
1085
1085
|
"CodeMuster.Mapping.TypeScript.dll": {
|
|
1086
|
-
"assemblyVersion": "0.
|
|
1087
|
-
"fileVersion": "0.
|
|
1086
|
+
"assemblyVersion": "0.3.0.0",
|
|
1087
|
+
"fileVersion": "0.3.0.0"
|
|
1088
1088
|
}
|
|
1089
1089
|
}
|
|
1090
1090
|
}
|
|
1091
1091
|
}
|
|
1092
1092
|
},
|
|
1093
1093
|
"libraries": {
|
|
1094
|
-
"codemuster/0.
|
|
1094
|
+
"codemuster/0.3.0": {
|
|
1095
1095
|
"type": "project",
|
|
1096
1096
|
"serviceable": false,
|
|
1097
1097
|
"sha512": ""
|
|
@@ -1283,27 +1283,27 @@
|
|
|
1283
1283
|
"path": "system.composition.typedparts/10.0.1",
|
|
1284
1284
|
"hashPath": "system.composition.typedparts.10.0.1.nupkg.sha512"
|
|
1285
1285
|
},
|
|
1286
|
-
"CodeMuster.Application/0.
|
|
1286
|
+
"CodeMuster.Application/0.3.0": {
|
|
1287
1287
|
"type": "project",
|
|
1288
1288
|
"serviceable": false,
|
|
1289
1289
|
"sha512": ""
|
|
1290
1290
|
},
|
|
1291
|
-
"CodeMuster.Domain/0.
|
|
1291
|
+
"CodeMuster.Domain/0.3.0": {
|
|
1292
1292
|
"type": "project",
|
|
1293
1293
|
"serviceable": false,
|
|
1294
1294
|
"sha512": ""
|
|
1295
1295
|
},
|
|
1296
|
-
"CodeMuster.Infrastructure/0.
|
|
1296
|
+
"CodeMuster.Infrastructure/0.3.0": {
|
|
1297
1297
|
"type": "project",
|
|
1298
1298
|
"serviceable": false,
|
|
1299
1299
|
"sha512": ""
|
|
1300
1300
|
},
|
|
1301
|
-
"CodeMuster.Mapping.CSharp/0.
|
|
1301
|
+
"CodeMuster.Mapping.CSharp/0.3.0": {
|
|
1302
1302
|
"type": "project",
|
|
1303
1303
|
"serviceable": false,
|
|
1304
1304
|
"sha512": ""
|
|
1305
1305
|
},
|
|
1306
|
-
"CodeMuster.Mapping.TypeScript/0.
|
|
1306
|
+
"CodeMuster.Mapping.TypeScript/0.3.0": {
|
|
1307
1307
|
"type": "project",
|
|
1308
1308
|
"serviceable": false,
|
|
1309
1309
|
"sha512": ""
|
package/bin/codemuster.dll
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codemuster/darwin-x64",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "The darwin-x64 build of CodeMuster, installed by the codemuster package.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"repository": {
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"x64"
|
|
15
15
|
],
|
|
16
16
|
"files": [
|
|
17
|
-
"bin"
|
|
17
|
+
"bin",
|
|
18
|
+
"CHANGELOG.md"
|
|
18
19
|
]
|
|
19
20
|
}
|