wand-decks-kit 0.8.3 → 0.8.4
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/SKILL.md +14 -0
- package/package.json +1 -1
- package/wand_kit.js +1 -1
package/SKILL.md
CHANGED
|
@@ -99,6 +99,20 @@ Decks built here carry their own spec inside the file. Change only what was
|
|
|
99
99
|
asked, then `ship`. If the deck carries no spec it was not built here — treat it
|
|
100
100
|
as a rebrand.
|
|
101
101
|
|
|
102
|
+
## Spend tool calls like they are metered — they are
|
|
103
|
+
|
|
104
|
+
Chat turns cap the number of tool invocations, and a rebuild is command-heavy.
|
|
105
|
+
Batch aggressively:
|
|
106
|
+
|
|
107
|
+
- Setup is ONE call: `npm install ... && node wand.js doctor`
|
|
108
|
+
- Gates are ONE call: `node wand.js validate spec && node wand.js check spec`
|
|
109
|
+
- Write the whole spec in one write, never slide by slide
|
|
110
|
+
- `ship` is already the whole pipeline — one call, at the end
|
|
111
|
+
- The visual pass is ONE image: `slides/sheet.png`
|
|
112
|
+
|
|
113
|
+
A smooth job fits in about ten calls. If a turn is cut off mid-way, continuing
|
|
114
|
+
is safe: the sandbox and its installed kit survive within the same chat.
|
|
115
|
+
|
|
102
116
|
## Work in fast loops, ship once
|
|
103
117
|
|
|
104
118
|
`node wand.js validate` and `node wand.js check` run in seconds; `ship` runs the
|
package/package.json
CHANGED
package/wand_kit.js
CHANGED
|
@@ -999,7 +999,7 @@ function productMap(pres, { tag, titleText, subtitleText, bandRow, cards, split,
|
|
|
999
999
|
|
|
1000
1000
|
|
|
1001
1001
|
module.exports = {
|
|
1002
|
-
VERSION: "0.8.
|
|
1002
|
+
VERSION: "0.8.4",
|
|
1003
1003
|
T, F, COLS, ASSETS, radius, theme, autoSize, measure: M,
|
|
1004
1004
|
background, chrome, footer, title, subtitle, kicker, contentTop,
|
|
1005
1005
|
card, iconTile, pill,
|