@miketromba/ploof 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
@@ -1,9 +1,5 @@
1
1
  <p align="center">
2
- <strong>Ploof</strong>
3
- </p>
4
-
5
- <p align="center">
6
- AI asset generation from the command line.
2
+ <img src="assets/brand/ploof-banner.png" alt="Ploof - AI asset generation from the command line." width="100%" />
7
3
  </p>
8
4
 
9
5
  <p align="center">
@@ -273,6 +269,29 @@ PLOOF_OPENAI_LIVE_MODEL=gpt-image-1
273
269
  PLOOF_OPENAI_LIVE_SIZE=1024x1024
274
270
  ```
275
271
 
272
+ ## Publishing
273
+
274
+ Local release verification stops at packaging:
275
+
276
+ ```bash
277
+ bun run release
278
+ ```
279
+
280
+ Publishing should happen from GitHub Actions by pushing a `v*` tag. The npm
281
+ package must have a Trusted Publisher configured with:
282
+
283
+ | Field | Value |
284
+ | --- | --- |
285
+ | Provider | GitHub Actions |
286
+ | Organization or user | `miketromba` |
287
+ | Repository | `ploof` |
288
+ | Workflow filename | `publish.yml` |
289
+ | Environment | blank |
290
+ | Allowed action | `npm publish` |
291
+
292
+ Do not publish from a local terminal unless intentionally doing a manual
293
+ emergency release.
294
+
276
295
  ## License
277
296
 
278
297
  MIT
package/SPEC.md CHANGED
@@ -51,9 +51,21 @@ Conventions to preserve:
51
51
  - Published package runs on Node 18+ and does not require Bun.
52
52
  - Published files are constrained to runtime artifacts, README, LICENSE, spec, and skill files.
53
53
  - GitHub Actions CI runs typecheck, tests, and build.
54
- - GitHub Actions publish runs on `v*` tags and supports npm trusted publishing/OIDC.
54
+ - GitHub Actions publish runs on `v*` tags through npm trusted publishing/OIDC.
55
55
  - Human-readable output in TTY, compact output when piped, JSON/JSONL for agents and scripts.
56
56
 
57
+ NPM trusted publisher settings for `@miketromba/ploof`:
58
+
59
+ - Provider: GitHub Actions.
60
+ - Organization or user: `miketromba`.
61
+ - Repository: `ploof`.
62
+ - Workflow filename: `publish.yml`.
63
+ - Environment: blank.
64
+ - Allowed action: `npm publish`.
65
+
66
+ Local release verification must stop at `npm pack --dry-run`; do not run local
67
+ `npm publish` for normal releases.
68
+
57
69
  ## Core Goals
58
70
 
59
71
  1. Authenticate with multiple asset generation providers.
Binary file