loadout-ai 0.6.0 → 0.8.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.
Files changed (133) hide show
  1. package/CHANGELOG.md +72 -0
  2. package/README.md +129 -26
  3. package/catalog/discovered.json +28469 -24524
  4. package/dist/src/cli.js +7 -2
  5. package/dist/src/commands/agents.js +6 -23
  6. package/dist/src/commands/catalog.js +186 -102
  7. package/dist/src/commands/health.js +6 -6
  8. package/dist/src/commands/inventory.js +19 -120
  9. package/dist/src/commands/lifecycle.js +13 -51
  10. package/dist/src/commands/mcp.js +10 -73
  11. package/dist/src/commands/setup.js +5 -5
  12. package/dist/src/commands/sharing.js +11 -108
  13. package/dist/src/commands/support.js +20 -9
  14. package/dist/src/core/{adapters.js → agents/adapters.js} +2 -2
  15. package/dist/src/core/{agent-inspection.js → agents/agent-inspection.js} +48 -6
  16. package/dist/src/core/{codex-mcp.js → agents/codex-mcp.js} +1 -1
  17. package/dist/src/core/{health-score-evidence.js → agents/health-score-evidence.js} +8 -8
  18. package/dist/src/core/{runtime-tools.js → agents/runtime-tools.js} +2 -2
  19. package/dist/src/core/{audit.js → catalog/audit.js} +4 -4
  20. package/dist/src/core/{catalog.js → catalog/catalog.js} +5 -5
  21. package/dist/src/core/{components.js → catalog/components.js} +2 -2
  22. package/dist/src/core/{conformance.js → catalog/conformance.js} +2 -2
  23. package/dist/src/core/{profiles.js → catalog/profiles.js} +2 -2
  24. package/dist/src/core/{provenance.js → catalog/provenance.js} +3 -3
  25. package/dist/src/core/{registry.js → catalog/registry.js} +59 -11
  26. package/dist/src/core/{safety.js → catalog/safety.js} +36 -7
  27. package/dist/src/core/{skill-compare.js → catalog/skill-compare.js} +1 -1
  28. package/dist/src/core/{skill-inventory.js → catalog/skill-inventory.js} +3 -3
  29. package/dist/src/core/{skills.js → catalog/skills.js} +1 -1
  30. package/dist/src/core/{candidate-intelligence.js → discovery/candidate-intelligence.js} +6 -6
  31. package/dist/src/core/{discovery-connector.js → discovery/discovery-connector.js} +2 -2
  32. package/dist/src/core/{evaluate.js → discovery/evaluate.js} +2 -2
  33. package/dist/src/core/{mcp-registry-discovery.js → discovery/mcp-registry-discovery.js} +1 -1
  34. package/dist/src/core/{observations.js → discovery/observations.js} +3 -3
  35. package/dist/src/core/{review-queue.js → discovery/review-queue.js} +2 -2
  36. package/dist/src/core/{skills-sh-discovery.js → discovery/skills-sh-discovery.js} +1 -1
  37. package/dist/src/core/{adopt.js → install/adopt.js} +3 -3
  38. package/dist/src/core/{catalog-install.js → install/catalog-install.js} +11 -11
  39. package/dist/src/core/{file-lock.js → install/file-lock.js} +1 -1
  40. package/dist/src/core/{install.js → install/install.js} +5 -5
  41. package/dist/src/core/{package.js → install/package.js} +3 -3
  42. package/dist/src/core/{reconcile.js → install/reconcile.js} +5 -5
  43. package/dist/src/core/{remove.js → install/remove.js} +4 -4
  44. package/dist/src/core/{snapshot.js → install/snapshot.js} +1 -1
  45. package/dist/src/core/{source.js → install/source.js} +22 -8
  46. package/dist/src/core/{sync.js → install/sync.js} +9 -9
  47. package/dist/src/core/{transaction.js → install/transaction.js} +1 -1
  48. package/dist/src/core/{uninstall.js → install/uninstall.js} +4 -4
  49. package/dist/src/core/{update.js → install/update.js} +4 -4
  50. package/dist/src/core/{cli-guide.js → reporting/cli-guide.js} +29 -45
  51. package/dist/src/core/reporting/completion.js +90 -0
  52. package/dist/src/core/{doctor.js → reporting/doctor.js} +5 -10
  53. package/dist/src/core/{freshness-alerts.js → reporting/freshness-alerts.js} +5 -5
  54. package/dist/src/core/{health.js → reporting/health.js} +6 -6
  55. package/dist/src/core/{loadout-card.js → reporting/loadout-card.js} +1 -1
  56. package/dist/src/core/{readme-claims.js → reporting/readme-claims.js} +1 -1
  57. package/dist/src/core/{readme-facts.js → reporting/readme-facts.js} +2 -2
  58. package/dist/src/core/{share-report.js → reporting/share-report.js} +3 -3
  59. package/dist/src/core/{upgrade.js → reporting/upgrade.js} +7 -7
  60. package/dist/src/core/routing/first-party-skills.js +118 -0
  61. package/dist/src/core/routing/handoff.js +314 -0
  62. package/dist/src/core/{model-config.js → routing/model-config.js} +4 -4
  63. package/dist/src/core/routing/policy.js +147 -0
  64. package/dist/src/core/{route.js → routing/route.js} +202 -39
  65. package/dist/src/core/{api.js → runtime/api.js} +4 -4
  66. package/dist/src/core/{canary.js → runtime/canary.js} +1 -1
  67. package/dist/src/core/{github.js → runtime/github.js} +1 -1
  68. package/dist/src/core/{mcp-recipes.js → runtime/mcp-recipes.js} +1 -1
  69. package/dist/src/core/{mcp.js → runtime/mcp.js} +2 -2
  70. package/dist/src/core/{scheduler.js → runtime/scheduler.js} +4 -4
  71. package/dist/src/core/{active-policy.js → workspace/active-policy.js} +2 -2
  72. package/dist/src/core/{active-set.js → workspace/active-set.js} +2 -2
  73. package/dist/src/core/{improve.js → workspace/improve.js} +3 -3
  74. package/dist/src/core/{manifest.js → workspace/manifest.js} +2 -2
  75. package/dist/src/core/{outcomes.js → workspace/outcomes.js} +3 -3
  76. package/dist/src/core/{portable.js → workspace/portable.js} +3 -3
  77. package/dist/src/core/{profile-state.js → workspace/profile-state.js} +1 -1
  78. package/dist/src/core/{recommend.js → workspace/recommend.js} +1 -1
  79. package/dist/src/core/{state.js → workspace/state.js} +3 -3
  80. package/docs/CANDIDATE_INTELLIGENCE.md +9 -2
  81. package/docs/CATALOG.md +1 -1
  82. package/docs/CREDENTIAL_AND_UPDATE_POLICY.md +1 -1
  83. package/docs/DISCOVERED.md +250 -248
  84. package/docs/FEATURE_TEST_MATRIX.md +7 -260
  85. package/docs/GITHUB_AUTHORIZATION.md +5 -0
  86. package/docs/PROVENANCE_AND_COMPARISON.md +1 -1
  87. package/docs/RELEASE_REVIEW.md +0 -1
  88. package/docs/evidence/readme-claims.json +22 -19
  89. package/package.json +7 -4
  90. package/skills/loadout-curator/SKILL.md +105 -0
  91. package/skills/loadout-router/SKILL.md +85 -0
  92. package/MASTER_PLAN.md +0 -2207
  93. package/dist/src/core/completion.js +0 -143
  94. package/dist/src/core/handoff.js +0 -161
  95. package/docs/ACTIVE_SET.md +0 -53
  96. package/docs/COMPATIBILITY_POLICY.md +0 -22
  97. package/docs/CONVERSION_AND_SANDBOX.md +0 -27
  98. package/docs/EVALUATION_PROTOCOL_V1.md +0 -300
  99. package/docs/HEAD_TO_HEAD_EVALUATION.md +0 -79
  100. package/docs/PROVIDER_CONFIGURATION.md +0 -45
  101. package/docs/README_RESEARCH.md +0 -36
  102. package/docs/REPOSITORY_STABILIZATION.md +0 -190
  103. package/docs/SAFE_UPDATE_DEMO.md +0 -25
  104. package/docs/SCHEMA_DECISIONS.md +0 -25
  105. package/docs/SUBMISSION_COPY.md +0 -90
  106. package/docs/TEAM_POLICY.md +0 -18
  107. package/docs/superpowers/plans/2026-07-19-relatable-readme-hero.md +0 -283
  108. package/docs/superpowers/plans/2026-07-20-loadout-readme-explainer.md +0 -116
  109. package/docs/superpowers/plans/2026-07-20-project-activation-safety.md +0 -469
  110. package/docs/superpowers/specs/2026-07-19-relatable-readme-hero-design.md +0 -80
  111. package/docs/superpowers/specs/2026-07-20-loadout-readme-explainer-design.md +0 -55
  112. package/docs/superpowers/specs/2026-07-20-project-activation-safety-design.md +0 -228
  113. /package/dist/src/core/{agent-health-score.js → agents/agent-health-score.js} +0 -0
  114. /package/dist/src/core/{agent-versions.js → agents/agent-versions.js} +0 -0
  115. /package/dist/src/core/{conversion.js → agents/conversion.js} +0 -0
  116. /package/dist/src/core/{paths.js → agents/paths.js} +0 -0
  117. /package/dist/src/core/{runtime-tool-recipe.js → agents/runtime-tool-recipe.js} +0 -0
  118. /package/dist/src/core/{catalog-coverage.js → catalog/catalog-coverage.js} +0 -0
  119. /package/dist/src/core/{skill-security.js → catalog/skill-security.js} +0 -0
  120. /package/dist/src/core/{community.js → discovery/community.js} +0 -0
  121. /package/dist/src/core/{github-discovery.js → discovery/github-discovery.js} +0 -0
  122. /package/dist/src/core/{private-discovery.js → discovery/private-discovery.js} +0 -0
  123. /package/dist/src/core/{ranking.js → discovery/ranking.js} +0 -0
  124. /package/dist/src/core/{atomic-file.js → install/atomic-file.js} +0 -0
  125. /package/dist/src/core/{diff.js → install/diff.js} +0 -0
  126. /package/dist/src/core/{update-watch.js → install/update-watch.js} +0 -0
  127. /package/dist/src/core/{loadout-badge.js → reporting/loadout-badge.js} +0 -0
  128. /package/dist/src/core/{terminal.js → reporting/terminal.js} +0 -0
  129. /package/dist/src/core/{access.js → routing/access.js} +0 -0
  130. /package/dist/src/core/{credentials.js → routing/credentials.js} +0 -0
  131. /package/dist/src/core/{sandbox.js → runtime/sandbox.js} +0 -0
  132. /package/dist/src/core/{active-limit.js → workspace/active-limit.js} +0 -0
  133. /package/dist/src/core/{target-occupancy.js → workspace/target-occupancy.js} +0 -0
