loadout-ai 0.9.1 → 0.9.3

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
@@ -2,6 +2,54 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.9.3 - 2026-09-07
6
+
7
+ ### Changed
8
+
9
+ - Unified README around the full Loadout lifecycle: discover, curate, activate,
10
+ handoff, and coordinate — with a single hero image covering all five stages.
11
+ - Added prominent documentation for one-command bounded Claude Code ↔ Codex
12
+ design discussions (`loadout coord discuss start`).
13
+ - Aligned the GitHub social-preview asset with the unified workflow narrative.
14
+ - Moved npm release authentication fully to trusted publishing (OIDC), removing
15
+ the legacy publish-token fallback.
16
+
17
+ ## 0.9.2 - 2026-09-06
18
+
19
+ ### Changed
20
+
21
+ - Coordination discussion output now removes duplicate lifecycle noise, shows a
22
+ single outcome section, and identifies the provider in every provider error.
23
+ - Maximum Library preparation now skips packages that cannot be safely prepared
24
+ and clearly reports that the remaining reviewed library can still install.
25
+
26
+ ### Fixed
27
+
28
+ - Bound overlong provider-synthesized decisions to the coordination event limit
29
+ instead of failing after all paid discussion turns have completed.
30
+ - Materialize multi-path ownership claims once per normalized path so snapshots
31
+ and status output do not repeat the full claim for every path.
32
+ - Close the Claude Code subprocess stdin explicitly, avoiding its empty-input
33
+ wait before a bounded coordination turn begins.
34
+ - Forward cancellation and timeout signals natively to both Claude Code and the
35
+ Codex SDK so a timed-out paid turn cannot keep running while Loadout starts a
36
+ replacement turn.
37
+ - Restore files before reapplying read-only directory modes and reject snapshot
38
+ modes containing special permission bits.
39
+ - Preserve strictly increasing coordination sequence order after checkpoint
40
+ compaction.
41
+ - Treat all reviewed commits for a shared catalog repository as valid when
42
+ detecting upstream catalog drift.
43
+ - Apply the default repository timeout to generic HTTPS and SSH Git sources as
44
+ well as catalog GitHub sources.
45
+
46
+ ### Security
47
+
48
+ - Expand deterministic instruction-injection signatures and document the
49
+ repository-grounded threat model in `loadout-threat-model.md`.
50
+
51
+ ## 0.9.1 - 2026-09-05
52
+
5
53
  ### Added
6
54
 
7
55
  - Snapshot capture and restore preserve Unix file permission modes, with
package/README.md CHANGED
@@ -1,16 +1,9 @@
1
- <p align="center">
2
- <img src="./docs/assets/loadout-discover-activate.webp" alt="Loadout discovers agent skills, tools, and MCP servers; screens and pins them; activates the right set for a repository; and lets users preview or roll back every change." width="960">
3
- </p>
4
-
5
1
  <h1 align="center">Loadout</h1>
6
2
 
7
- <p align="center"><strong>Agent extensions, under control.</strong></p>
3
+ <p align="center"><strong>Manage skills for 12 coding agents. Hand off and coordinate work between Claude Code and Codex.</strong></p>
8
4
 
9
5
  <p align="center">
10
- <strong>The package manager for your AI coding setup.</strong><br>
11
- Find skills worth having, activate the right ones per project,<br>
12
- install them across 12 agents, hand work from Claude Code to Codex,<br>
13
- and undo any of it.
6
+ <img src="./docs/assets/loadout-unified-workflow-v2.webp" alt="Loadout discovers, curates, and activates skills, tools, and MCP servers for coding agents, then helps Claude Code and Codex handoff and coordinate work through durable tasks, bundled context, ownership, contracts, and decisions." width="960">
14
7
  </p>
15
8
 
16
9
  <p align="center">
@@ -23,186 +16,158 @@
23
16
  </p>
24
17
 
25
18
  <p align="center">
