@groeponline/pi-wishcraft 1.4.13 → 1.4.15

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
@@ -2,10 +2,40 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [1.4.15] - 2026-09-05
6
+
7
+ ### Added
8
+ - Codebase dependency graph (dot + mermaid + navigation guide) and four wishcraft agent skills (`wishcraft-codebase`, `wishcraft-ui-components`, `wishcraft-hot-path-rules`, `wishcraft-testing`) shipped as operator-facing SKILL.md docs.
9
+
10
+ ## [1.4.14] - 2026-09-05
11
+
12
+ ### Changed
13
+ - Release-notes housekeeping only: this release's main-merge carried the backfilled CHANGELOG sections for 1.4.12 and 1.4.13 (below) and no other code changes; GitHub Release notes for v1.4.12–v1.4.14 updated to match.
14
+
5
15
  ## [1.4.13] - 2026-09-05
6
16
 
17
+ ### Added
18
+ - Skill Studio panes wired end-to-end (`/studio`): the fullscreen workbench now connects the registry-backed list, a detail pane (health, category override, usage count, frontmatter keys, model-invocation flag, and resolved local references with ✓/✗), actions (create from template, edit in-app with cache invalidation, doctor), and AI advice with explain/integrate/examples/improve modes — streamed through the advise engine with DeepWiki wiki context and insert-into-editor. The fail-closed placeholder gate is lifted; the entrypoint keeps its guards (closed without UI, warning + closed in RPC mode).
19
+ - DeepWiki disk cache gains bounded LRU eviction (`maxEntries`, default 64) on top of the existing TTL + stale-fallback behavior.
20
+ - Tests: studio pane render, key routing + refresh, entrypoint guards, and LRU eviction covered; 723 passing.
21
+
7
22
  ## [1.4.12] - 2026-09-05
8
23
 