package/CHANGELOG.md CHANGED
@@ -2,6 +2,78 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.8.0 - 2026-09-02
6
+
7
+ ### Security
8
+
9
+ - Reject a remote registry bundle whose `digest` is not a SHA-256 hex string,
10
+ and verify the resolved cache path stays under the cache root, before any
11
+ recursive delete. A crafted digest could previously escape the cache and
12
+ delete an arbitrary user-accessible directory.
13
+ - Fail closed in the safety scanner. Files that are oversized, unreadable, or
14
+ too deeply nested are reported as a blocking `uninspectable` finding instead
15
+ of being skipped silently, so an unreviewable file can no longer produce a
16
+ clean report.
17
+ - Apply a timeout, byte cap, and file cap to every repository fetch by default
18
+ rather than only when a caller opts in, and bound registry responses by time
19
+ and decoded size.
20
+
21
+ ### Fixed
22
+
23
+ - Parse the handoff log line by line. A single truncated write previously made
24
+ the whole inbox appear empty; good lines now survive and the corrupt line is
25
+ reported.
26
+ - Settle handoff tasks on `error` and `cancel` as well as `done`, via an
27
+ explicit `resolves` field, so a failed task no longer stays pending forever.
28
+ - Migrate handoff instruction blocks already written into `CLAUDE.md` and
29
+ `AGENTS.md` that still name retired commands.
30
+ - Report installed skills as a count of skills rather than a sum of every
31
+ nested file, which overstated 44 skills as 584 items.
32
+
33
+ ### Changed
34
+
35
+ - Generate shell completions from the Commander command tree so they cannot
36
+ advertise commands the CLI does not register.
37
+ - Rebuild `loadout route` around a routing policy the user owns
38
+ (`~/.loadout/routing.json`, three buckets) instead of a fixed phase-to-tier
39
+ table, and narrow the model catalog to the current Claude and GPT-5.6 tiers.
40
+ - Collapse handoff to a single command that sets itself up on first use.
41
+
42
+ ### Added
43
+
44
+ - `scripts/check-documented-commands.mjs` in the evidence gate: documentation
45
+ may no longer reference a command the CLI does not have.
46
+
47
+ ## 0.7.0 - 2026-08-31
48
+
49
+ ### Added
50
+
51
+ - First-party skills (`loadout skills list|install|remove`) shipping
52
+ `loadout-router` and `loadout-curator`, so Loadout is usable from inside an
53
+ agent conversation rather than only from a terminal.
54
+
55
+ ### Changed
56
+
57
+ - Retire 15 redundant or dead-end commands, taking the surface from 66 to 26.
58
+ - Group the 86 flat modules in `src/core` into eight domains.
59
+ - Drop "Boost" from the mode names and explain that Maximum stays disabled.
60
+
61
+ ## 0.6.0 - 2026-08-31
62
+
63
+ ### Added
64
+
65
+ - `loadout route`, recommending a model tier for a task with real pricing.
66
+ - `loadout handoff`, a shared task log between Claude Code and Codex.
67
+
68
+ ### Changed
69
+
70
+ - Rewrite `loadout doctor` output around a health grade and actionable next
71
+ steps rather than a per-component dump.
72
+
73
+ ### Fixed
74
+
75
+ - Resolve `LOADOUT_VERSION` from both source and built layouts.
76
+
5
77
  ## 0.5.9 - 2026-07-21