26
- <a href="#what-it-looks-like">See it</a> ·
27
- <a href="#install">Install</a> ·
28
- <a href="#use-it-from-inside-your-agent">Use it in your agent</a> ·
29
- <a href="#passing-work-between-two-agents">Two agents</a> ·
30
- <a href="#why-loadout">Why</a> ·
19
+ <a href="#try-it-in-30-seconds">Quick start</a> ·
20
+ <a href="#use-claude-code-and-codex-together">Two agents</a> ·
21
+ <a href="#try-these-prompts">Agent skills</a> ·
22
+ <a href="#safety-and-trust">Safety</a> ·
31
23
  <a href="#command-reference">Commands</a>
32
24
  </p>
33
25
 
34
- ## What it looks like
35
-
36
- ```console
37
- $ loadout doctor
38
- loadout doctor — HEALTHY
39
-
40
- Platform: darwin
41
- State: ~/.loadout ✓ writable
42
- Agents: 3 detected, 9 available
43
-
44
- DETECTED AGENTS
45
- ✓ Claude Code
46
- ~/.claude/skills
47
- 43 skills | supports: skill, command, agent, mcp, plugin, root
48
- Codex
49
- ~/.agents/skills
50
- 30 skills | supports: skill, command, agent, mcp, plugin, root
51
-
52
- $ loadout recommend --project .
53
- Project: checkout-service
54
- Detected: TypeScript, Zod, Vitest, next.js, react
55
-
56
- Rule-based project suggestions:
57
- superpowers [high, skill library] — Useful engineering planning, testing, and review workflows.
58
- context7 [high, skill library] — Current library documentation helps agents avoid outdated APIs.
59
- ui-ux-pro-max [high, skill library] — Frontend framework detected: next.js, react.
60
- playwright-mcp [medium, MCP/runtime setup] — Browser verification may help test the detected frontend.
26
+ ## Try it in 30 seconds
27
+
28
+ You need Node.js 20 or newer and Git.
29
+
30
+ ```bash
31
+ npm install --global loadout-ai
32
+ loadout setup --mode stable
33
+ ```
34
+
35
+ The second command detects your coding agents and previews the 30-skill Stable
36
+ loadout. It does not change agent files. Review the plan, then apply it:
37
+
38
+ ```bash
39
+ loadout setup --mode stable --yes
40
+ loadout status
61
41
  ```
62
42
 
63
- It reads your repository rather than a config file, knows which agents you
64
- actually have, and previews and snapshots every write before it touches them.
43
+ Loadout saves a rollback snapshot before applying changes. Run
44
+ `loadout rollback` to restore the previous managed state.
65
45
 
66
- ### Demo
46
+ > `Preview complete; nothing was changed. Re-run with --yes to install this exact screened plan.`
67
47
 
68
- <p align="center">
69
- <a href="https://www.youtube.com/watch?v=opNqJKX7xMw">
70
- <img src="https://img.youtube.com/vi/opNqJKX7xMw/maxresdefault.jpg" alt="Watch the 72-second Loadout demo" width="880">
71
- </a>
72
- </p>
48
+ A later `--yes` invocation recomputes the plan from pinned sources and current agent and filesystem state; it does not persist or prove identity with the earlier preview.
73
49
 
74
- **[Watch the 72-second Loadout demo on YouTube](https://www.youtube.com/watch?v=opNqJKX7xMw).**
50
+ ## What Loadout does
75
51
 
76
- ## Install
52
+ | Capability | What you get |
53
+ | -------------- | --------------------------------------------------------------------- |
54
+ | **Discover** | Find skills, tools, and MCP servers worth reviewing |
55
+ | **Curate** | Inspect, screen, and pin sources before trusting them |
56
+ | **Activate** | Install a focused set for this repository across your agents |
57
+ | **Handoff** | Pass durable tasks with bundled context between Claude Code and Codex |
58
+ | **Coordinate** | Share file ownership, contracts, decisions, and acknowledgements |
77
59
 
78
- You need Node.js 20 or newer and Git.
60
+ The package manager works across supported agents. Handoff and coordination are
61
+ currently designed for Claude Code and Codex working in the same repository.
62
+
63
+ ## Use Claude Code and Codex together
64
+
65
+ ### Handoff: pass a task that survives sessions
79
66
 
80
67
  ```bash