24
+ ### Added
25
+ - Skill Studio: browse the ChefGroep global skill registry alongside local skills (`loadSkillStudioCatalog`): registry-only skills surface with routing metadata and a "registry source not readable" warning when the file is unavailable on this host.
26
+ - Motion rail: impressive adaptive rail with motion-driven routing (#83).
27
+
28
+ ### Changed
29
+ - AGENTS.md rewritten to the current architecture (#80).
30
+ - Compound Engineering overlay example clarified: explainer archival and sweep state paths now reference `<docs_root>` (#68); devDependency `@earendil-works/pi-coding-agent` bumped to 0.84.3.
31
+
32
+ ### Removed
33
+ - Dead agent-tools (patch, ripgrep) with no runtime consumers (#81).
34
+
35
+ ### Fixed
36
+ - Rail/render fixes shipped with the studio registry work (#79).
37
+ - Tests: `session_compact_failed` regression coverage — clearing compacting state, settling the signal, and blocking post-compact queue items with the error (#68).
38
+
9
39
  ## [1.4.11] - 2026-08-30
10
40
 
11
41
  ## [1.4.10] - 2026-08-30
@@ -0,0 +1,660 @@
1
+ # Codebase Dependency Graph
2
+
3
+ Generated from a static `madge` import scan of `index.ts` (TypeScript sources only).
4
+ **120 files**, **407 deduplicated dependency edges** (an edge `A -> B` means *A imports B*).
5
+
6
+ Artifacts in this directory:
7
+
8
+ | File | Purpose |
9
+ | --- | --- |
10
+ | `codebase-graph.dot` | Graphviz DOT source (render with `dot -Tsvg` once Graphviz is available) |
11
+ | `codebase-graph.mmd` | Same graph as Mermaid `graph LR` (renders on GitHub without tooling) |
12
+ | `codebase-graph.md` | This guide |
13
+
14
+ ## Clusters
15
+
16
+ Nodes are colored/grouped by directory cluster:
17
+
18
+ | Cluster | DOT/Mermaid color | Files |
19
+ | --- | --- | --- |
20
+ | `root` | black | 1 |
21
+ | `config` | lightblue | 11 |
22
+ | `segments` | lightgreen | 7 |
23
+ | `extension-session` | orange | 6 |
24
+ | `extension-ui` | purple | 10 |
25
+ | `extension-skills` | red | 6 |
26
+ | `extension-hooks` | brown | 6 |
27
+ | `usage` | teal | 6 |
28
+ | `welcome` | pink | 18 |
29
+ | `bash-mode` | gray | 10 |
30
+ | `queue` | gold | 5 |
31
+
32
+ What each cluster contains:
33
+
34
+ - **config** (`src/config/`) — shared configuration layer: types, primitives, parse, presets, powerline-config, settings-patch. Imported by almost everything else.
35
+ - **segments** (`src/segments/`) — status-line segment implementations (core/system/custom/usage) plus the registry barrel `segments/index.ts`.
36
+ - **extension-session** (`src/extension/session/`) — session bootstrap: `activate.ts` wires everything up, `session-lifecycle.ts` orchestrates startup/refresh, with helpers for cost alerts, git invalidation and stale contexts.
37
+ - **extension-ui** (`src/extension/ui/`) — UI surface: menus (`menu-items`, `menu-views`, `powerline-menu*`), overlays, custom editor widgets and status-line renderers.
38
+ - **extension-skills** (`src/extension/skills/`) — skill system: registry, templates, doctor, status and inline invocation.
39
+ - **extension-hooks** (`src/extension/hooks/`) — lifecycle hooks: config, policy config/engine, runner and repairs, exposed via `hooks/index.ts`.
40
+ - **usage** (`src/usage/`) — token accounting: ledger, context, rates, token budget, TPS ring, usage store.
41
+ - **welcome** (`src/welcome/` + `src/extension/welcome/`) — welcome screen (banner, overlay, widgets, discovery) and its extension-side control/integration glue.
42
+ - **bash-mode** (`bash-mode/`) — shell-mode editing: editor, completion (+providers), ghost text, transcript, shell session, history.
43
+ - **queue** (`queue/` + `src/extension/queue/`) — persistent idea queue: store/types plus extension-side context/integration/review glue.
44
+ - **root** — `index.ts`, the single entry point.
45
+
46
+ Files outside these clusters (white, ungrouped in the graphs) are support modules: `src/extension/core`, `src/extension/commands`, `src/extension/settings`, `src/extension/history`, `src/extension/shortcuts`, `src/theme`, `src/git`, `src/paths`, `src/render`, `src/shell`, `src/shortcuts`, `src/editor`, `src/core`, `src/working-vibes`.
47
+
48
+ ## Hot path
49
+
50
+ The intended runtime hot path is:
51
+
52
+ ```
53
+ index.ts -> src/extension/session/activate.ts -> src/extension/core/segment-context.ts -> src/extension/settings/settings-io.ts
54
+ ```
55
+
56
+ Verification against the actual import tree shows one correction: `activate.ts` does **not** import `segment-context.ts` directly. The exact verified chain is:
57
+
58
+ ```
59
+ index.ts
60
+ -> src/extension/session/activate.ts (verified: index.ts imports activate)
61
+ -> src/extension/session/session-lifecycle.ts (verified: activate imports session-lifecycle)
62
+ -> src/extension/core/segment-context.ts (verified: session-lifecycle imports segment-context)
63
+ -> src/extension/settings/settings-io.ts (verified: segment-context imports settings-io)
64
+ ```
65
+
66
+ (`activate.ts` does import `settings-io.ts` directly as well, for the initial settings load.)
67
+
68
+ ## Most-imported modules (top 10 by fan-in)
69
+
70
+ Fan-in = number of distinct files that import the module, computed from the deduplicated edge set:
71
+
72
+ | Fan-in | Module |
73
+ | --- | --- |
74
+ | 27 | `src/config/types.ts` |
75
+ | 26 | `src/extension/core/types.ts` |
76
+ | 16 | `src/extension/core/state.ts` |
77
+ | 14 | `src/extension/settings/settings-io.ts` |
78
+ | 14 | `src/paths/agent-dirs.ts` |
79
+ | 12 | `src/config/powerline-config.ts` |
80
+ | 12 | `src/config/presets.ts` |
81
+ | 11 | `src/welcome/types.ts` |
82
+ | 9 | `bash-mode/types.ts` |
83
+ | 9 | `src/extension/core/segment-context.ts` |
84
+
85
+ ## Rendering
86
+
87
+ GitHub renders the Mermaid block below automatically. To render the DOT version you need Graphviz (`brew install graphviz`):
88
+
89
+ ```sh
90
+ dot -Tsvg docs/architecture/codebase-graph.dot -o docs/architecture/codebase-graph.svg
91
+ ```
92
+
93
+ (Graphviz was not installed when these artifacts were generated, so only the DOT source ships — no committed SVG.)
94
+
95
+ ## Regenerating
96
+
97
+ From the repository root:
98
+
99
+ ```sh
100
+ # dump the raw dependency tree
101
+ node -e "const madge=require('madge'); madge('index.ts',{extensions:['ts']}).then(r=>console.log(JSON.stringify(r.obj())))"
102
+ ```
103
+
104
+ Save the output (e.g. to `deps.json`) and re-run the generator used for these artifacts, which rebuilds `.dot`, `.mmd` and this guide from that JSON (deduplicating edges and recomputing fan-in).
105
+
106
+ ## Full graph (Mermaid)
107
+
108
+ ```mermaid
109
+ graph LR
110
+ subgraph SG_root["root"]
111
+ n10["index"]
112
+ end
113
+ subgraph SG_config["config"]
114
+ n13["custom-items"]
115
+ n14["extension-statuses"]
116
+ n15["layout"]
117
+ n16["parse"]
118
+ n17["powerline-config"]
119
+ n18["presets"]
120
+ n19["primitives"]
121
+ n20["segment-ids"]
122
+ n21["segment-options"]
123
+ n22["settings-patch"]
124
+ n23["types"]
125
+ end
126
+ subgraph SG_segments["segments"]
127
+ n80["core"]
128
+ n81["custom"]
129
+ n82["index"]
130
+ n83["registry"]
131
+ n84["shared"]
132
+ n85["system"]
133
+ n86["usage"]
134
+ end
135
+ subgraph SG_session["extension-session"]
136
+ n49["activate"]
137
+ n50["cost-alert"]
138
+ n51["git-invalidation"]
139
+ n52["read-hints"]
140
+ n53["session-lifecycle"]
141
+ n54["stale-context"]
142
+ end
143
+ subgraph SG_ui["extension-ui"]
144
+ n65["custom-editor"]
145
+ n66["layout"]
146
+ n67["menu-items"]
147
+ n68["menu-views"]
148
+ n69["overlay-chrome"]
149
+ n70["powerline-menu-view"]
150
+ n71["powerline-menu"]
151
+ n72["powerline-widgets"]
152
+ n73["status-line-renderers"]
153
+ n74["token-overlays"]
154
+ end
155
+ subgraph SG_skills["extension-skills"]
156
+ n59["inline-invocation"]
157
+ n60["skill-doctor"]
158
+ n61["skill-manager"]
159
+ n62["skill-registry"]
160
+ n63["skill-status"]
161
+ n64["skill-templates"]
162
+ end
163
+ subgraph SG_hooks["extension-hooks"]
164
+ n40["hooks-config"]
165
+ n41["hooks-runner"]
166
+ n42["index"]
167
+ n43["policy-config"]
168
+ n44["policy-engine"]
169
+ n45["repairs"]
170
+ end
171
+ subgraph SG_usage["usage"]
172
+ n93["context"]
173
+ n94["ledger"]
174
+ n95["rates"]
175
+ n96["token-budget"]
176
+ n97["tps-ring"]
177
+ n98["usage-store"]
178
+ end
179
+ subgraph SG_welcome["welcome"]
180
+ n75["welcome-control"]
181
+ n76["welcome-integration"]
182
+ n99["auto-dismiss"]
183
+ n100["banner"]
184
+ n101["discover"]
185
+ n102["format"]
186
+ n103["index"]
187
+ n104["layout"]
188
+ n105["overlay"]
189
+ n106["renderer"]
190
+ n107["sessions"]
191
+ n108["types"]
192
+ n109["whats-new"]
193
+ n110["queue-widget"]
194
+ n111["sessions-widget"]
195
+ n112["shortcuts-widget"]
196
+ n113["system-widget"]
197
+ n114["whats-new-widget"]
198
+ end
199
+ subgraph SG_bashmode["bash-mode"]
200
+ n0["completion-providers"]
201
+ n1["completion"]
202
+ n2["editor-ghost"]
203
+ n3["editor-history"]
204
+ n4["editor-input"]
205
+ n5["editor"]
206
+ n6["history"]
207
+ n7["shell-session"]
208
+ n8["transcript"]
209
+ n9["types"]
210
+ end
211
+ subgraph SG_queue["queue"]
212
+ n11["store"]
213
+ n12["types"]
214
+ n46["idea-review"]
215
+ n47["queue-context"]
216
+ n48["queue-integration"]
217
+ end
218
+ n24["frontmatter"]
219
+ n25["autocomplete-chain"]
220
+ n26["bash-mode-actions"]
221
+ n27["commands"]
222
+ n28["powerline-completions"]
223
+ n29["powerline-doctor"]
224
+ n30["powerline-export"]
225
+ n31["queue-commands"]
226
+ n32["vibe-command"]
227
+ n33["constants"]
228
+ n34["segment-context"]
229
+ n35["state"]
230
+ n36["status-export"]
231
+ n37["types"]
232
+ n38["prompt-history"]
233
+ n39["stash-history"]
234
+ n55["settings-io"]
235
+ n56["wishcraft-config"]
236
+ n57["shortcuts-config"]
237
+ n58["shortcuts-router"]
238
+ n77["status"]
239
+ n78["agent-dirs"]
240
+ n79["timer"]
241
+ n87["cd-command"]
242
+ n88["matching"]
243
+ n89["colors"]
244
+ n90["icons"]
245
+ n91["separators"]
246
+ n92["theme"]
247
+ n115["generate"]
248
+ n116["index"]
249
+ n117["manager"]
250
+ n118["provider"]
251
+ n119["storage"]
252
+
253
+ n0 --> n1
254
+ n0 --> n9
255
+ n1 --> n6
256
+ n1 --> n9
257
+ n2 --> n9
258
+ n5 --> n1
259
+ n5 --> n2
260
+ n5 --> n3
261
+ n5 --> n4
262
+ n5 --> n9
263
+ n5 --> n88
264
+ n6 --> n78
265
+ n7 --> n8
266
+ n7 --> n9
267
+ n8 --> n9
268
+ n9 --> n4
269
+ n10 --> n37
270
+ n10 --> n49
271
+ n10 --> n57
272
+ n11 --> n12
273
+ n11 --> n78
274
+ n13 --> n14
275
+ n13 --> n19
276
+ n13 --> n20
277
+ n13 --> n21
278
+ n13 --> n23
279
+ n14 --> n23
280
+ n15 --> n23
281
+ n16 --> n13
282
+ n16 --> n19
283
+ n16 --> n20
284
+ n16 --> n21
285
+ n16 --> n23
286
+ n17 --> n13
287
+ n17 --> n14
288
+ n17 --> n15
289
+ n17 --> n16
290
+ n17 --> n21
291
+ n17 --> n22
292
+ n18 --> n23
293
+ n18 --> n92
294
+ n19 --> n23
295
+ n20 --> n19
296
+ n20 --> n23
297
+ n21 --> n19
298
+ n21 --> n23
299
+ n21 --> n95
300
+ n22 --> n16
301
+ n22 --> n19
302
+ n22 --> n23
303
+ n23 --> n95
304
+ n26 --> n6
305
+ n26 --> n7
306
+ n26 --> n34
307
+ n26 --> n37
308
+ n27 --> n18
309
+ n27 --> n23
310
+ n27 --> n26
311
+ n27 --> n28
312
+ n27 --> n29
313
+ n27 --> n30
314
+ n27 --> n31
315
+ n27 --> n32
316
+ n27 --> n34
317
+ n27 --> n35
318
+ n27 --> n36
319
+ n27 --> n37
320
+ n27 --> n38
321
+ n27 --> n42
322
+ n27 --> n55
323
+ n27 --> n56
324
+ n27 --> n58
325
+ n27 --> n61
326
+ n27 --> n65
327
+ n27 --> n68
328
+ n27 --> n70
329
+ n27 --> n74
330
+ n27 --> n87
331
+ n28 --> n18
332
+ n29 --> n11
333
+ n29 --> n18
334
+ n29 --> n35
335
+ n29 --> n37
336
+ n29 --> n55
337
+ n29 --> n68
338
+ n29 --> n90
339
+ n30 --> n17
340
+ n30 --> n18
341
+ n30 --> n23
342
+ n30 --> n35
343
+ n30 --> n68
344
+ n31 --> n35
345
+ n31 --> n37
346
+ n31 --> n46
347
+ n31 --> n47
348
+ n31 --> n48
349
+ n31 --> n58
350
+ n32 --> n68
351
+ n32 --> n116
352
+ n33 --> n9
353
+ n33 --> n37
354
+ n34 --> n17
355
+ n34 --> n18
356
+ n34 --> n23
357
+ n34 --> n33
358
+ n34 --> n35
359
+ n34 --> n36
360
+ n34 --> n37
361
+ n34 --> n47
362
+ n34 --> n55
363
+ n34 --> n77
364
+ n34 --> n92
365
+ n34 --> n94
366
+ n34 --> n96
367
+ n34 --> n98
368
+ n35 --> n1
369
+ n35 --> n7
370
+ n35 --> n8
371
+ n35 --> n11
372
+ n35 --> n17
373
+ n35 --> n18
374
+ n35 --> n23
375
+ n35 --> n33
376
+ n35 --> n37
377
+ n35 --> n39
378
+ n35 --> n57
379
+ n35 --> n75
380
+ n35 --> n79
381
+ n35 --> n93
382
+ n35 --> n94
383
+ n35 --> n99
384
+ n37 --> n1
385
+ n37 --> n7
386
+ n37 --> n8
387
+ n37 --> n9
388
+ n37 --> n11
389
+ n37 --> n79
390
+ n37 --> n93
391
+ n37 --> n94
392
+ n37 --> n99
393
+ n38 --> n33
394
+ n38 --> n55
395
+ n38 --> n78
396
+ n39 --> n33
397
+ n39 --> n38
398
+ n39 --> n55
399
+ n39 --> n78
400
+ n41 --> n40
401
+ n42 --> n37
402
+ n42 --> n40
403
+ n42 --> n41
404
+ n42 --> n43
405
+ n42 --> n44
406
+ n42 --> n45
407
+ n42 --> n55
408
+ n44 --> n43
409
+ n46 --> n12
410
+ n46 --> n37
411
+ n46 --> n39
412
+ n46 --> n47
413
+ n46 --> n48
414
+ n46 --> n62
415
+ n46 --> n69
416
+ n47 --> n11
417
+ n48 --> n11
418
+ n48 --> n12
419
+ n48 --> n34
420
+ n48 --> n35
421
+ n48 --> n37
422
+ n48 --> n39
423
+ n48 --> n47
424
+ n48 --> n54
425
+ n48 --> n68
426
+ n49 --> n17
427
+ n49 --> n18
428
+ n49 --> n27
429
+ n49 --> n35
430
+ n49 --> n42
431
+ n49 --> n53
432
+ n49 --> n55
433
+ n49 --> n59
434
+ n49 --> n82
435
+ n50 --> n95
436
+ n51 --> n34
437
+ n51 --> n37
438
+ n51 --> n77
439
+ n52 --> n55
440
+ n53 --> n1
441
+ n53 --> n8
442
+ n53 --> n17
443
+ n53 --> n18
444
+ n53 --> n33
445
+ n53 --> n34
446
+ n53 --> n35
447
+ n53 --> n37
448
+ n53 --> n39
449
+ n53 --> n47
450
+ n53 --> n48
451
+ n53 --> n50
452
+ n53 --> n51
453
+ n53 --> n52
454
+ n53 --> n54
455
+ n53 --> n55
456
+ n53 --> n57
457
+ n53 --> n63
458
+ n53 --> n65
459
+ n53 --> n66
460
+ n53 --> n75
461
+ n53 --> n76
462
+ n53 --> n77
463
+ n53 --> n82
464
+ n53 --> n94
465
+ n53 --> n96
466
+ n53 --> n98
467
+ n53 --> n116
468
+ n55 --> n17
469
+ n55 --> n23
470
+ n55 --> n78
471
+ n56 --> n17
472
+ n56 --> n35
473
+ n56 --> n37
474
+ n56 --> n55
475
+ n57 --> n9
476
+ n57 --> n33
477
+ n57 --> n37
478
+ n57 --> n55
479
+ n57 --> n88
480
+ n58 --> n26
481
+ n58 --> n33
482
+ n58 --> n35
483
+ n58 --> n37
484
+ n58 --> n38
485
+ n58 --> n39
486
+ n58 --> n48
487
+ n58 --> n68
488
+ n58 --> n88
489
+ n59 --> n24
490
+ n59 --> n37
491
+ n59 --> n62
492
+ n59 --> n101
493
+ n60 --> n62
494
+ n60 --> n69
495
+ n61 --> n37
496
+ n61 --> n60
497
+ n61 --> n62
498
+ n61 --> n64
499
+ n62 --> n24
500
+ n62 --> n78
501
+ n63 --> n36
502
+ n63 --> n62
503
+ n64 --> n62
504
+ n64 --> n69
505
+ n64 --> n78
506
+ n65 --> n0
507
+ n65 --> n1
508
+ n65 --> n5
509
+ n65 --> n11
510
+ n65 --> n25
511
+ n65 --> n26
512
+ n65 --> n34
513
+ n65 --> n35
514
+ n65 --> n37
515
+ n65 --> n38
516
+ n65 --> n48
517
+ n65 --> n58
518
+ n65 --> n72
519
+ n65 --> n75
520
+ n65 --> n77
521
+ n65 --> n89
522
+ n66 --> n17
523
+ n66 --> n18
524
+ n66 --> n23
525
+ n66 --> n35
526
+ n66 --> n82
527
+ n66 --> n89
528
+ n66 --> n91
529
+ n67 --> n17
530
+ n67 --> n18
531
+ n67 --> n23
532
+ n67 --> n66
533
+ n67 --> n85
534
+ n67 --> n95
535
+ n68 --> n18
536
+ n68 --> n19
537
+ n68 --> n23
538
+ n68 --> n34
539
+ n68 --> n35
540
+ n68 --> n36
541
+ n68 --> n37
542
+ n68 --> n55
543
+ n68 --> n67
544
+ n68 --> n69
545
+ n68 --> n74
546
+ n68 --> n85
547
+ n70 --> n37
548
+ n70 --> n68
549
+ n70 --> n71
550
+ n70 --> n74
551
+ n72 --> n34
552
+ n72 --> n35
553
+ n72 --> n37
554
+ n72 --> n73
555
+ n73 --> n17
556
+ n73 --> n18
557
+ n73 --> n23
558
+ n73 --> n33
559
+ n73 --> n34
560
+ n73 --> n35
561
+ n73 --> n37
562
+ n73 --> n47
563
+ n73 --> n66
564
+ n73 --> n89
565
+ n74 --> n35
566
+ n74 --> n37
567
+ n74 --> n55
568
+ n74 --> n69
569
+ n74 --> n94
570
+ n74 --> n96
571
+ n74 --> n97
572
+ n74 --> n98
573
+ n75 --> n37
574
+ n76 --> n37
575
+ n76 --> n46
576
+ n76 --> n47
577
+ n76 --> n55
578
+ n76 --> n93
579
+ n76 --> n103
580
+ n77 --> n23
581
+ n80 --> n23
582
+ n80 --> n77
583
+ n80 --> n84
584
+ n80 --> n90
585
+ n80 --> n92
586
+ n81 --> n17
587
+ n81 --> n23
588
+ n81 --> n90
589
+ n81 --> n92
590
+ n82 --> n81
591
+ n82 --> n83
592
+ n82 --> n85
593
+ n83 --> n23
594
+ n83 --> n80
595
+ n83 --> n81
596
+ n83 --> n85
597
+ n83 --> n86
598
+ n83 --> n90
599
+ n84 --> n23
600
+ n84 --> n92
601
+ n85 --> n17
602
+ n85 --> n23
603
+ n85 --> n84
604
+ n85 --> n90
605
+ n85 --> n95
606
+ n85 --> n97
607
+ n86 --> n23
608
+ n86 --> n84
609
+ n86 --> n90
610
+ n86 --> n95
611
+ n86 --> n96
612
+ n90 --> n92
613
+ n91 --> n23
614
+ n91 --> n90
615
+ n92 --> n23
616
+ n92 --> n78
617
+ n95 --> n78
618
+ n98 --> n78
619
+ n100 --> n106
620
+ n100 --> n108
621
+ n101 --> n78
622
+ n101 --> n108
623
+ n103 --> n100
624
+ n103 --> n101
625
+ n103 --> n105
626
+ n103 --> n107
627
+ n103 --> n108
628
+ n103 --> n109
629
+ n103 --> n114
630
+ n105 --> n106
631
+ n105 --> n108
632
+ n106 --> n89
633
+ n106 --> n104
634
+ n106 --> n108
635
+ n106 --> n110
636
+ n106 --> n111
637
+ n106 --> n112
638
+ n106 --> n113
639
+ n106 --> n114
640
+ n107 --> n78
641
+ n107 --> n101
642
+ n107 --> n102
643
+ n107 --> n108
644
+ n109 --> n78
645
+ n110 --> n108
646
+ n111 --> n108
647
+ n112 --> n108
648
+ n113 --> n102
649
+ n113 --> n108
650
+ n114 --> n108
651
+ n115 --> n118
652
+ n115 --> n119
653
+ n116 --> n115
654
+ n116 --> n117
655
+ n116 --> n119
656
+ n117 --> n118
657
+ n117 --> n119
658
+ n118 --> n119
659
+ n119 --> n78
660
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groeponline/pi-wishcraft",
3
- "version": "1.4.13",
3
+ "version": "1.4.15",
4
4
  "description": "Operator cockpit for Pi: live powerline status, searchable skills, idea queue, sticky Bash, hooks, policy controls, and session UX.",
5
5
  "type": "module",
6
6
  "files": [