6
78
 
7
79
  ### Fixed
package/README.md CHANGED
@@ -8,7 +8,8 @@
8
8
 
9
9
  <p align="center">
10
10
  <strong>The package manager for your AI coding setup.</strong><br>
11
- Discover broadly. Activate the right tools for each project. Stay current without starting over.
11
+ Install skills across 12 agents. Route each task to the right model.<br>
12
+ Hand work between Claude Code and Codex. Undo any of it.
12
13
  </p>
13
14
 
14
15
  <p align="center">
@@ -21,14 +22,45 @@
21
22
  </p>
22
23
 
23
24
  <p align="center">
25
+ <a href="#what-it-looks-like">See it</a> ·
24
26
  <a href="#install">Install</a> ·
25
- <a href="#why-loadout">Why Loadout</a> ·
26
- <a href="#profiles">Profiles</a> ·
27
- <a href="#catalog-and-discovery">Discover</a> ·
27
+ <a href="#use-it-from-inside-your-agent">Use it in your agent</a> ·
28
+ <a href="#working-across-two-agents">Two agents</a> ·
29
+ <a href="#why-loadout">Why</a> ·
28
30
  <a href="#trust-and-limits">Trust</a> ·
29
31
  <a href="#command-reference">Commands</a>
30
32
  </p>
