@lovinka/vitrinka 1.18.0 → 1.20.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 +31 -1
- package/dist/cli.js +452 -46
- package/dist/cli.js.map +1 -1
- package/dist/lib/registry.js +13 -0
- package/dist/lib/registry.js.map +1 -1
- package/dist/lib/tui.js +79 -0
- package/dist/lib/tui.js.map +1 -0
- package/dist/mcp.js +1 -1
- package/dist/mcp.js.map +1 -1
- package/dist/work.js +4 -1
- package/dist/work.js.map +1 -1
- package/package.json +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,37 @@
|
|
|
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
|
-
##
|
|
6
|
+
## 1.20.0 — 2026-07-23
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
- All output now lives under one `.vitrinka/` home in the target repo:
|
|
10
|
+
`.vitrinka/screenshots/` (was `.screenshots/`), `.vitrinka/artifacts/<slug>/`
|
|
11
|
+
(was `.artifacts/`), plus `.vitrinka/scratch/<topic>/` as the sanctioned spot
|
|
12
|
+
for ad-hoc session output. Legacy roots auto-migrate the first time a command
|
|
13
|
+
touches them; explicit `--root`/`--from` paths are respected as given.
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
- `vitrinka tidy [--yes] [--all]` — report-first sweep of legacy roots and
|
|
17
|
+
shot-shaped repo-root litter (`.screenshots-<topic>/`, loose `shot-*.png`)
|
|
18
|
+
into `.vitrinka/`; `--all` also moves loose images and `.aud_*` text litter.
|
|
19
|
+
Git-tracked files are never touched.
|
|
20
|
+
- Plugin skills `/vitrinka:annotations` + `/vitrinka:answers` — manual MCP
|
|
21
|
+
fallback drains for when a "Send to Claude" dispatch doesn't reach the
|
|
22
|
+
session (annotation work queue / durable question answers).
|
|
23
|
+
|
|
24
|
+
## 1.19.0 — 2026-07-23
|
|
25
|
+
|
|
26
|
+
### Added
|
|
27
|
+
- `vitrinka setup-project` — the repo onboarding wizard (clack-styled TUI, the
|
|
28
|
+
pkg's first runtime deps: `@clack/prompts` + `picocolors`). One front door for
|
|
29
|
+
everything a repo needs before the editor and board @ autocomplete work:
|
|
30
|
+
machine-install gate (offers `install` inline when the machine isn't
|
|
31
|
+
onboarded), project name + registry record, file/route index push (verified),
|
|
32
|
+
component-index with auto-detected candidate dirs, desktop-app check, and an
|
|
33
|
+
optional hello board. Status-first and idempotent — re-runs refresh the cheap
|
|
34
|
+
bits and only prompt for what's missing; `--yes`/non-TTY takes every default.
|
|
35
|
+
- `edit` and `status` print a one-line hint toward `vitrinka setup-project`
|
|
36
|
+
while the repo has never been indexed.
|
|
7
37
|
|
|
8
38
|
## 1.18.0 — 2026-07-21
|
|
9
39
|
|