@lovinka/vitrinka 1.11.0 → 1.14.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 +29 -0
- package/dist/cli.js +471 -19
- package/dist/cli.js.map +1 -1
- package/dist/mcp.js +23 -8
- package/dist/mcp.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,35 @@
|
|
|
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
|
+
## 1.14.0 — 2026-07-18
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
- `compose_board` question options accept **`cardRef`** — trace an option to a
|
|
10
|
+
card created in the SAME compose batch (template + inline cards share one ref
|
|
11
|
+
space), so a decision map and its per-option architecture diagrams land in
|
|
12
|
+
ONE call. `cardId` still traces to existing cards; picking flies only on
|
|
13
|
+
⌘-click now (plain click just stages the answer).
|
|
14
|
+
- The built-in **`decision-map`** template is documented on `compose_board`:
|
|
15
|
+
structured params `{title, context, decisions:[{key, title, stakes, options,
|
|
16
|
+
multiSelect?, kind?: "text"}]}` render the whole brainstorm map — a
|
|
17
|
+
width-filling grid of merged decision tiles — deterministically server-side.
|
|
18
|
+
|
|
19
|
+
## 1.13.0 — 2026-07-17
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
- `vitrinka import <file>` + `vitrinka schema push` — refreshable ground-truth
|
|
23
|
+
diagrams from docker-compose / OpenAPI / SQL DDL / a live Postgres;
|
|
24
|
+
`--section` lands them inside a journey frame, `--rev` stamps the git SHA.
|
|
25
|
+
- Journey branch capture: `snap --next/--target` groups + journey-from-set.
|
|
26
|
+
- Unified **publish** skill (session · journey · docs · board · artifact).
|
|
27
|
+
- `compose_board` edges accept `fromRegion`/`toRegion`; `arrange` gains a
|
|
28
|
+
journey mode.
|
|
29
|
+
|
|
30
|
+
### Fixed
|
|
31
|
+
- `add --file` hardened (out-of-root copies, symlinks, non-regular files);
|
|
32
|
+
`push` guards against a huge `--root` and reports tar failures legibly.
|
|
33
|
+
- `doctor` no longer health-checks every Claude MCP server.
|
|
34
|
+
|
|
6
35
|
## 1.11.0 — 2026-07-15
|
|
7
36
|
|
|
8
37
|
### Added
|