@codemuster/win32-arm64 0.3.3 → 0.3.5

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,33 @@ 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.5 - 2026-09-21
8
+
9
+ - A repair that cannot be integrated no longer ends the whole run. Previously one
10
+ such file cancelled every other worker mid-call, so a parallel `fix` could pay
11
+ for many agent calls and keep no repairs. The run now stops starting new
12
+ repairs, lets the calls already running finish, and retains each of those
13
+ repairs unapplied in its own worker checkout with the path reported, so they
14
+ can still be recovered. The file that could not be integrated is reported and
15
+ the command exits non-zero.
16
+ - The message for a file changed outside the allowed scope during validation no
17
+ longer blames the configured test command. CodeMuster compares the checkout
18
+ before and after validation, so it now says the change came either from the
19
+ test command or from something else using the same checkout. Running `fix`
20
+ while another tool or agent writes to the same checkout is what produces this.
21
+
22
+ ## 0.3.4 - 2026-09-20
23
+
24
+ - `codemuster fix` no longer stops the whole run when one file is too large for a
25
+ whole-file pack. Previously a single oversized file at the head of the queue
26
+ ended the run with nothing repaired. That file is now recorded as skipped with
27
+ its reason, every other file is still repaired and committed, the summary
28
+ reports the skipped count, and the exit code stays zero. Raise
29
+ `slice_token_budget` in `.codemuster/config.json` or split the file and the next
30
+ `fix` picks it up, with no extra flag and no rescan.
31
+ - A file whose repair already completed is revisited when the audit later confirms
32
+ a finding in it that the repair never answered.
33
+
7
34
  ## 0.3.3 - 2026-09-19
8
35
 
9
36
  - Show the actual Codex model and thinking level before agent work by reading
Binary file
@@ -572,7 +572,7 @@
572
572
  <summary>Plans and fixes confirmed findings. With consent, saves tracked local changes and restores them afterward, including on failure or cancellation.</summary>
573
573
  </member>
574
574
  <member name="M:CodeMuster.Application.Fix.PlanAsync(System.Threading.CancellationToken)">
575
- <summary>Creates or refreshes a fix unit for every file with a confirmed finding, and retires fix units whose findings are gone. A unit already fixed against the file's current content keeps its Done status.</summary>
575
+ <summary>Creates or refreshes a fix unit for every file with a confirmed finding, and retires fix units whose findings are gone. A unit already fixed against the file's current content keeps its Done status, unless a confirmed finding it never answered has since been recorded for that file.</summary>
576
576
  </member>
577
577
  <member name="T:CodeMuster.Application.FixOptions">
578
578
  <summary>How a fix run should behave (D37, D39, D40). Parallel agents edit isolated worktrees.</summary>
@@ -660,6 +660,9 @@
660
660
  <member name="P:CodeMuster.Application.FixResult.TestsRun">
661
661
  <summary>True when a test command gated every recorded fix; false when none was configured.</summary>
662
662
  </member>
663
+ <member name="P:CodeMuster.Application.FixResult.Skipped">
664
+ <summary>Files skipped for exceeding the pack budget, without spending a repair attempt (D50).</summary>
665
+ </member>
663
666
  <member name="T:CodeMuster.Application.Init">
664
667
  <summary>Sets a repo up (D24): writes the default config once and makes sure the ledger is gitignored, touching nothing else.</summary>
665
668
  </member>
Binary file
@@ -573,16 +573,19 @@
573
573
  <summary>Git blob SHA of the current bytes of a repo-relative path.</summary>
574
574
  </member>
575
575
  <member name="T:CodeMuster.Domain.FileFixEdit">
576
- <summary>An isolated agent's response and the Git patch for its assigned file only.</summary>
576
+ <summary>An isolated agent's response and the Git patch for its assigned file only, with the worker copy the patch came from while it is still on disk.</summary>
577
577
  </member>
