loadout-ai 0.9.1 → 0.9.2
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 +36 -0
- package/README.md +2 -2
- package/catalog/discovered.json +26806 -25533
- package/dist/src/commands/coordination-discussions.js +47 -9
- package/dist/src/core/catalog/safety.js +46 -2
- package/dist/src/core/coordination/adapters/claude-code.js +15 -7
- package/dist/src/core/coordination/adapters/codex.js +27 -23
- package/dist/src/core/coordination/coordinator.js +5 -4
- package/dist/src/core/coordination/discussion.js +22 -2
- package/dist/src/core/coordination/retention.js +14 -4
- package/dist/src/core/install/catalog-install.js +8 -2
- package/dist/src/core/install/snapshot.js +28 -4
- package/dist/src/core/install/source.js +8 -6
- package/dist/src/core/install/update.js +55 -1
- package/docs/DISCOVERED.md +246 -247
- package/docs/USER_TEST_GUIDE.md +1 -1
- package/package.json +1 -1
- package/docs/DEMO_SCRIPT.md +0 -152
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,42 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 0.9.2 - 2026-09-06
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Coordination discussion output now removes duplicate lifecycle noise, shows a
|
|
10
|
+
single outcome section, and identifies the provider in every provider error.
|
|
11
|
+
- Maximum Library preparation now skips packages that cannot be safely prepared
|
|
12
|
+
and clearly reports that the remaining reviewed library can still install.
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- Bound overlong provider-synthesized decisions to the coordination event limit
|
|
17
|
+
instead of failing after all paid discussion turns have completed.
|
|
18
|
+
- Materialize multi-path ownership claims once per normalized path so snapshots
|
|
19
|
+
and status output do not repeat the full claim for every path.
|
|
20
|
+
- Close the Claude Code subprocess stdin explicitly, avoiding its empty-input
|
|
21
|
+
wait before a bounded coordination turn begins.
|
|
22
|
+
- Forward cancellation and timeout signals natively to both Claude Code and the
|
|
23
|
+
Codex SDK so a timed-out paid turn cannot keep running while Loadout starts a
|
|
24
|
+
replacement turn.
|
|
25
|
+
- Restore files before reapplying read-only directory modes and reject snapshot
|
|
26
|
+
modes containing special permission bits.
|
|
27
|
+
- Preserve strictly increasing coordination sequence order after checkpoint
|
|
28
|
+
compaction.
|
|
29
|
+
- Treat all reviewed commits for a shared catalog repository as valid when
|
|
30
|
+
detecting upstream catalog drift.
|
|
31
|
+
- Apply the default repository timeout to generic HTTPS and SSH Git sources as
|
|
32
|
+
well as catalog GitHub sources.
|
|
33
|
+
|
|
34
|
+
### Security
|
|
35
|
+
|
|
36
|
+
- Expand deterministic instruction-injection signatures and document the
|
|
37
|
+
repository-grounded threat model in `loadout-threat-model.md`.
|
|
38
|
+
|
|
39
|
+
## 0.9.1 - 2026-09-05
|
|
40
|
+
|
|
5
41
|
### Added
|
|
6
42
|
|
|
7
43
|
- Snapshot capture and restore preserve Unix file permission modes, with
|
package/README.md
CHANGED
|
@@ -86,7 +86,7 @@ The second command detects your agents and previews the 30-skill Stable loadout.
|
|
|
86
86
|
Nothing changes until you approve it. If anything goes wrong, start with the
|
|
87
87
|
[user test guide](./docs/USER_TEST_GUIDE.md).
|
|
88
88
|
|
|
89
|
-
For a reproducible install, pin the release: `npm install --global loadout-ai@0.9.
|
|
89
|
+
For a reproducible install, pin the release: `npm install --global loadout-ai@0.9.2`.
|
|
90
90
|
|
|
91
91
|
## Use it from inside your agent
|
|
92
92
|
|
|
@@ -306,7 +306,7 @@ Catalog maturity: **53 sourced**, **53 technically inspected**, and **4 selected
|
|
|
306
306
|
|
|
307
307
|
<!-- loadout:daily-discovery:start -->
|
|
308
308
|
|
|
309
|
-
**Discovery snapshot (generated 2026-09-
|
|
309
|
+
**Discovery snapshot (generated 2026-09-06):** [237 repositories observed](./docs/DISCOVERED.md), including 221 uncataloged review candidates and 16 repositories already in the inspected catalog.
|
|
310
310
|
<!-- loadout:daily-discovery:end -->
|
|
311
311
|
|
|
312
312
|
## Trust and limits
|