loadout-ai 0.1.1 → 0.1.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/MASTER_PLAN.md +9 -3
- package/README.md +2 -2
- package/dist/src/cli.js +1 -1
- package/dist/src/core/paths.js +4 -0
- package/package.json +1 -1
package/MASTER_PLAN.md
CHANGED
|
@@ -1015,13 +1015,19 @@ universal or permanent truth.
|
|
|
1015
1015
|
`NOASSERTION` records, before distribution.
|
|
1016
1016
|
- [ ] `P12-31 [TERRA]` Publish `loadout-ai` to npm and run clean-machine package tests
|
|
1017
1017
|
from outside the repository on macOS, Windows, Linux, and Node 20/22.
|
|
1018
|
-
- Partial: `loadout-ai@0.1.
|
|
1018
|
+
- Partial: `loadout-ai@0.1.2` was published publicly on 2026-07-16 while the GitHub
|
|
1019
1019
|
repository remained private. Registry metadata, `npx` version/help, and a real
|
|
1020
|
-
read-only Stable preview passed outside the source directory.
|
|
1020
|
+
read-only Stable preview passed outside the source directory. Patch `0.1.2`
|
|
1021
|
+
adds Codex Desktop detection through its existing `~/.codex` home when the
|
|
1022
|
+
standalone `codex` executable is absent from the user's shell PATH. CI contains an
|
|
1021
1023
|
opt-in OS/Node matrix and OIDC/provenance release workflow; clean independent-user
|
|
1022
1024
|
installs on Windows/macOS/Linux remain required.
|
|
1023
1025
|
- [ ] `P12-32 [HUMAN]` Run moderated founder testing on the real Claude and Codex
|
|
1024
1026
|
profiles with snapshots and explicit rollback checkpoints.
|
|
1027
|
+
- Partial 2026-07-16: the founder ran the published npm CLI against the real macOS
|
|
1028
|
+
profile. Read-only doctor/scan/status/health and snapshot listing completed; the
|
|
1029
|
+
run exposed and regression-tested the Codex Desktop detection fix. A real Stable
|
|
1030
|
+
mutation and rollback remain pending.
|
|
1025
1031
|
- [ ] `P12-33 [HUMAN]` Run at least ten external user tests spanning new users, power
|
|
1026
1032
|
users, Windows, macOS, Linux, one-agent, and multi-agent setups.
|
|
1027
1033
|
- [ ] `P12-34 [SOL]` Public-beta go/no-go review.
|
|
@@ -1156,7 +1162,7 @@ universal or permanent truth.
|
|
|
1156
1162
|
1,000 on-disk skills at a 1.29-second p95 on macOS/Node 23.
|
|
1157
1163
|
- [ ] `P15-06 [HUMAN]` Approve public repository visibility, complete the six
|
|
1158
1164
|
`NOASSERTION` license decisions, authenticate npm, and publish `loadout-ai`.
|
|
1159
|
-
- Partial 2026-07-16: npm authentication and the public `loadout-ai@0.1.
|
|
1165
|
+
- Partial 2026-07-16: npm authentication and the public `loadout-ai@0.1.2`
|
|
1160
1166
|
publication succeeded. Repository visibility remains private at the owner's
|
|
1161
1167
|
request, and the six root-level `NOASSERTION` decisions remain a human release
|
|
1162
1168
|
gate; therefore this combined item is not ticked.
|
package/README.md
CHANGED
|
@@ -28,10 +28,10 @@ Loadout does not claim there is one universally “best” configuration. It mak
|
|
|
28
28
|
|
|
29
29
|
## Install from npm
|
|
30
30
|
|
|
31
|
-
Requirements: Git and Node.js 20 or newer. Pin `0.1.
|
|
31
|
+
Requirements: Git and Node.js 20 or newer. Pin `0.1.2` while testing the beta so every machine runs the same bytes.
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
|
-
npm install --global loadout-ai@0.1.
|
|
34
|
+
npm install --global loadout-ai@0.1.2
|
|
35
35
|
loadout --help
|
|
36
36
|
```
|
|
37
37
|
|
package/dist/src/cli.js
CHANGED
|
@@ -221,7 +221,7 @@ async function runSetup(options) {
|
|
|
221
221
|
reader?.close();
|
|
222
222
|
}
|
|
223
223
|
}
|
|
224
|
-
const LOADOUT_VERSION = "0.1.
|
|
224
|
+
const LOADOUT_VERSION = "0.1.2";
|
|
225
225
|
function durableSchedulerLauncher() {
|
|
226
226
|
return [
|
|
227
227
|
join(dirname(process.execPath), process.platform === "win32" ? "npx.cmd" : "npx"),
|
package/dist/src/core/paths.js
CHANGED
|
@@ -15,6 +15,10 @@ export const AGENT_DEFINITIONS = [
|
|
|
15
15
|
displayName: "Codex",
|
|
16
16
|
binary: "codex",
|
|
17
17
|
directory: [".agents", "skills"],
|
|
18
|
+
// Codex Desktop owns ~/.codex even when the standalone `codex` binary is
|
|
19
|
+
// not exposed on the shell PATH. The shared Agent Skills root (~/.agents)
|
|
20
|
+
// is also valid evidence when it already exists.
|
|
21
|
+
detectionDirectories: [[".codex"], [".agents"]],
|
|
18
22
|
},
|
|
19
23
|
{
|
|
20
24
|
id: "cursor",
|