81
- npm install --global loadout-ai
82
- loadout setup --mode stable
68
+ loadout handoff codex "write unit tests for auth" --bundle src/auth.ts src/types.ts --verify "tests pass" --verify-command npm --verify-args '["test"]'
69
+ ```
70
+
71
+ Codex sees the task when it checks its inbox, works from the attached bounded
72
+ context, and marks it done. Claude Code can then read the result. Handoffs live
73
+ in an append-only project log, so restarting either agent does not erase them.
74
+ Bundles contain secret-redacted text and are capped at 50 KiB total; still
75
+ review them before committing and never attach credential files.
76
+
77
+ ### Coordinate: work at the same time without stepping on files
78
+
79
+ ```bash
80
+ loadout coord start --agents claude-code,codex # preview ownership
81
+ loadout coord start --agents claude-code,codex --yes # apply ownership
82
+ loadout coord snapshot codex # inspect shared state
83
+ loadout coord discuss start "REST or GraphQL?" --agents claude-code,codex --rounds 2 --max-turns 5
83
84
  ```
84
85
 
85
- The second command detects your agents and previews the 30-skill Stable loadout.
86
- Nothing changes until you approve it. If anything goes wrong, start with the
87
- [user test guide](./docs/USER_TEST_GUIDE.md).
86
+ Coordination is structured shared project state, not shared memory or a merged
87
+ context window. Events reach an agent at safe turn boundaries or when it checks
88
+ its snapshot; Loadout does not interrupt a turn in progress.
88
89
 
89
- For a reproducible install, pin the release: `npm install --global loadout-ai@0.9.1`.
90
+ ### Let Claude and Codex debate one decision
90
91
 
91
- ## Use it from inside your agent
92
+ You prompt once and Loadout calls both providers in bounded turns—propose,
93
+ critique, synthesize—then records the decision. Neither agent can inject into
94
+ the other's in-progress turn; events arrive at safe turn boundaries. Each
95
+ round consumes paid provider turns from your configured Claude and Codex quota.
96
+ The bounded design discussion reports its turn budget before it starts.
92
97
 
93
- A CLI you have to leave your agent to run is a context switch. Loadout ships two
94
- skills so you do not have to: one for agent handoffs and one for choosing a
95
- focused skill set for the current repository.
98
+ See the [live coordination guide](./docs/LIVE_COLLABORATION.md) for ownership,
99
+ contracts, acknowledgements, discussions, the local dashboard, and limitations.
100
+
101
+ ## Try these prompts
102
+
103
+ Install Loadout's two first-party skills once so your agent knows the workflow:
96
104
 
97
105
  ```bash
98
106
  loadout skills install loadout-handoff --yes
99
107
  loadout skills install loadout-curator --yes
100
108
  ```
101
109
 
102
- Start a new agent session and just ask, in the conversation you are already in:
110
+ Then ask naturally:
103
111
 
104
112
  > _"Hand the test writing to Codex."_
113
+ >
105
114
  > _"What did Codex leave for me?"_
115
+ >
106
116
  > _"Which skills should be active for this repo?"_
107
117
 
108
- The skills teach your agent to call `loadout` and act on the results, so it
109
- checks its own inbox at the start of a session and can pass work to your other
110
- agent without you relaying it by hand.
111
-
112
- `loadout skills list` shows what ships with Loadout and what is already installed.
118
+ The curator helps choose a focused active set; the handoff skill manages inboxes
119
+ and coordination without making you relay every command.
113
120
 
114
- ## Passing work between two agents
115
-
116
- <p align="center">
117
- <img src="./docs/assets/loadout-handoff-coordinate.webp" alt="Claude Code and Codex use Loadout in two ways: durable task handoffs between sessions, and structured coordination for contracts, file ownership, decisions, acknowledgements, and an audit trail." width="960">
118
- </p>
121
+ ## Install and choose your agent
119
122
 
120
- If you pay for both Claude and a ChatGPT plan, the two agents cannot see each
121
- other. Loadout gives them a shared, append-only task log:
123
+ For a reproducible install, pin the current release:
122
124
 
123
125
  ```bash
