loadout-ai 0.5.8 → 0.5.9

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.
Files changed (54) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/MASTER_PLAN.md +9 -9
  3. package/README.md +17 -11
  4. package/catalog/discovered.json +56105 -9991
  5. package/catalog/packages.json +2 -1
  6. package/dist/src/cli.js +26 -2979
  7. package/dist/src/commands/agents.js +168 -0
  8. package/dist/src/commands/catalog.js +578 -0
  9. package/dist/src/commands/health.js +98 -0
  10. package/dist/src/commands/inventory.js +416 -0
  11. package/dist/src/commands/lifecycle.js +411 -0
  12. package/dist/src/commands/mcp.js +424 -0
  13. package/dist/src/commands/setup.js +67 -0
  14. package/dist/src/commands/sharing.js +358 -0
  15. package/dist/src/commands/support.js +226 -0
  16. package/dist/src/core/active-limit.js +2 -0
  17. package/dist/src/core/active-policy.js +2 -1
  18. package/dist/src/core/catalog-install.js +47 -10
  19. package/dist/src/core/catalog.js +2 -96
  20. package/dist/src/core/cli-guide.js +39 -34
  21. package/dist/src/core/completion.js +2 -20
  22. package/dist/src/core/github.js +3 -2
  23. package/dist/src/core/health-score-evidence.js +2 -2
  24. package/dist/src/core/health.js +83 -0
  25. package/dist/src/core/install.js +8 -3
  26. package/dist/src/core/loadout-card.js +14 -2
  27. package/dist/src/core/skill-inventory.js +3 -3
  28. package/dist/src/core/skills.js +6 -7
  29. package/dist/src/core/source.js +10 -3
  30. package/dist/src/core/upgrade.js +10 -9
  31. package/docs/ACTIVE_SET.md +1 -1
  32. package/docs/ACTIVE_SET_POLICY.md +1 -1
  33. package/docs/DEMO_SCRIPT.md +5 -5
  34. package/docs/DISCOVERED.md +249 -253
  35. package/docs/RELEASE_REVIEW.md +28 -143
  36. package/docs/SUBMISSION_COPY.md +4 -4
  37. package/docs/UPSTREAM_LICENSE_DECISIONS.md +1 -1
  38. package/docs/USER_TEST_GUIDE.md +1 -1
  39. package/docs/evidence/readme-claims.json +2 -14
  40. package/package.json +4 -3
  41. package/dist/src/core/benchmark-campaign.js +0 -496
  42. package/dist/src/core/benchmark-evidence.js +0 -458
  43. package/dist/src/core/benchmark-fixtures.js +0 -1157
  44. package/dist/src/core/benchmark-runner.js +0 -301
  45. package/dist/src/core/benchmark-trust.js +0 -795
  46. package/dist/src/core/catalog-release.js +0 -287
  47. package/dist/src/core/compatibility-intelligence.js +0 -465
  48. package/dist/src/core/ecosystem-import.js +0 -1072
  49. package/dist/src/core/head-to-head.js +0 -437
  50. package/dist/src/core/intelligence-feed-build.js +0 -59
  51. package/dist/src/core/intelligence-feed.js +0 -353
  52. package/dist/src/core/registry-api.js +0 -97
  53. package/dist/src/core/release-claims.js +0 -175
  54. package/dist/src/core/signing.js +0 -115
package/CHANGELOG.md CHANGED
@@ -2,6 +2,23 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.5.9 - 2026-07-21
6
+
7
+ ### Fixed
8
+
9
+ - Preserve active Stable skills when preparing Maximum Library by reserving their
10
+ managed targets before ordinary overlap deferral, while retaining fail-closed
11
+ commit, quarantine, and missing-source validation.
12
+ - Run the canonical `npm run verify` release gate on ordinary pushes and pull
13
+ requests so CI cannot silently omit evidence, README-flow, or package checks.
14
+
15
+ ### Changed
16
+
17
+ - Use one shared 30-skill recommended active-set limit in planning, inventory,
18
+ upgrade guidance, CLI defaults, and public workflow documentation.
19
+ - Clearly archive superseded dashboard-era release notes and keep the public launch
20
+ checklist aligned with completed demo work and the current CLI-only product.
21
+
5
22
  ## 0.5.8 - 2026-07-21
6
23
 
7
24
  ### Fixed
package/MASTER_PLAN.md CHANGED
@@ -13,7 +13,7 @@ history** is evidence of how the product was built, not unfinished launch scope.
13
13
 
