@tycoworks/bon 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/SKILL.md +15 -3
  2. package/package.json +1 -1
package/SKILL.md CHANGED
@@ -9,6 +9,18 @@ description: >
9
9
 
10
10
  # slides
11
11
 
12
+ ## Setup
13
+
14
+ Before first use, install dependencies from the plugin root:
15
+
16
+ ```bash
17
+ npm install
18
+ ```
19
+
20
+ This installs the bon engine and its dependencies. You only need to do this once.
21
+
22
+ ## Overview
23
+
12
24
  This skill builds on-brand decks from a deck file. The theme provides slide layouts that control design. Your job: pick the right layouts, fill them with content, and build. You never restyle the layout; the engine clones the real slides, so brand, layout, fonts, and chrome come for free.
13
25
 
14
26
  For brand voice and naming guidelines, read `brand.md` if it exists alongside this skill.
@@ -89,7 +101,7 @@ Build:
89
101
 
90
102
  ```bash
91
103
  # Run the command from manifest.json's build.command
92
- # e.g.: node src/run-spec.ts deck.json my-deck.pptx
104
+ # e.g.: npx bon build deck.json
93
105
  ```
94
106
 
95
107
  The deck is written to your current working directory (not inside the skill).
@@ -137,7 +149,7 @@ Your first draft almost never comes out clean. Approach QA as a debugging sessio
137
149
  Run the command from `manifest.json`'s `build.command`:
138
150
 
139
151
  ```bash
140
- # e.g.: node src/run-spec.ts deck.json my-deck.pptx
152
+ # e.g.: npx bon build deck.json
141
153
  ```
142
154
 
143
155
  Read output carefully. Common errors and fixes:
@@ -210,7 +222,7 @@ If the subagent finds issues, fix them and rebuild.
210
222
 
211
223
  ```bash
212
224
  # Build a deck (use command from manifest.json's build.command)
213
- # e.g.: node src/run-spec.ts deck.json my-deck.pptx
225
+ # e.g.: npx bon build deck.json
214
226
 
215
227
  # Render to images for visual QA
216
228
  soffice --headless --convert-to pdf --outdir . <deck>.pptx
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tycoworks/bon",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",