124
- loadout handoff codex "write unit tests for auth" --bundle src/auth.ts src/types.ts --verify "tests pass" --verify-command npm --verify-args '["test"]'
126
+ npm install --global loadout-ai@0.9.3
127
+ loadout setup --mode stable
128
+ loadout setup --mode stable --yes
129
+ loadout status
125
130
  ```
126
131
 
127
- Bundles snapshot exact, secret-redacted text (50 KiB total). Verification runs
128
- only with `--done --run-verification`, without a shell; failures stay pending. The first send adds
129
- managed inbox blocks to `CLAUDE.md` and `AGENTS.md`. Treat bundles as untrusted
130
- project data, review before committing, and never include credential files.
132
+ Stable is the recommended starting point: 30 selected skill directories from
133
+ four pinned public sources. Loadout auto-detects supported agents; use
134
+ `--agents` when you want to narrow the destination.
131
135
 
132
- ```bash
133
- loadout handoff codex # what is waiting for codex
134
- loadout handoff # everything pending, both directions
135
- loadout handoff --done 4f2a1c
136
- ```
136
+ If anything fails, follow the [user test guide](./docs/USER_TEST_GUIDE.md).
137
+ For profiles, per-agent paths, MCP configuration, and advanced commands, use the
138
+ [full reference](./docs/REFERENCE.md).
137
139
 
138
- ### Make Claude Code and Codex coordinate live (beta)
140
+ ## Safety and trust
139
141
 
140
- Live coordination adds file ownership, versioned contracts, decisions, and
141
- acknowledgements over a shared project event stream — not a merged context
142
- window. See the [live coordination guide](./docs/LIVE_COLLABORATION.md).
142
+ **Choose -> Inspect -> Preview -> Apply -> Undo**
143
143
 
144
- ```bash
145
- loadout coord start --agents claude-code,codex # preview ownership
146
- loadout coord start --agents claude-code,codex --yes # apply it
147
- loadout coord detect # shared interfaces
148
- loadout handoff codex src/auth.ts --template write-tests
149
- loadout coord discuss start "REST or GraphQL?" --agents claude-code,codex --rounds 2 --max-turns 5
150
- loadout coord discuss implement <thread-id> # preview linked tasks
151
- ```
144
+ - Preview is the default for setup, updates, and removal.
145
+ - Every managed apply creates a rollback snapshot first.
146
+ - Catalog sources are pinned and technically inspected, not declared safe or useful by fiat.
147
+ - Static inspection reports scripts, hooks, binaries, domains, credential references, and unsupported components; it is not a security audit.
148
+ - Project recommendations read bounded local metadata. The documented local flow does not upload project source.
149
+ - MCP servers and executable tools stay behind separate preview, permission, and setup steps.
150
+ - Shared manifests store environment-variable or OS-keychain references, not secret values.
152
151
 
153
- Contract publication and bounded design discussion implementation require a second `--yes`
154
- approval. Exact supported declarations are marked current or stale; ambiguous
155
- ones require manual review. The optional MCP server and provider bridge deliver
156
- events at safe turn boundaries, never during an active turn. The
157
- [coordination guide](./docs/LIVE_COLLABORATION.md) covers templates, Git-author
158
- mappings, the local dashboard, limitations, and the complete workflow.
152
+ <!-- loadout:current-limits:start -->
159
153
 
160
- ## How it works
154
+ - All catalog records have identified SPDX licenses. See the [recorded license decisions](./docs/UPSTREAM_LICENSE_DECISIONS.md) for the source-by-source record.
161
155
 
162
- **Choose -> Inspect -> Preview -> Apply -> Undo**
156
+ <!-- loadout:current-limits:end -->
163
157
 
164
- 1. **Choose** Stable, Power, Maximum, or your own package list.
165
- 2. **Inspect** where each extension comes from and what it can do.
166
- 3. **Preview** every planned change without changing agent files.
167
- 4. **Apply** with `--yes`; Loadout saves a rollback snapshot first.
168
- 5. **Undo** with `loadout rollback` if you change your mind.
169
-
170
- ### Abridged terminal transcript
171
-
172
- This is an explicitly abridged transcript from a disposable Stable run. A literal `…` marks omitted fetch output; `<snapshot-id>` is a variable placeholder because snapshot IDs vary. Loadout auto-detects installed agents; `--agents` narrows the selection when needed.
173
-
174
- ```console
175
- $ loadout setup --mode stable
176
-
177
- Loadout: Stable
178
- Detected agents: Claude Code, Cursor, Codex
179
- Catalog selection: 4 repositories
180
- Ready to install: 4 skill repositories (30 agent skill directories)
181
- Preview complete; nothing was changed. Re-run with --yes to install this exact screened plan.
182
-
183
- $ loadout setup --mode stable --yes
184
-
185
- Loadout installed 4 repositories for 3 agent(s). Snapshot: <snapshot-id>
186
-
187
- $ loadout rollback
188
- Restored snapshot <snapshot-id>
189
-
190
- $ loadout handoff codex "write tests for the auth module" --context "zod schemas exist"
191
- created .handoff/
192
- told codex to check its inbox
193
- Sent to codex: write tests for the auth module
194
-
195
- $ loadout doctor
196
- loadout doctor — HEALTHY
197
- Platform: darwin
198
- State: ~/.loadout ✓ writable
199
- Agents: 3 detected, 9 available
200
- ```
158
+ Read the [security policy](./SECURITY.md), [catalog policy](./docs/CATALOG_POLICY.md),
159
+ and [credential and update policy](./docs/CREDENTIAL_AND_UPDATE_POLICY.md) before
160
+ trusting third-party content.
161
+
162
+ ## Demo
201
163
 
202
- The final preview sentence above is captured CLI wording. A later `--yes` invocation recomputes the plan from pinned sources and current agent and filesystem state; it does not persist or prove identity with the earlier preview.
164
+ <p align="center">
165
+ <a href="https://www.youtube.com/watch?v=opNqJKX7xMw">
166
+ <img src="https://img.youtube.com/vi/opNqJKX7xMw/maxresdefault.jpg" alt="Watch the 72-second Loadout demo" width="880">
167
+ </a>
168
+ </p>
203
169
 
204
- Preview may fill Loadout's private download cache, but it does not change your agent
205
- files. Review the summary and warnings before approving an apply command.
170
+ **[Watch the 72-second Loadout demo on YouTube](https://www.youtube.com/watch?v=opNqJKX7xMw).**
206
171
 
207
172
  ## Why Loadout
208
173
 
@@ -225,7 +190,7 @@ structured project facts when Claude Code and Codex work together.
225
190
 
226
191
  Everything on this page is enforced. `docs/evidence/readme-claims.json` records
227
192
  each material claim with the code or command that proves it, and CI fails the
228
- build when the README and the implementation disagree including the pinned
193
+ build when the README and the implementation disagree—including the pinned
229
194
  version in the install line above.
230
195
 
231
196
  Loadout watches a much wider catalog than it activates. You can keep thousands of
@@ -243,53 +208,30 @@ everything into every prompt.
243
208
  | Manually remember what was changed | Scan, reconcile, remove, roll back, or completely uninstall |
244
209
 
245
210
  Loadout is local, open source, and preview-first. It does not need an LLM API key
246
- to manage skills. MCP servers and executable tools stay behind their own explicit
247
- setup and permission steps.
248
-
249
- ## Stable workflow
250
-
251
- ### Stable: install the essentials and start building
252
-
253
- Stable is the recommended daily driver: **30 selected skill directories from four
254
- pinned public sources**, installed into each agent you choose.
255
-
256
- ```bash
257
- loadout setup --mode stable
258
- loadout setup --mode stable --yes
259
- loadout status
260
- loadout scan
261
- loadout rollback
262
- ```
263
-
264
- Stable is Loadout's strongest general starting point, not a claim that one setup is
265
- best for every person or project.
211
+ to manage skills.
266
212
 
267
213
  ## Profiles
268
214
 
269
- | Mode | Sources | Skills | Active by default |
270
- | --------- | --------------------- | ------ | -------------------------------- |
271
- | `stable` | 4 | 30 | yes recommended starting point |
272
- | `power` | 8 | 56 | yes |
273
- | `maximum` | all reviewed | all | **no downloaded but disabled** |
274
- | `custom` | your `--package` list | varies | yes |
275
-
276
- **Maximum** downloads the entire reviewed library and leaves every skill _disabled_.
277
- Nothing reaches an agent prompt until a project activates what it needs.
215
+ | Mode | Sources | Skills | Active by default |
216
+ | --------- | --------------------- | ------ | ------------------------------ |
217
+ | `stable` | 4 | 30 | yes—recommended starting point |
218
+ | `power` | 8 | 56 | yes |
219
+ | `maximum` | all reviewed | all | **no—downloaded but disabled** |
220
+ | `custom` | your `--package` list | varies | yes |
278
221
 
279
- For detailed profile tables, source lists, and custom configuration, see the
280
- **[full reference](./docs/REFERENCE.md)**.
222
+ Maximum downloads the reviewed library and leaves every skill disabled. Nothing
223
+ reaches an agent prompt until a project activates what it needs. See the
224
+ [full reference](./docs/REFERENCE.md) for source lists and custom configuration.
281
225
 
282
226
  ## Catalog and discovery
283
227
 
284
- The catalog is not a frozen list. Loadout separates **discovery** from
285
- **installation** so a viral repo can be noticed quickly without being trusted
286
- blindly.
228
+ Discovery is separate from trust and installation. A popular new repository can
229
+ enter the review queue without being installed or promoted automatically.
287
230
 
288
231
  ```bash
