sidecar-cli 0.1.5-beta.2 → 0.1.5-rc.1
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 +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -79,6 +79,18 @@ Run locally in dev mode:
|
|
|
79
79
|
npm run dev -- --help
|
|
80
80
|
```
|
|
81
81
|
|
|
82
|
+
## Release channels
|
|
83
|
+
|
|
84
|
+
Sidecar ships features through `beta` → `rc` → `stable` as version bumps — there are no per-feature channel flags. Install `@beta` to try new features early; install default (stable) for the latest promoted release.
|
|
85
|
+
|
|
86
|
+
| Channel | Current version | Notes |
|
|
87
|
+
| --- | --- | --- |
|
|
88
|
+
| stable (`latest`) | `0.1.4` | Promoted releases. Homebrew tracks this channel. |
|
|
89
|
+
| rc | _none newer than stable_ | Release candidates published only when preparing a stable cut. |
|
|
90
|
+
| beta | `0.1.5-beta.2` | Dual-runner pipelines, run replay, ambient capture via Claude Code hooks, typed validation + auto-approve, freestanding prompt specs, `sidecar demo`. |
|
|
91
|
+
|
|
92
|
+
Per-version release notes live at [github.com/karlhills/sidecar-cli/releases](https://github.com/karlhills/sidecar-cli/releases).
|
|
93
|
+
|
|
82
94
|
## Quick start
|
|
83
95
|
|
|
84
96
|
1. Initialize in a project directory:
|