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 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 for the public CLI flow, verify `gh` is using account `ctan1345`:
240
+ Before creating GitHub PRs or releases, verify `gh` is authenticated to the account you intend to use:
230
241
 
231
242
  ```bash
232
- pnpm run verify:gh-auth
243
+ gh auth status
233
244
  ```
234
245
 
235
- If the account is logged in but inactive, switch first:
246
+ If the wrong account is active, switch first:
236
247
 
237
248
  ```bash
238
- gh auth switch -u ctan1345
249
+ gh auth switch -u <github-user>
239
250
  ```