14
14
  ### Product complete
15
15
 
16
- - [x] Publish the CLI as `loadout-ai@0.5.8`; keep the product usable without cloning
16
+ - [x] Publish the CLI as `loadout-ai`; keep the product usable without cloning
17
17
  this repository or providing an OpenAI/Anthropic API key.
18
18
  - [x] Ship Stable, Power, Maximum, and Custom profiles with preview-first apply,
19
19
  snapshots, drift protection, explicit rollback, removal, and complete uninstall.
@@ -46,10 +46,10 @@ history** is evidence of how the product was built, not unfinished launch scope.
46
46
 
47
47
  ### Submission work
48
48
 
49
- - [ ] Record the real CLI demo using `docs/DEMO_SCRIPT.md`; keep it under three
49
+ - [x] Record the real CLI demo using `docs/DEMO_SCRIPT.md`; keep it under three
50
50
  minutes, include a voiceover, upload it publicly to YouTube, and verify the URL.
51
- - [ ] Replace the README demo placeholder with the final YouTube link.
52
- - [ ] In the voiceover, explain what Loadout does and how Codex and GPT-5.6 were used.
51
+ - [x] Replace the README demo placeholder with the final YouTube link.
52
+ - [x] In the voiceover, explain what Loadout does and how Codex and GPT-5.6 were used.
53
53
  - [ ] Run `/feedback` in Codex, copy the resulting session ID, and enter it in Devpost.
54
54
  - [x] Confirm the public repository URL is accessible to Devpost and OpenAI.
55
55
  - [x] Confirm all team invitations are accepted. Both teammates are collaborators and
@@ -72,12 +72,12 @@ These are not launch blockers and should not be rebuilt before submission:
72
72
  - Restoring GitHub-hosted Actions capacity before submission; the full gate can run
73
73
  locally, and the latest completed `main` CI is already passing.
74
74
 
75
- ## Archived current-status diary (historical, not active scope)
75
+ ## Archived implementation diary (historical, not active scope)
76
76
 
77
- This section preserves the chronological implementation and founder-testing record.
78
- Its unchecked boxes may describe older release numbers, superseded acceptance paths,
79
- external research, or intentionally deferred work. They are not active launch tasks;
80
- use the launch finish line above.
77
+ Everything below this heading is a frozen chronological implementation record. Its
78
+ dashboard references, old release numbers, unchecked boxes, and superseded acceptance
79
+ paths describe earlier product states; they are neither current capabilities nor
80
+ active launch tasks. Use only the launch finish line above for current status.
81
81
 
82
82
  ### Implemented product work
83
83
 
package/README.md CHANGED
@@ -34,7 +34,7 @@
34
34
  You need Node.js 20 or newer and Git.
35
35
 
36
36
  ```bash
37
- npm install --global loadout-ai@0.5.8
37
+ npm install --global loadout-ai@0.5.9
38
38
  loadout setup --mode stable
39
39
  ```
40
40
 
@@ -112,13 +112,19 @@ their own explicit setup and permission steps.
112
112
 
113
113
  ### Demo
114
114
 