289
232
  loadout discover --source all --queue
290
233
  loadout review-queue
291
234
  loadout candidate inspect owner/repository
292
- loadout update
293
235
  ```
294
236
 
295
237
  <!-- loadout:catalog-coverage:start -->
@@ -306,26 +248,9 @@ Catalog maturity: **53 sourced**, **53 technically inspected**, and **4 selected
306
248
 
307
249
  <!-- loadout:daily-discovery:start -->
308
250
 
309
- **Discovery snapshot (generated 2026-09-05):** [238 repositories observed](./docs/DISCOVERED.md), including 222 uncataloged review candidates and 16 repositories already in the inspected catalog.
251
+ **Discovery snapshot (generated 2026-09-07):** [237 repositories observed](./docs/DISCOVERED.md), including 221 uncataloged review candidates and 16 repositories already in the inspected catalog.
310
252
  <!-- loadout:daily-discovery:end -->
311
253
 
312
- ## Trust and limits
313
-
314
- - A pinned commit identifies source bytes; it does not prove safety, correct licensing, usefulness, or future compatibility.
315
- - Static inspection reports scripts, hooks, binaries, domains, credential references, and unsupported components. It is not a security audit.
316
- - No bundled source is called proven until human review and recorded local outcomes support it.
317
- - Project recommendations read bounded local metadata. The documented local flow does not upload project source.
318
- - MCP servers and executable tools have separate preview and approval paths.
319
- - Shared manifests hold environment-variable or OS-keychain references, not secret values.
320
-
321
- <!-- loadout:current-limits:start -->
322
-
323
- - All catalog records have identified SPDX licenses. See the [recorded license decisions](./docs/UPSTREAM_LICENSE_DECISIONS.md) for the source-by-source record.
324
-
325
- <!-- loadout:current-limits:end -->
326
-
327
- Read the [security policy](./SECURITY.md), [catalog policy](./docs/CATALOG_POLICY.md), and [credential and update policy](./docs/CREDENTIAL_AND_UPDATE_POLICY.md) before trusting third-party content.
328
-
329
254
  ## Agent support
330
255
 
331
256
  <!-- loadout:support-summary:start -->
@@ -344,42 +269,27 @@ Configured CI platforms describe a manually triggered workflow, not evidence tha
344
269
 
345
270
  ## Command reference
346
271
 
347
- | What it does | Command |
348
- | --------------------------------------- | ---------------------------------------------------------- |
349
- | Beginner-friendly guided path | `loadout guide` |
350
- | Preview the 30-skill Stable setup | `loadout setup --mode stable` |
351
- | Apply after reviewing the preview | `loadout setup --mode stable --yes` |
352
- | Show managed packages and active skills | `loadout status` · `loadout library` |
353
- | What fits this repository | `loadout recommend --project .` |
354
- | Project-specific active set | `loadout optimize --project . --limit 30` |
355
- | Scan existing skills across agents | `loadout scan` |
356
- | Check for source updates | `loadout update` |
357
- | Find newly launched candidates | `loadout discover --source all --queue` |
358
- | Install Loadout's own skill | `loadout skills install loadout-handoff --yes` |
359
- | Send a task to another agent | `loadout handoff codex "write tests"` |
360
- | Use a reusable handoff template | `loadout handoff codex src/auth.ts --template write-tests` |
361
- | Preview two-agent ownership setup | `loadout coord start --agents claude-code,codex` |
362
- | Detect shared contract candidates | `loadout coord detect` |
363
- | Inspect shared agent state | `loadout coord snapshot codex` |
364
- | Detect live provider runtimes | `loadout coord agents detect` |
365
- | Debate one design with both providers | `loadout coord discuss start "<topic>" ...` |
366
- | Turn a decision into linked tasks | `loadout coord discuss implement <thread-id>` |
367
- | Start the coordination MCP server | `loadout serve` |
368
- | Agent health check | `loadout doctor` |
369
- | Rollback the latest managed change | `loadout rollback` |
370
- | Preview complete removal | `loadout uninstall` |
371
- | Full CLI reference | `loadout --help` · `loadout advanced` |
372
-
373
- Most mutating commands are dry runs first. Add `--yes` to apply.
374
-
375
- ## Built with Claude and Codex
376
-
377
- Loadout was designed and built by [Viraj Mishra](https://github.com/VirajMishra1) with Claude Code and Codex.
378
-
379
- Loadout's core skill management does **not** call an LLM API or require an LLM API
380
- key. The opt-in provider bridge and design room do invoke your configured
381
- Claude/Codex sessions and spend their quota; neither is a hidden requirement for
382
- discovering, installing, or rolling back extensions.
272
+ | Goal | Command |
273
+ | ---------------------------------- | ---------------------------------------------------------- |
274
+ | Guided first run | `loadout guide` |
275
+ | Preview or apply Stable | `loadout setup --mode stable` · add `--yes` to apply |
276
+ | Inspect managed skills | `loadout status` · `loadout library` |
277
+ | Recommend for this repository | `loadout recommend --project .` |
278
+ | Activate a project-specific set | `loadout optimize --project . --limit 30` |
279
+ | Scan or update | `loadout scan` · `loadout update` |
280
+ | Send a task | `loadout handoff codex "write tests"` |
281
+ | Use a handoff template | `loadout handoff codex src/auth.ts --template write-tests` |
282
+ | Preview two-agent ownership | `loadout coord start --agents claude-code,codex` |
283
+ | Inspect coordination state | `loadout coord snapshot codex` |
284
+ | Detect shared contract candidates | `loadout coord detect` |
285
+ | Turn a decision into tasks | `loadout coord discuss implement <thread-id>` |
286
+ | Start the coordination MCP server | `loadout serve` |
287
+ | Health check | `loadout doctor` |
288
+ | Restore the previous managed state | `loadout rollback` |
289
+ | Preview complete removal | `loadout uninstall` |
290
+ | Full CLI reference | `loadout --help` · `loadout advanced` |
291
+
292
+ Most mutating commands are previews first. Add `--yes` only after reviewing the plan.
383
293
 
384
294
  ## Development
385
295
 
@@ -395,25 +305,31 @@ npm run verify:full
395
305
 
396
306
  <!-- loadout:verification-summary:end -->
397
307
 
398
- The [testing guide](./docs/TESTING.md) documents the exact checks and their boundaries.
308
+ The [testing guide](./docs/TESTING.md) documents each check and its boundary.
399
309
 
400
310
  ## Documentation
401
311
 
402
- - [Full reference (profiles, MCP, discovery, tools)](./docs/REFERENCE.md)
312
+ - [Full CLI and profile reference](./docs/REFERENCE.md)
313
+ - [User test guide](./docs/USER_TEST_GUIDE.md)
314
+ - [Live Claude Code ↔ Codex coordination](./docs/LIVE_COLLABORATION.md)
403
315
  - [Catalog and upstream credits](./docs/CATALOG.md)
404
316
  - [Catalog evidence policy](./docs/CATALOG_POLICY.md)
405
317
  - [Feature and evidence matrix](./docs/FEATURE_TEST_MATRIX.md)
406
318
  - [Testing contract](./docs/TESTING.md)
407
- - [User test guide](./docs/USER_TEST_GUIDE.md)
408
- - [Live Codex ↔ Claude collaboration design](./docs/LIVE_COLLABORATION.md)
409
319
  - [Changelog](./CHANGELOG.md)
410
320
 
411
321
  ## Contributing, security, and attribution
412
322
 
413
- See [CONTRIBUTING.md](./CONTRIBUTING.md) · [Code of Conduct](./CODE_OF_CONDUCT.md) · Report vulnerabilities through [SECURITY.md](./SECURITY.md), without credentials, private source, or unredacted state. General bugs and proposals belong in the [issue tracker](https://github.com/VirajMishra1/loadout/issues).
323
+ See [CONTRIBUTING.md](./CONTRIBUTING.md) · [Code of Conduct](./CODE_OF_CONDUCT.md) ·
324
+ Report vulnerabilities through [SECURITY.md](./SECURITY.md), without credentials,
325
+ private source, or unredacted state. General bugs and proposals belong in the
326
+ [issue tracker](https://github.com/VirajMishra1/loadout/issues).
414
327
 
415
- The catalog contains 53 credited public repositories. Inclusion records discovery and attribution; it does not transfer ownership, imply endorsement, or relicense upstream work.
328
+ The catalog contains 53 credited public repositories. Inclusion records discovery
329
+ and attribution; it does not transfer ownership, imply endorsement, or relicense
330
+ upstream work.
416
331
 
417
332
  ## License
418
333
 
419
- Loadout is licensed under the [MIT License](./LICENSE). Catalog entries retain their upstream licenses and terms.
334
+ Loadout is licensed under the [MIT License](./LICENSE). Catalog entries retain
335
+ their upstream licenses and terms.