@groeponline/pi-wishcraft 1.1.0 → 1.3.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 +15 -0
- package/README.md +16 -7
- package/ROADMAP.md +144 -425
- package/docs/commands.md +6 -2
- package/docs/configuration.md +21 -0
- package/docs/design/accessibility.md +71 -0
- package/docs/design/deck-layout.md +69 -0
- package/docs/design/motion-gallery.md +80 -0
- package/docs/design/motion-system.md +119 -0
- package/docs/design/presets.md +196 -0
- package/docs/design/regression-testing.md +54 -0
- package/docs/design/responsive.md +53 -0
- package/docs/design/signal.md +71 -0
- package/docs/design/theme-contract.md +132 -0
- package/docs/design/vnext-overview.md +55 -0
- package/docs/design/vnext-release-plan.md +212 -0
- package/docs/index.md +19 -1
- package/docs/segments.md +1 -1
- package/package.json +2 -1
- package/src/config/appearance.ts +229 -0
- package/src/config/parse.ts +41 -0
- package/src/config/presets.ts +184 -0
- package/src/config/structural-presets.ts +555 -0
- package/src/config/tokens.ts +154 -0
- package/src/config/types.ts +210 -2
- package/src/extension/commands/commands.ts +36 -12
- package/src/extension/commands/powerline-completions.ts +4 -0
- package/src/extension/commands/queue-commands.ts +6 -0
- package/src/extension/core/segment-context.ts +27 -21
- package/src/extension/core/state.ts +16 -1
- package/src/extension/core/types.ts +11 -1
- package/src/extension/session/session-lifecycle.ts +29 -65
- package/src/extension/session/session-notifications.ts +91 -0
- package/src/extension/settings/appearance-write.ts +135 -0
- package/src/extension/settings/wishcraft-config-items.ts +119 -0
- package/src/extension/settings/wishcraft-config.ts +28 -114
- package/src/extension/skills/skill-manager.ts +5 -0
- package/src/extension/ui/deck/component.ts +371 -0
- package/src/extension/ui/deck/index.ts +34 -0
- package/src/extension/ui/deck/render.ts +260 -0
- package/src/extension/ui/deck/route-bodies.ts +209 -0
- package/src/extension/ui/deck/routes.ts +37 -0
- package/src/extension/ui/deck/session-snapshot.ts +122 -0
- package/src/extension/ui/deck/types.ts +97 -0
- package/src/extension/ui/powerline-menu-view.ts +19 -15
- package/src/extension/ui/signal-layout.ts +76 -0
- package/src/extension/ui/status-line-renderers.ts +20 -2
- package/src/motion/accessibility.ts +59 -0
- package/src/motion/catalog-extra.ts +429 -0
- package/src/motion/catalog.ts +336 -0
- package/src/motion/composer.ts +147 -0
- package/src/motion/frames.ts +84 -0
- package/src/motion/gallery.ts +77 -0
- package/src/motion/index.ts +78 -0
- package/src/motion/policy.ts +128 -0
- package/src/motion/scheduler.ts +159 -0
- package/src/motion/types.ts +132 -0
- package/src/render/timer.ts +1 -0
- package/src/signal/controller.ts +135 -0
- package/src/signal/integration.ts +46 -0
- package/src/signal/render.ts +178 -0
- package/src/theme/detect.ts +48 -0
- package/src/theme/tokens/index.ts +9 -0
- package/src/theme/tokens/mapping.ts +21 -0
- package/src/theme/tokens/types.ts +6 -0
- package/src/usage/token-budget.ts +23 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [1.3.0] - 2026-08-25
|
|
6
|
+
|
|
7
|
+
## [1.2.0] - 2026-08-24
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- Deck polish: structural display names (Lanternwake, Hexforge, …), injectable gallery tick, route-specific footers, and Signal three-lane copy. Clock frames stay ASCII-safe. Flat `/wishcraft settings` reloads Signal through `reloadPowerlineFromSettings`.
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- Wishcraft Deck (`alt+p` / `/wishcraft`) is the operator overlay: eleven routes, `g`-prefix jumps, and a live session snapshot. `/wishcraft settings` (or `config`) opens the flat settings list.
|
|
14
|
+
- `/signal` is the primary status command (`/powerline` remains an alias). No-args still toggles. `/signal menu` opens Navigate / Configure / Status.
|
|
15
|
+
- Ten structural appearance bases (`lanternwake`…`crucible`) apply live Signal colors via `powerline.appearance.base`. Deck Appearance + Enter writes the base. `/signal hexforge` syncs appearance when the layout name is structural.
|
|
16
|
+
- Motion Gallery and Composer on the Deck Motion route. Catalog is 50+ definitions. Enter assigns a motion to a semantic event (`powerline.appearance.motion`).
|
|
17
|
+
- Skill Workbench, idea list, and guardrail rules render inside the Deck Craft routes.
|
|
18
|
+
- First-class motion levels (`full|reduced|functional|off`) via `powerline.motionLevel`, `NO_COLOR`, and screen-reader / reduced-motion host flags.
|
|
19
|
+
|
|
5
20
|
## [1.1.0] - 2026-08-23
|
|
6
21
|
|
|
7
22
|
### Security
|
package/README.md
CHANGED
|
@@ -39,8 +39,8 @@ Then restart pi or `/reload`. Pi host packages are declared as `peerDependencies
|
|
|
39
39
|
|
|
40
40
|
| Surface | What it does |
|
|
41
41
|
| --- | --- |
|
|
42
|
-
|
|
|
43
|
-
| `alt+p` |
|
|
42
|
+
| Signal | Motion-aware three-lane operator status: model/Git, live activity/tool state, and context/queue. Default placement is the editor top border; `/signal placement below` moves it. |
|
|
43
|
+
| `alt+p` | Wishcraft Deck: session, Signal, skills, ideas, guardrails, appearance. `g` + jump. `/wishcraft settings` is the flat list. `/signal menu` is Navigate / Configure / Status. |
|
|
44
44
|
| `# <idea>` | File-backed inbox. Does not send the prompt. `/ideas` reviews status, tags, and skill insert. `/ideas next` feeds the oldest active idea into the session. |
|
|
45
45
|
| `alt+s` | Stash the draft, ask something else, get it back when the run finishes. |
|
|
46
46
|
| `/skills` | Overlay search on name, description, and path. Enter inserts. `/skills doctor` is the health table. `/skills new` writes a SKILL.md from a template. |
|
|
@@ -53,11 +53,11 @@ Pi owns the footer chrome, feed scrolling, and input. Wishcraft supplies widgets
|
|
|
53
53
|
|
|
54
54
|
## Daily commands
|
|
55
55
|
|
|
56
|
-
Activates on load. `/
|
|
56
|
+
Activates on load. `/signal` toggles it. `/signal <preset>` switches the information layout. `/signal menu` opens Navigate / Configure / Status. `/wishcraft` opens the Deck. Tab completes presets and `placement above|below|toggle`. `/powerline` remains a compatibility alias.
|
|
57
57
|
|
|
58
58
|
```text
|
|
59
|
-
/
|
|
60
|
-
/
|
|
59
|
+
/signal doctor settings, queue, git, bash, fonts
|
|
60
|
+
/signal export current preset + layout as JSON
|
|
61
61
|
/tps live in/out overlay (same ring as the segment)
|
|
62
62
|
/tps 40 override POWERLINE_TPS
|
|
63
63
|
/usage session / today / week from ~/.pi/agent/wishcraft-usage.json
|
|
@@ -66,7 +66,8 @@ Activates on load. `/powerline` toggles it. `/powerline <preset>` switches look.
|
|
|
66
66
|
/skills doctor health table (broken frontmatter, dupes, unused, budget)
|
|
67
67
|
/skills new [name] write a SKILL.md from a template
|
|
68
68
|
/ideas idea review overlay (status, tags, skill insert)
|
|
69
|
-
/wishcraft
|
|
69
|
+
/wishcraft Deck overlay (operator surface)
|
|
70
|
+
/wishcraft settings flat settings TUI
|
|
70
71
|
/open-ports listening sockets
|
|
71
72
|
/cd <path> continue this conversation in another directory
|
|
72
73
|
/bash-mode sticky shell (also ctrl+shift+b)
|
|
@@ -99,7 +100,8 @@ Keybinds (`powerlineShortcuts`, applied after `/reload`; `null` disables):
|
|
|
99
100
|
"powerline": {
|
|
100
101
|
"preset": "chef",
|
|
101
102
|
"placement": "above",
|
|
102
|
-
"welcome": true
|
|
103
|
+
"welcome": true,
|
|
104
|
+
"appearance": { "base": "lanternwake" }
|
|
103
105
|
}
|
|
104
106
|
}
|
|
105
107
|
```
|
|
@@ -221,6 +223,13 @@ Declarative deny/inject rules in the **global** agent settings file. No shell co
|
|
|
221
223
|
- The legacy `@groeponline/pi-powerline-footer` package is deprecated on npm in favor of `@groeponline/pi-wishcraft`; the GitHub fork relationship is retained for upstream history and attribution.
|
|
222
224
|
- Tags are not rewritten. 0.19.x through current stay on the timeline.
|
|
223
225
|
|
|
226
|
+
## vNext Direction
|
|
227
|
+
|
|
228
|
+
Wishcraft is evolving into Pi's animated operator layer — intent, skills, ideas, guardrails, and session state made visible and controllable without turning Pi into an IDE.
|
|
229
|
+
|
|
230
|
+
- **[vNext Stacked PR Release Plan](docs/design/vnext-release-plan.md)**: Specifications for PR0 through PR8.
|
|
231
|
+
- **[Design Corpus](docs/index.md#design-system--vnext-specifications)**: Deck, Signal, Motion Gallery, tokens, and the 10 structural presets. `npm run preview` renders the Deck frames.
|
|
232
|
+
|
|
224
233
|
## Docs
|
|
225
234
|
|
|
226
235
|
- [Commands](docs/commands.md)
|