dreamboard 0.1.4 → 0.1.6
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 +0 -44
- package/dist/index.js +320 -63
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -204,47 +204,3 @@ dreamboard run --screenshot --output ./shot.png --delay 1500 --width 1440 --heig
|
|
|
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
206
|
- Public GitHub repo for the CLI is [dreamboard-games/dreamboard-cli](https://github.com/dreamboard-games/dreamboard-cli).
|
|
207
|
-
|
|
208
|
-
## Publish Prep
|
|
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
|
-
|
|
220
|
-
Build a staged public package:
|
|
221
|
-
|
|
222
|
-
```bash
|
|
223
|
-
pnpm run stage:publish
|
|
224
|
-
pnpm run pack:publish
|
|
225
|
-
```
|
|
226
|
-
|
|
227
|
-
`stage:publish` creates `.publish/package` as the public npm artifact for package name `dreamboard`, including the public `skills/dreamboard` tree.
|
|
228
|
-
|
|
229
|
-
Optional public metadata env vars for staging:
|
|
230
|
-
|
|
231
|
-
```bash
|
|
232
|
-
export DREAMBOARD_PUBLIC_REPOSITORY_URL="https://github.com/<org>/<repo>.git"
|
|
233
|
-
export DREAMBOARD_PUBLIC_HOMEPAGE="https://github.com/<org>/<repo>"
|
|
234
|
-
export DREAMBOARD_PUBLIC_BUGS_URL="https://github.com/<org>/<repo>/issues"
|
|
235
|
-
export DREAMBOARD_PUBLIC_LICENSE="MIT"
|
|
236
|
-
```
|
|
237
|
-
|
|
238
|
-
If the source package already defines `repository`, `homepage`, `bugs`, or `license`, `stage:publish` will reuse those fields automatically.
|
|
239
|
-
|
|
240
|
-
Before creating GitHub PRs or releases, verify `gh` is authenticated to the account you intend to use:
|
|
241
|
-
|
|
242
|
-
```bash
|
|
243
|
-
gh auth status
|
|
244
|
-
```
|
|
245
|
-
|
|
246
|
-
If the wrong account is active, switch first:
|
|
247
|
-
|
|
248
|
-
```bash
|
|
249
|
-
gh auth switch -u <github-user>
|
|
250
|
-
```
|