dreamboard 0.1.0 → 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.
- package/README.md +15 -4
- package/dist/{chunk-MP7IBNWW.js → chunk-DD36YMMQ.js} +111 -1841
- package/dist/chunk-DD36YMMQ.js.map +1 -0
- package/dist/{chunk-FK6CWXQR.js → chunk-JUL27YLF.js} +7 -1185
- package/dist/{chunk-FK6CWXQR.js.map → chunk-JUL27YLF.js.map} +1 -1
- package/dist/{dist-B3R64F6G.js → dist-W7KDKXWG.js} +2 -2
- package/dist/{embedded-harness-PF2LCIWC.js → embedded-harness-DQOVBU6E.js} +2 -2
- package/dist/index.js +66 -37
- package/dist/index.js.map +1 -1
- package/dist/{prompt-GMZABCJC.js → prompt-XCUPD2NB.js} +3 -3
- package/dist/{prompt-GMZABCJC.js.map → prompt-XCUPD2NB.js.map} +1 -1
- package/package.json +1 -1
- package/skills/dreamboard/SKILL.md +5 -2
- package/dist/chunk-MP7IBNWW.js.map +0 -1
- package/skills/dreamboard/references/tts-migration-and-extractor.md +0 -91
- package/skills/dreamboard/scripts/extract_tts.py +0 -1178
- /package/dist/{dist-B3R64F6G.js.map → dist-W7KDKXWG.js.map} +0 -0
- /package/dist/{embedded-harness-PF2LCIWC.js.map → embedded-harness-DQOVBU6E.js.map} +0 -0
package/README.md
CHANGED
|
@@ -203,9 +203,20 @@ dreamboard run --screenshot --output ./shot.png --delay 1500 --width 1440 --heig
|
|
|
203
203
|
- Public skill source lives under `skills/dreamboard/`.
|
|
204
204
|
- `dreamboard new` installs the bundled skill into `.agents/skills/dreamboard/` in the generated game project.
|
|
205
205
|
- The Node helper script for run-artifact inspection is `.agents/skills/dreamboard/scripts/events-extract.mjs`.
|
|
206
|
+
- Public GitHub repo for the CLI is [dreamboard-games/dreamboard-cli](https://github.com/dreamboard-games/dreamboard-cli).
|
|
206
207
|
|
|
207
208
|
## Publish Prep
|
|
208
209
|
|
|
210
|
+
Public repo layout:
|
|
211
|
+
|
|
212
|
+
```bash
|
|
213
|
+
apps/dreamboard-cli/ # CLI code
|
|
214
|
+
skills/ # public skill source
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
Important: `apps/dreamboard-cli/skills` is not the published skill location. In the public repo, skills belong at top-level `skills/`.
|
|
218
|
+
Keep local-only assets out of `skills/dreamboard/`; that tree is mirrored to GitHub and staged for npm publish.
|
|
219
|
+
|
|
209
220
|
Build a staged public package:
|
|
210
221
|
|
|
211
222
|
```bash
|
|
@@ -226,14 +237,14 @@ export DREAMBOARD_PUBLIC_LICENSE="MIT"
|
|
|
226
237
|
|
|
227
238
|
If the source package already defines `repository`, `homepage`, `bugs`, or `license`, `stage:publish` will reuse those fields automatically.
|
|
228
239
|
|
|
229
|
-
Before creating GitHub PRs or releases
|
|
240
|
+
Before creating GitHub PRs or releases, verify `gh` is authenticated to the account you intend to use:
|
|
230
241
|
|
|
231
242
|
```bash
|
|
232
|
-
|
|
243
|
+
gh auth status
|
|
233
244
|
```
|
|
234
245
|
|
|
235
|
-
If the account is
|
|
246
|
+
If the wrong account is active, switch first:
|
|
236
247
|
|
|
237
248
|
```bash
|
|
238
|
-
gh auth switch -u
|
|
249
|
+
gh auth switch -u <github-user>
|
|
239
250
|
```
|