@miketromba/ploof 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.
- package/README.md +24 -5
- package/SPEC.md +13 -1
- package/assets/brand/ploof-banner.png +0 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<
|
|
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
|
|
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
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@miketromba/ploof",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "AI asset generation CLI for OpenAI images today, designed for multi-provider creative workflows.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"files": [
|
|
10
10
|
"dist",
|
|
11
11
|
"skills",
|
|
12
|
+
"assets/brand/ploof-banner.png",
|
|
12
13
|
"README.md",
|
|
13
14
|
"LICENSE",
|
|
14
15
|
"SPEC.md"
|
|
@@ -26,7 +27,7 @@
|
|
|
26
27
|
"format": "bunx biome format --write .",
|
|
27
28
|
"typecheck": "bunx tsc --noEmit",
|
|
28
29
|
"prepublishOnly": "bun run lint && bun run typecheck && bun test && bun run build",
|
|
29
|
-
"release": "bun run lint && bun run typecheck && bun test && bun run build && npm pack --dry-run
|
|
30
|
+
"release": "bun run lint && bun run typecheck && bun test && bun run build && npm pack --dry-run",
|
|
30
31
|
"ploof": "bun run bin/ploof.ts",
|
|
31
32
|
"prepare": "husky || true"
|
|
32
33
|
},
|