115
- **Demo video coming here.** The release walkthrough will show the real path, not a
116
- mock UI: Stable install, cross-agent inventory, project optimization, update and
117
- discovery checks, MCP setup, Graphify, rollback, and complete uninstall. The exact
118
- under-three-minute [recording and voiceover script](./docs/DEMO_SCRIPT.md) is public.
115
+ <p align="center">
116
+ <a href="https://www.youtube.com/watch?v=opNqJKX7xMw">
117
+ <img src="https://img.youtube.com/vi/opNqJKX7xMw/maxresdefault.jpg" alt="Watch the 72-second Loadout demo" width="880">
118
+ </a>
119
+ </p>
120
+
121
+ **[Watch the 72-second Loadout demo on YouTube](https://www.youtube.com/watch?v=opNqJKX7xMw).**
122
+ It shows the real CLI product, including profiles, project-aware selection,
123
+ discovery, explicit integrations, and snapshot-backed rollback. The exact
124
+ [recording and voiceover script](./docs/DEMO_SCRIPT.md) is public.
119
125
 
120
- For now, the [end-to-end acceptance guide](./docs/USER_TEST_GUIDE.md) contains the same
121
- commands you can run yourself.
126
+ The [end-to-end acceptance guide](./docs/USER_TEST_GUIDE.md) contains the commands
127
+ you can run yourself.
122
128
 
123
129
  ## Stable workflow
124
130
 
@@ -324,7 +330,7 @@ The bundled catalog currently contains **53 credited public repositories** acros
324
330
 
325
331
  <!-- loadout:evidence-stages:start -->
326
332
 
327
- Catalog maturity: **53 sourced**, **53 technically inspected**, and **4 selected for Stable**. Independent human-review attestations and signed comparative benchmarks are not yet published, so Loadout does not pretend static inspection proves usefulness. The pinned catalog remains usable today, and local outcomes can be recorded to improve later rankings. Definitions and promotion rules are in the [catalog policy](./docs/CATALOG_POLICY.md).
333
+ Catalog maturity: **53 sourced**, **53 technically inspected**, and **4 selected for Stable**. Independent human-review attestations are not yet published, so Loadout does not pretend static inspection proves usefulness. The pinned catalog remains usable today, and local outcomes can be recorded to improve later rankings. Definitions and promotion rules are in the [catalog policy](./docs/CATALOG_POLICY.md).
328
334
 
329
335
  <!-- loadout:evidence-stages:end -->
330
336
 
@@ -332,7 +338,7 @@ Loadout does not claim there is one universally “best” configuration. Recomm
332
338
 
333
339
  <!-- loadout:daily-discovery:start -->
334
340
 
335
- **Discovery snapshot (generated 2026-07-21):** [240 repositories observed](./docs/DISCOVERED.md), including 216 uncataloged review candidates and 24 repositories already in the inspected catalog.
341
+ **Discovery snapshot (generated 2026-08-27):** [236 repositories observed](./docs/DISCOVERED.md), including 217 uncataloged review candidates and 19 repositories already in the inspected catalog.
336
342
  <!-- loadout:daily-discovery:end -->
337
343
 
338
344
  The checked-in discovery report proves only its dated snapshot, not the success of every scheduled run. Use `loadout discover --source all --queue`, `loadout review-queue`, and `loadout candidate inspect owner/repository` to inspect candidates before catalog promotion.
@@ -341,7 +347,7 @@ The checked-in discovery report proves only its dated snapshot, not the success
341
347
 
342
348
  - A pinned commit identifies source bytes; it does not prove safety, correct licensing, usefulness, or future compatibility.
343
349
  - Static inspection reports scripts, hooks, binaries, domains, credential references, and unsupported components. It is not a security audit.
344
- - No bundled source is called benchmarked until isolated real trials, signed evidence, and human approval exist.
350
+ - No bundled source is called proven until human review and recorded local outcomes support it; static inspection alone never earns that label.
345
351
  - Project recommendations read bounded local metadata. The documented local flow does not upload project source.
346
352
  - Catalog fetches, discovery, update checks, and optional live checks use the network where stated.
347
353
  - MCP servers and executable tools have separate preview and approval paths because they can use credentials, start processes, or contact services.
@@ -435,7 +441,7 @@ without loading thousands of skills into every prompt.
435
441
  | Ecosystem research | Compared repositories, checked source layouts and licenses, and separated popularity from evidence | 53 pinned catalog sources plus a discovery snapshot watching 240 repositories |
436
442
  | Implementation | Wrote and refactored CLI commands, schemas, source fetchers, installers, active-set logic, and MCP configuration | The published `loadout-ai` package and the commands documented above |
437
443
  | Safety work | Looked for scripts, hooks, binaries, credential references, target collisions, stale previews, and external edits | Preview-first changes, quarantined skill units, explicit risk approval, drift protection, and rollback |
438
- | Testing | Generated adversarial cases, reproduced failures from real terminal sessions, and converted them into regression tests | 625 passing tests, CLI and README end-to-end flows, package smoke tests, and a 1,000-skill performance gate |
444
+ | Testing | Generated adversarial cases, reproduced failures from real terminal sessions, and converted them into regression tests | 632 passing tests, CLI and README end-to-end flows, package smoke tests, and a 1,000-skill performance gate |
439
445
  | Team integration | Audited teammate branches, compared them with `main`, prepared focused pull requests, and checked what was actually complete | One public history instead of three disconnected prototypes |
440
446
  | Release work | Verified npm contents, version behavior, GitHub metadata, documentation claims, and public CI | A public npm package, credited upstream catalog, release evidence, and a reproducible verification command |
441
447