31
33
 
34
+ ## What it looks like
35
+
36
+ ```console
37
+ $ loadout status
38
+ Loadout — grade A: Healthy and up to date
39
+
40
+ ✓ Claude Code
41
+ ~/.claude/skills
42
+ 43 skills | supports: skill, command, agent, mcp, plugin, root
43
+ ✓ Codex
44
+ ~/.agents/skills
45
+ 30 skills | supports: skill, command, agent, mcp, plugin, root
46
+
47
+ $ loadout route
48
+ Default routing policy (not saved yet)
49
+
50
+ hard Claude Opus 5 $5/$25 per M
51
+ architecture, security, migrations, tricky debugging, risky review
52
+ normal Claude Sonnet 5 $3/$15 per M
53
+ most implementation, ordinary debugging, refactors
54
+ cheap GPT-5.6 Luna $0.2/$1.2 per M
55
+ tests, docs, boilerplate, renames, mechanical edits
56
+
57
+ Change it: loadout route --set normal=gpt-5.6-terra
58
+ ```
59
+
60
+ The routing policy is a file you own, not a table I decided for you. Loadout
61
+ knows which agents you actually have, prices the tradeoff before you spend the
62
+ tokens, and previews and snapshots every write.
63
+
32
64
  ## Install
33
65
 
