@lovinka/vitrinka 1.18.0 → 1.21.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 CHANGED
@@ -3,7 +3,52 @@
3
3
  `vitrinka update` prints the sections newer than your previous version after
4
4
  updating — keep entries short and user-facing.
5
5
 
6
- ## Unreleased
6
+ ## 1.21.0 — 2026-07-25
7
+
8
+ ### Added
9
+ - MCP `get_session` — one recorded testing session as a compact digest (the
10
+ screen walk, issues deduped across steps with live board status, per-route
11
+ web vitals, and facets to group them into fix batches). Address it by session
12
+ id or by the session's board slug. Use it instead of walking raw `/events`.
13
+
14
+ ### Changed
15
+ - Closing a session no longer waits for its board. The server builds the board
16
+ on a worker and reports `projection` state, so a stop returns immediately —
17
+ and a recording session's board is now kept live as you test, rather than
18
+ only existing once the session ends. Anything reading `projectionError` off a
19
+ stop response should read `projection.state` instead.
20
+
21
+ ## 1.20.0 — 2026-07-23
22
+
23
+ ### Changed
24
+ - All output now lives under one `.vitrinka/` home in the target repo:
25
+ `.vitrinka/screenshots/` (was `.screenshots/`), `.vitrinka/artifacts/<slug>/`
26
+ (was `.artifacts/`), plus `.vitrinka/scratch/<topic>/` as the sanctioned spot
27
+ for ad-hoc session output. Legacy roots auto-migrate the first time a command
28
+ touches them; explicit `--root`/`--from` paths are respected as given.
29
+
30
+ ### Added
31
+ - `vitrinka tidy [--yes] [--all]` — report-first sweep of legacy roots and
32
+ shot-shaped repo-root litter (`.screenshots-<topic>/`, loose `shot-*.png`)
33
+ into `.vitrinka/`; `--all` also moves loose images and `.aud_*` text litter.
34
+ Git-tracked files are never touched.
35
+ - Plugin skills `/vitrinka:annotations` + `/vitrinka:answers` — manual MCP
36
+ fallback drains for when a "Send to Claude" dispatch doesn't reach the
37
+ session (annotation work queue / durable question answers).
38
+
39
+ ## 1.19.0 — 2026-07-23
40
+
41
+ ### Added
42
+ - `vitrinka setup-project` — the repo onboarding wizard (clack-styled TUI, the
43
+ pkg's first runtime deps: `@clack/prompts` + `picocolors`). One front door for
44
+ everything a repo needs before the editor and board @ autocomplete work:
45
+ machine-install gate (offers `install` inline when the machine isn't
46
+ onboarded), project name + registry record, file/route index push (verified),
47
+ component-index with auto-detected candidate dirs, desktop-app check, and an
48
+ optional hello board. Status-first and idempotent — re-runs refresh the cheap
49
+ bits and only prompt for what's missing; `--yes`/non-TTY takes every default.
50
+ - `edit` and `status` print a one-line hint toward `vitrinka setup-project`
51
+ while the repo has never been indexed.
7
52
 
8
53
  ## 1.18.0 — 2026-07-21
9
54