578
- <member name="M:CodeMuster.Domain.FileFixEdit.#ctor(System.String,System.String)">
579
- <summary>An isolated agent's response and the Git patch for its assigned file only.</summary>
578
+ <member name="M:CodeMuster.Domain.FileFixEdit.#ctor(System.String,System.String,System.String)">
579
+ <summary>An isolated agent's response and the Git patch for its assigned file only, with the worker copy the patch came from while it is still on disk.</summary>
580
580
  </member>
581
581
  <member name="T:CodeMuster.Domain.IFileFixer">
582
582
  <summary>Runs one file's fix in isolation, without changing the coordinator's checkout or ledger.</summary>
583
583
  </member>
584
584
  <member name="M:CodeMuster.Domain.IFileFixer.RunAsync(System.String,System.String,System.Threading.CancellationToken)">
585
- <summary>Returns only the assigned file's changes; rejects edits to any other file.</summary>
585
+ <summary>Returns only the assigned file's changes; rejects edits to any other file. The worker copy stays on disk until the edit is released.</summary>
586
+ </member>
587
+ <member name="M:CodeMuster.Domain.IFileFixer.ReleaseAsync(CodeMuster.Domain.FileFixEdit,System.Threading.CancellationToken)">
588
+ <summary>Discards the worker copy once the coordinator has used or rejected its patch; an edit that is never released stays on disk so its finished work can be recovered.</summary>
586
589
  </member>
587
590
  <member name="T:CodeMuster.Domain.IFileSystem">
588
591
  <summary>The few file operations use cases need outside the tracked tree, such as reading and writing config.</summary>
@@ -1105,7 +1108,7 @@
1105
1108
  <summary>No longer part of the tree; kept for history, never handed out.</summary>
1106
1109
  </member>
1107
1110
  <member name="F:CodeMuster.Domain.UnitStatus.Skipped">
1108
- <summary>Not reviewed because its pack exceeded the budget; requeued by scan or force.</summary>
1111
+ <summary>Not reviewed because its pack exceeded the budget; requeued by scan or force, and for fix units by the next run (D56).</summary>
1109
1112
  </member>
1110
1113
  <member name="T:CodeMuster.Domain.Verdict">
1111
1114
  <summary>What a verify unit concluded about one finding.</summary>