34
66
  You need Node.js 20 or newer and Git.
@@ -42,6 +74,50 @@ The second command detects your agents and previews the 30-skill Stable loadout.
42
74
  Nothing changes until you approve it. If anything goes wrong, start with the
43
75
  [user test guide](./docs/USER_TEST_GUIDE.md).
44
76
 
77
+ For a reproducible install, pin the release: `npm install --global loadout-ai@0.8.0`.
78
+
79
+ ## Use it from inside your agent
80
+
81
+ A CLI you have to leave your agent to run is a context switch. Loadout ships its
82
+ own skill so you do not have to:
83
+
84
+ ```bash
85
+ loadout skills install loadout-router --yes
86
+ ```
87
+
88
+ Start a new agent session and just ask, in the conversation you are already in:
89
+
90
+ > _"Which model should I use to refactor this auth module?"_
91
+ > _"I'm running low on usage — what should I switch to?"_
92
+ > _"Hand the test writing to Codex."_
93
+
94
+ The skill teaches your agent to call `loadout route` and `loadout handoff` and act
95
+ on the results. It wraps the CLI rather than embedding a copy of the model table,
96
+ so pricing and model coverage update when Loadout updates instead of going stale
97
+ in a markdown file.
98
+
99
+ `loadout skills list` shows what ships with Loadout and what is already installed.
100
+
101
+ ## Working across two agents
102
+
103
+ If you pay for both Claude and a ChatGPT plan, the two agents cannot see each
104
+ other. Loadout gives them a shared, append-only task log:
105
+
106
+ ```bash
107
+ loadout handoff codex "write unit tests for auth" --context "see src/auth.ts"
108
+ ```
109
+
110
+ That is the whole thing. The first send creates the log and adds a short managed
111
+ block to `CLAUDE.md` and `AGENTS.md` telling each agent to check its inbox at the
112
+ start of a session. Only the text between the `loadout:handoff` markers is
113
+ managed; the rest of your file is left alone.
114
+
115
+ ```bash
116
+ loadout handoff codex # what is waiting for codex
117
+ loadout handoff # everything pending, both directions
118
+ loadout handoff --done 4f2a1c
119
+ ```
120
+
45
121
  ## How it works
46
122
 
47
123
  **Choose -> Inspect -> Preview -> Apply -> Undo**
