@lovinka/vitrinka 1.5.0 → 1.6.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 ADDED
@@ -0,0 +1,32 @@
1
+ # Changelog
2
+
3
+ `vitrinka update` prints the sections newer than your previous version after
4
+ updating — keep entries short and user-facing.
5
+
6
+ ## 1.6.0 — 2026-07-08
7
+
8
+ ### Added
9
+ - `vitrinka update` — updates the CLI (git pull in a checkout, `npm i -g` when
10
+ behind the registry), prints what's new, and refreshes the installed skills
11
+ and Claude UI wiring.
12
+ - Status-first onboarding: `vitrinka install` now prints a ✓/✗ setup table and
13
+ handles everything install.sh used to (MCP registration, write token,
14
+ operator persona, env checks) — asking only for what's missing.
15
+ - `vitrinka uninstall [--purge]` — clean offboarding (skills, shim, completion,
16
+ Claude wiring, MCP registration; `--purge` also removes token + operator).
17
+ - `vitrinka doctor --fix` — repairs stale skills, a stale/missing shim, a lost
18
+ MCP registration, and the Claude UI wiring.
19
+ - `vitrinka open [--qr]` — opens the capture root's live board; `--qr` renders
20
+ a terminal QR code to scan with the iPad.
21
+ - `vitrinka status` — session dashboard: live board, open work queue, and the
22
+ listener lease for the current repo+branch.
23
+ - Passive update notifier (one dim line, cached daily, npm installs only) and a
24
+ first-run hint on fully unconfigured machines.
25
+
26
+ ### Removed
27
+ - `install.sh` — the CLI is the installer now: `vitrinka install` (or
28
+ `node pkg/src/cli.ts install` from a checkout).
29
+
30
+ ## 1.5.0 — 2026-07-08
31
+
32
+ - project-memory MCP tools + link/board compose vocabulary (pre-changelog release).
package/README.md CHANGED
@@ -21,17 +21,30 @@ becomes one HTTPS request against the deployed vitrinka Go server.
21
21
  # both bins on PATH
22
22
  npm i -g @lovinka/vitrinka
23
23
 
24
- # one-command machine setup: Claude skills bundle (vitrinka + listen, screenshot,
25
- # artifact, brainstorming) + the /vitrinka:listen command stub + PATH shim +
26
- # shell completion + Claude Code UI wiring ([Y/n]-gated) no repo checkout needed.
27
- # (npm install itself has NO side effects; skills land only via this command,
28
- # `vitrinka install-skills`, or the repo's install.sh.)
24
+ # one-command machine setup status-first onboarding: prints a ✓/✗ table, silently
25
+ # installs the Claude skills bundle (vitrinka + listen, screenshot, artifact,
26
+ # brainstorming) + the /vitrinka:listen command stub + PATH shim + shell completion,
27
+ # then asks [Y/n] only for the missing config-touchers: MCP registration, write
28
+ # token (silent input), operator persona, Claude Code UI wiring.
29
+ # (npm install itself has NO side effects; skills land only via this command or
30
+ # `vitrinka install-skills`.)
29
31
  vitrinka install
30
32
 
31
- # register the MCP server (Claude Code, user scope) no global install needed
32
- claude mcp add --scope user vitrinka -- npx -y --package=@lovinka/vitrinka vitrinka-mcp
33
+ # later: update the CLI, see what's new, refresh everything a previous install put
34
+ # here (npm i -g @lovinka/vitrinka@latest when behind or git pull in a checkout —
35
+ # then re-copies the skills bundle + /vitrinka:listen stub and refreshes the
36
+ # Claude UI wiring where it was already consented to; never asks new questions)
37
+ vitrinka update
38
+
39
+ # health check / repair / clean removal
40
+ vitrinka doctor # server, token, operator, skills, shim, MCP, UI wiring
41
+ vitrinka doctor --fix # repairs the repairable (skills, shim, MCP, UI wiring)
42
+ vitrinka uninstall # removes everything install put here (--purge: token too)
33
43
  ```
34
44
 
45
+ Registering the MCP by hand (install does this for you when the `claude` CLI is
46
+ present): `claude mcp add --scope user vitrinka -- npx -y --package=@lovinka/vitrinka vitrinka-mcp`
47
+
35
48
  `vitrinka install` also offers (interactive `[Y/n]`, or `--claude`/`--no-claude`)
36
49
  to wire the **Claude Code UI** — re-runnable standalone as `vitrinka install-claude`:
37
50
 
@@ -79,7 +92,7 @@ vitrinka is reachable over the WireGuard mesh — bring the VPN up (or point
79
92
  |---|---|---|
80
93
  | `VITRINKA_URL` / `VITRINKA_BASE_URL` | `https://vitrinka.lovinka.com` | vitrinka server base URL. `VITRINKA_URL` wins, then `VITRINKA_BASE_URL`; the CLI's `--base` flag overrides both. |
81
94
  | `VITRINKA_TOKEN` | — | Bearer write token. Falls back to `~/.config/vitrinka/token`. Required only by the **mutating** tools; read tools work unauthenticated. |
82
- | `VITRINKA_OPERATOR` | — | Operator persona name. Falls back to `~/.config/vitrinka/operator` (written by `install.sh` onboarding). When set, write calls carry `X-Board-Actor: <name>` so the board credits the operator's machine — agent-authored content (`reply`, `attach_after`) keeps its explicit `claude` attribution. |
95
+ | `VITRINKA_OPERATOR` | — | Operator persona name. Falls back to `~/.config/vitrinka/operator` (written by `vitrinka install` onboarding). When set, write calls carry `X-Board-Actor: <name>` so the board credits the operator's machine — agent-authored content (`reply`, `attach_after`) keeps its explicit `claude` attribution. |
83
96
 
84
97
  ## MCP tools
85
98