Binary file
Binary file
@@ -7,12 +7,12 @@
7
7
  "targets": {
8
8
  ".NETCoreApp,Version=v10.0": {},
9
9
  ".NETCoreApp,Version=v10.0/win-arm64": {
10
- "codemuster/0.3.3": {
10
+ "codemuster/0.3.5": {
11
11
  "dependencies": {
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",
12
+ "CodeMuster.Application": "0.3.5",
13
+ "CodeMuster.Infrastructure": "0.3.5",
14
+ "CodeMuster.Mapping.CSharp": "0.3.5",
15
+ "CodeMuster.Mapping.TypeScript": "0.3.5",
16
16
  "runtimepack.Microsoft.NETCore.App.Runtime.win-arm64": "10.0.12"
17
17
  },
18
18
  "runtime": {
@@ -1036,65 +1036,65 @@
1036
1036
  }
1037
1037
  }
1038
1038
  },
1039
- "CodeMuster.Application/0.3.3": {
1039
+ "CodeMuster.Application/0.3.5": {
1040
1040
  "dependencies": {
1041
- "CodeMuster.Domain": "0.3.3"
1041
+ "CodeMuster.Domain": "0.3.5"
1042
1042
  },
1043
1043
  "runtime": {
1044
1044
  "CodeMuster.Application.dll": {
1045
- "assemblyVersion": "0.3.3.0",
1046
- "fileVersion": "0.3.3.0"
1045
+ "assemblyVersion": "0.3.5.0",
1046
+ "fileVersion": "0.3.5.0"
1047
1047
  }
1048
1048
  }
1049
1049
  },
1050
- "CodeMuster.Domain/0.3.3": {
1050
+ "CodeMuster.Domain/0.3.5": {
1051
1051
  "runtime": {
1052
1052
  "CodeMuster.Domain.dll": {
1053
- "assemblyVersion": "0.3.3.0",
1054
- "fileVersion": "0.3.3.0"
1053
+ "assemblyVersion": "0.3.5.0",
1054
+ "fileVersion": "0.3.5.0"
1055
1055
  }
1056
1056
  }
1057
1057
  },
1058
- "CodeMuster.Infrastructure/0.3.3": {
1058
+ "CodeMuster.Infrastructure/0.3.5": {
1059
1059
  "dependencies": {
1060
- "CodeMuster.Domain": "0.3.3",
1060
+ "CodeMuster.Domain": "0.3.5",
1061
1061
  "Microsoft.Data.Sqlite": "10.0.12"
1062
1062
  },
1063
1063
  "runtime": {
1064
1064
  "CodeMuster.Infrastructure.dll": {
1065
- "assemblyVersion": "0.3.3.0",
1066
- "fileVersion": "0.3.3.0"
1065
+ "assemblyVersion": "0.3.5.0",
1066
+ "fileVersion": "0.3.5.0"
1067
1067
  }
1068
1068
  }
1069
1069
  },
1070
- "CodeMuster.Mapping.CSharp/0.3.3": {
1070
+ "CodeMuster.Mapping.CSharp/0.3.5": {
1071
1071
  "dependencies": {
1072
- "CodeMuster.Domain": "0.3.3",
1072
+ "CodeMuster.Domain": "0.3.5",
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.3.0",
1079
- "fileVersion": "0.3.3.0"
1078
+ "assemblyVersion": "0.3.5.0",
1079
+ "fileVersion": "0.3.5.0"
1080
1080
  }
1081
1081
  }
1082
1082
  },
1083
- "CodeMuster.Mapping.TypeScript/0.3.3": {
1083
+ "CodeMuster.Mapping.TypeScript/0.3.5": {
1084
1084
  "dependencies": {
1085
- "CodeMuster.Domain": "0.3.3"
1085
+ "CodeMuster.Domain": "0.3.5"
1086
1086
  },
1087
1087
  "runtime": {
1088
1088
  "CodeMuster.Mapping.TypeScript.dll": {
1089
- "assemblyVersion": "0.3.3.0",
1090
- "fileVersion": "0.3.3.0"
1089
+ "assemblyVersion": "0.3.5.0",
1090
+ "fileVersion": "0.3.5.0"
1091
1091
  }
1092
1092
  }
1093
1093
  }
1094
1094
  }
1095
1095
  },
1096
1096
  "libraries": {
1097
- "codemuster/0.3.3": {
1097
+ "codemuster/0.3.5": {
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.3": {
1289
+ "CodeMuster.Application/0.3.5": {
1290
1290
  "type": "project",
1291
1291
  "serviceable": false,
1292
1292
  "sha512": ""
1293
1293
  },
1294
- "CodeMuster.Domain/0.3.3": {
1294
+ "CodeMuster.Domain/0.3.5": {
1295
1295
  "type": "project",
1296
1296
  "serviceable": false,
1297
1297
  "sha512": ""
1298
1298
  },
1299
- "CodeMuster.Infrastructure/0.3.3": {
1299
+ "CodeMuster.Infrastructure/0.3.5": {
1300
1300
  "type": "project",
1301
1301
  "serviceable": false,
1302
1302
  "sha512": ""
1303
1303
  },
1304
- "CodeMuster.Mapping.CSharp/0.3.3": {
1304
+ "CodeMuster.Mapping.CSharp/0.3.5": {
1305
1305
  "type": "project",
1306
1306
  "serviceable": false,
1307
1307
  "sha512": ""
1308
1308
  },
1309
- "CodeMuster.Mapping.TypeScript/0.3.3": {
1309
+ "CodeMuster.Mapping.TypeScript/0.3.5": {
1310
1310
  "type": "project",
1311
1311
  "serviceable": false,
1312
1312
  "sha512": ""
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemuster/win32-arm64",
3
- "version": "0.3.3",
3
+ "version": "0.3.5",
4
4
  "description": "The win32-arm64 build of CodeMuster, installed by the codemuster package.",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "repository": {