docs/CANARY.md
The canary dist-tag is GSD's earliest preview channel. It exists so contributors and willing early adopters can exercise in-flight features against the long-lived dev integration branch before they have any expectation of stability.
GSD ships through three npm dist-tags, each fed by exactly one git branch. Streams do not mix.
| Branch | dist-tag | Audience | Stability |
|---|---|---|---|
dev | canary | Contributors, willing early adopters | Best-effort. May regress between cuts. Roll-forward only. |
main | next | Maintainers, RC testers | Release-candidate quality. Bug-bar enforced. |
main | latest | Everyone else | Production stable. The default npm install target. |
dev is the integration branch for in-flight feature work (typically multi-PR vertical slices like the MVP/TDD/UAT track in 1.50.0). When the dev work stabilizes, it promotes to main as an RC train (vX.Y.Z-rc.N published to next), and after the RC train bakes, the same train promotes again to latest.
A canary build NEVER becomes a next build directly, and a next build NEVER becomes a latest build directly — every promotion goes through a fresh tag and a fresh release.
# One-off invocation (npx)
npx get-shit-done-cc@canary
# Pin to the canary dist-tag globally
npm install -g get-shit-done-cc@canary
# Pin to an exact canary version
npm install -g [email protected]
The CC installer's defensive purge rewrites stale config blocks left by older GSD versions, so reinstalling on top of an existing project is safe.
✅ Do install canary when you want to:
dev is reachable end-to-endnext until resolved)❌ Do NOT install canary on:
@latest so audiences see the stable surface# Back to the current stable
npm install -g get-shit-done-cc@latest
# Or to the next/RC train
npm install -g get-shit-done-cc@next
If you have a local project that interacted with canary-only features (for instance, an MVP-mode phase planned by 1.50.0-canary), the planner artifacts in .planning/ remain valid — older GSD versions will just ignore the **Mode:** mvp field on phases.
File against the issue tracker with the bug template. Include the exact canary version (get-shit-done-cc --version reports it) so triage can route the report back into the dev stream rather than the stable stream.
docs/RELEASE-v1.50.0-canary.1.mdCHANGELOG.md