@wairon/cli 5.1.1-dev.6 → 5.1.1-dev.8
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/README.md +7 -2
- package/dist/cli/index.js +7139 -5702
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +4149 -416
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -125,8 +125,12 @@ wairon update # check and install the latest stable release
|
|
|
125
125
|
wairon update --check # check only
|
|
126
126
|
```
|
|
127
127
|
|
|
128
|
-
Release channels: `stable` (default), `beta`, `preview` — switch with
|
|
129
|
-
`wairon update --channel <name>` (persists in `~/.wairon/config.json`).
|
|
128
|
+
Release channels: `stable` (default), `beta`, `preview`, `dev` — switch with
|
|
129
|
+
`wairon update --channel <name>` (persists in `~/.wairon/config.json`). Each
|
|
130
|
+
channel sees its own tier and every narrower one, so `stable` only ever
|
|
131
|
+
installs a `vX.Y.Z` release and `dev` sees the `-dev.N` build cut from every
|
|
132
|
+
merge to `dev`. Installing from npm, the channels are the dist-tags:
|
|
133
|
+
`@wairon/cli@latest`, `@beta`, `@preview`, `@dev`.
|
|
130
134
|
|
|
131
135
|
---
|
|
132
136
|
|
|
@@ -188,6 +192,7 @@ See [docs/cli.md](docs/cli.md). Summary:
|
|
|
188
192
|
- [Hosted server](docs/design/hosted-mcp-server.md) — self-host wairon over HTTP (Docker, auth, sizing)
|
|
189
193
|
- [Pack scoping](docs/design/pack-scoping.md) — the pack store, per-project selection, and reproducibility (design)
|
|
190
194
|
- [Connecting-agent entrypoint](docs/design/connecting-agent-entrypoint.md) — MCP `instructions`, prompts, and skill composition
|
|
195
|
+
- [Approval baselines](docs/design/approval-baseline.md) — what `lock` approves, and why it stopped rewriting your spec tree (design)
|
|
191
196
|
- [Extending wairon](docs/extending-wairon.md) — extension packs & wrapper products (with a [working example](examples/wrapper/))
|
|
192
197
|
- [Templates](docs/templates.md) — agent rendering templates
|
|
193
198
|
- [Standards](docs/standards/INDEX.md) — the architecture standards the SDD model is built on
|