@m-kopa/launchpad-cli 0.32.1 → 0.33.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.
- package/CHANGELOG.md +49 -0
- package/dist/cli.js +649 -5
- package/dist/commands/status.d.ts +24 -0
- package/dist/commands/status.d.ts.map +1 -1
- package/dist/commands/watch.d.ts +9 -0
- package/dist/commands/watch.d.ts.map +1 -0
- package/dist/dispatcher.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/watch/capabilities.d.ts +23 -0
- package/dist/watch/capabilities.d.ts.map +1 -0
- package/dist/watch/engine.d.ts +35 -0
- package/dist/watch/engine.d.ts.map +1 -0
- package/dist/watch/index.d.ts +19 -0
- package/dist/watch/index.d.ts.map +1 -0
- package/dist/watch/model.d.ts +69 -0
- package/dist/watch/model.d.ts.map +1 -0
- package/dist/watch/phases.d.ts +20 -0
- package/dist/watch/phases.d.ts.map +1 -0
- package/dist/watch/render.d.ts +55 -0
- package/dist/watch/render.d.ts.map +1 -0
- package/dist/watch/sanitize.d.ts +14 -0
- package/dist/watch/sanitize.d.ts.map +1 -0
- package/package.json +2 -1
- package/skills/launchpad-content-pr/SKILL.md +25 -13
- package/skills/launchpad-deploy/SKILL.md +8 -5
- package/skills/launchpad-deploy-status/SKILL.md +34 -5
- package/skills/launchpad-destroy/SKILL.md +1 -1
- package/skills/launchpad-identity/SKILL.md +1 -1
- package/skills/launchpad-onboard/SKILL.md +4 -4
- package/skills/launchpad-status/SKILL.md +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,55 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
|
6
6
|
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html);
|
|
7
7
|
pre-1.0 minor bumps may carry breaking changes per ADR 0005.
|
|
8
8
|
|
|
9
|
+
## 0.33.0 — 2026-06-17
|
|
10
|
+
|
|
11
|
+
New verb: **`launchpad watch [<slug>]`** (and `launchpad status <slug> --watch`) —
|
|
12
|
+
watch an app provision to live in real time (sp-wtch7q). Run it in a second
|
|
13
|
+
terminal after a first `launchpad deploy` instead of re-running `launchpad status`
|
|
14
|
+
by hand.
|
|
15
|
+
|
|
16
|
+
- **Live phase pipeline.** The 15 provisioning stages are grouped into six phases
|
|
17
|
+
(Repo · Build · Infra · Certificate · Access · Verify) with a spinner on the
|
|
18
|
+
active phase, `stage N/15`, and **client-side** per-phase timers (the lifecycle
|
|
19
|
+
exposes only the current stage, so timings are measured from observed transitions
|
|
20
|
+
and omitted — never faked — for stages that completed before the watch attached).
|
|
21
|
+
- **Graceful terminal frames.** On live, the app URL front and centre; on failure,
|
|
22
|
+
the failing stage + reason + the exact recovery command. `Ctrl-C` stops *watching*
|
|
23
|
+
only — provisioning continues.
|
|
24
|
+
- **Capability-tiered, cross-platform.** A terminal probe selects the richest safe
|
|
25
|
+
renderer — inline live-redraw → ASCII-glyph fallback → append-only → plain — and
|
|
26
|
+
**degrades, never assumes** (Windows legacy code pages get ASCII, not garbage).
|
|
27
|
+
Piped / CI / non-TTY output is plain, escape-free text. The platform's **first
|
|
28
|
+
Windows CI matrix** (windows-latest × Git-Bash/PowerShell/cmd) runs the watcher's
|
|
29
|
+
degraded tiers.
|
|
30
|
+
- **Safe by construction.** Every bot-supplied string is escape-sanitised before it
|
|
31
|
+
reaches the terminal (no terminal-escape injection). **Zero new runtime deps** —
|
|
32
|
+
the ANSI is hand-rolled, now guarded by an assertive zero-runtime-dep CI check.
|
|
33
|
+
- A richer full-screen ("alt-screen") mode is planned as a later opt-in experimental
|
|
34
|
+
variant; this release ships the inline renderer.
|
|
35
|
+
|
|
36
|
+
## 0.32.2 — 2026-06-17
|
|
37
|
+
|
|
38
|
+
Docs: skill-accuracy sweep. Audited all bundled skills against the live
|
|
39
|
+
CLI/bot/`platform-auth` source and corrected three stale claims:
|
|
40
|
+
|
|
41
|
+
- **`launchpad-content-pr`** — the deploy section said `launchpad deploy` is
|
|
42
|
+
fire-and-forget and "always verify with `launchpad status`". Since sp-dplvfy,
|
|
43
|
+
a Model-A deploy **verifies the served content in-line by default** (waits for
|
|
44
|
+
the Pages build, byte-compares the entrypoint, exits non-zero on
|
|
45
|
+
failure/mismatch). Documented the default-verify behaviour and the
|
|
46
|
+
`--no-verify` / `--verify-timeout=<secs>` flags; `launchpad status` is now
|
|
47
|
+
framed as the fallback when verify is skipped or times out at `pending`.
|
|
48
|
+
- **`launchpad-deploy-status` + `launchpad-status`** — the drift-report field
|
|
49
|
+
list named `access.allowed_entra_group` (singular); the path the CLI actually
|
|
50
|
+
emits in `driftFields` / the `drift:` line is `access.allowed_entra_groups`
|
|
51
|
+
(plural, `status.ts:478`). Corrected (3 occurrences).
|
|
52
|
+
- **`launchpad-onboard`** — the sibling-skill list omitted `/launchpad-identity`
|
|
53
|
+
(added to the bundle in 0.32.1). Added it.
|
|
54
|
+
|
|
55
|
+
Skill content only — no behaviour change. Re-run `launchpad update` (or
|
|
56
|
+
`launchpad skills update`) to pick up the corrected skills.
|
|
57
|
+
|
|
9
58
|
## 0.32.1 — 2026-06-17
|
|
10
59
|
|
|
11
60
|
Fix: `launchpad skills install/update` now installs `launchpad-identity`. The
|