@@ -59,7 +135,7 @@ This is an explicitly abridged transcript from a disposable Stable run. A litera
59
135
  ```console
60
136
  $ loadout setup --mode stable
61
137
 
62
- Loadout: Stable Boost
138
+ Loadout: Stable
63
139
  Detected agents: Claude Code, Cursor, Codex
64
140
  Catalog selection: 4 repositories
65
141
  Ready to install: 4 skill repositories (30 agent skill directories)
@@ -73,12 +149,10 @@ $ loadout rollback
73
149
  Restored snapshot <snapshot-id>
74
150
 
75
151
  $ loadout route design the authentication system
76
- Phase: plan
77
- Tier: Frontier (deep reasoning)
78
- Models: Claude Opus 5 ($5/$25)
79
- GPT-5.6 Sol ($5/$30)
80
- Agents: claude-code
81
- Why: Architecture and decomposition need deep reasoning to avoid costly rework
152
+ Task: design the authentication system
153
+
154
+ Bucket: hard architecture, security, migrations, tricky debugging, risky review
155
+ Use: Claude Opus 5 ($5/$25 per M)
82
156
 
83
157
  $ loadout doctor
84
158
  loadout doctor — HEALTHY
@@ -106,6 +180,12 @@ coding agents without making you rebuild the setup for every agent and every pro
106
180
  Most extension tools begin with a repo you already know. Loadout begins one step
107
181
  earlier: **what is actually worth knowing?** It stays with you after installation.
108
182
 
183
+ Everything on this page is enforced. `docs/evidence/readme-claims.json` records
184
+ each material claim with the code or command that proves it, and CI fails the
185
+ build when the README and the implementation disagree — including the pinned
186
+ version in the install line above. A README that cannot drift is a strange thing
187
+ to build, and it is the reason the rest of this page is worth believing.
188
+
109
189
  Loadout watches a much wider catalog than it activates. You can keep thousands of
110
190
  technically screened skill copies in the disabled Maximum library, discover new projects as
111
191
  they appear, and let each codebase pull a focused active set instead of dumping
@@ -142,7 +222,7 @@ you can run yourself.
142
222
 
143
223
  ## Stable workflow
144
224
 
145
- ### Stable Boost: install the essentials and start building
225
+ ### Stable: install the essentials and start building
146
226
 
147
227
  Stable is the recommended daily driver: **30 selected skill directories from four
148
228
  pinned public sources**, installed into each agent you choose. It covers planning,
@@ -199,9 +279,31 @@ checked by `loadout update` without moving them to a different agent path.
199
279
 
200
280
  ## Profiles
201
281
 
202
- Loadout is opinionated when you want it to be and precise when you do not.
282
+ Loadout is opinionated when you want it to be and precise when you do not. The
283
+ modes differ in one thing: how much of the reviewed catalog they install.
284
+
285
+ | Mode | Sources | Skills | Active by default |
286
+ | --------- | --------------------- | ------ | -------------------------------- |
287
+ | `stable` | 4 | 30 | yes — recommended starting point |
288
+ | `power` | 8 | 56 | yes |
289
+ | `maximum` | all reviewed | all | **no — downloaded but disabled** |
290
+ | `custom` | your `--package` list | varies | yes |
291
+
292
+ **Maximum is the one worth understanding.** It downloads the entire reviewed
293
+ library and leaves every skill _disabled_. Nothing reaches an agent prompt until
294
+ a project activates what it needs:
295
+
296
+ ```bash
297
+ loadout setup --mode maximum --yes
298
+ cd ~/code/my-app
299
+ loadout optimize --project . # scans the repo, proposes an active set
300
+ loadout activate # enable just those here
301
+ ```
302
+
303
+ That trade is deliberate: disk is cheap and context is not. A large disabled
304
+ library plus a small active set beats installing everything into every prompt.
203
305
 
204
- ### Power Boost: a larger cross-project toolkit
306
+ ### Power: a larger cross-project toolkit
205
307
 
206
308
  Power draws a skill-level allowlist from eight major collections. The prepared set
207
309
  is deduplicated and invalid units are quarantined, so the final count can be lower
@@ -349,7 +451,7 @@ Loadout does not claim there is one universally “best” configuration. Recomm
349
451
 
350
452
  <!-- loadout:daily-discovery:start -->
351
453
 
352
- **Discovery snapshot (generated 2026-08-30):** [237 repositories observed](./docs/DISCOVERED.md), including 218 uncataloged review candidates and 19 repositories already in the inspected catalog.
454
+ **Discovery snapshot (generated 2026-09-02):** [239 repositories observed](./docs/DISCOVERED.md), including 221 uncataloged review candidates and 18 repositories already in the inspected catalog.
353
455
  <!-- loadout:daily-discovery:end -->
354
456
 
355
457
  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.
@@ -392,7 +494,7 @@ Configured CI platforms describe a manually triggered workflow, not evidence tha
392
494
 
393
495
  <!-- loadout:support-summary:end -->
394
496
 
395
- Configured paths and disposable filesystem lifecycle tests do not prove that native applications recognize or execute installed skills. Use `loadout capabilities --inspect` for the local component matrix.
497
+ Configured paths and disposable filesystem lifecycle tests do not prove that native applications recognize or execute installed skills. Use `loadout doctor --verbose` for the local component matrix.
396
498
 
397
499
  ## Command reference
398
500
 
@@ -414,16 +516,17 @@ Start at the top and stop whenever Loadout does everything you need.
414
516
  | 12 | Shows candidates waiting for deeper review | `loadout review-queue` |
415
517
  | 13 | Lists MCP recipes and credential needs | `loadout mcp-recipe`; `loadout mcp-recipe --credential-free` |
416
518
  | 14 | Previews an MCP configuration | `loadout mcp-recipe playwright --agent claude-code` |
417
- | 15 | Recommends the right model and agent for a task | `loadout route design the auth system` |
418
- | 16 | Shows the full model catalog with pricing | `loadout route --models`; `loadout route --cost` |
419
- | 17 | Sends a task to another agent via file-based handoff | `loadout handoff send codex "write tests for auth"` |
420
- | 18 | Checks agent health, permissions, and setup | `loadout doctor`; `loadout doctor --verbose` |
421
- | 19 | Lists and installs isolated runtime tools such as Graphify | `loadout tool`; `loadout tool graphify` |
422
- | 20 | Lists snapshots or restores the latest managed change | `loadout rollback --list`; `loadout rollback` |
423
- | 21 | Previews removal of one managed package | `loadout remove <package-id>` |
424
- | 22 | Previews complete removal of Loadout-managed state | `loadout uninstall` |
425
- | 23 | Enables read-only daily discovery and update checks | `loadout autopilot --yes` |
426
- | 24 | Shows the complete CLI | `loadout --help`; `loadout advanced` |
519
+ | 15 | Installs Loadout's own skill into your agents | `loadout skills install loadout-router --yes` |
520
+ | 16 | Recommends the right model and agent for a task | `loadout route design the auth system` |
521
+ | 17 | Shows the full model catalog with pricing | `loadout route --models`; `loadout route --cost` |
522
+ | 18 | Sends a task to another agent via file-based handoff | `loadout handoff codex "write tests for auth"` |
523
+ | 19 | Checks agent health, permissions, and setup | `loadout doctor`; `loadout doctor --verbose` |
524
+ | 20 | Lists and installs isolated runtime tools such as Graphify | `loadout tool`; `loadout tool graphify` |
525
+ | 21 | Lists snapshots or restores the latest managed change | `loadout rollback --list`; `loadout rollback` |
526
+ | 22 | Previews removal of one managed package | `loadout remove <package-id>` |
527
+ | 23 | Previews complete removal of Loadout-managed state | `loadout uninstall` |
528
+ | 24 | Enables read-only daily discovery and update checks | `loadout autopilot --yes` |
529
+ | 25 | Shows the complete CLI | `loadout --help`; `loadout advanced` |
427
530
 
428
531
  Most mutating commands are dry runs first. After reading the preview, add `--yes` to
429
532
  apply. Commands with executable or connection risk require the additional approval