@miketromba/ploof 0.1.0
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/LICENSE +21 -0
- package/README.md +278 -0
- package/SPEC.md +426 -0
- package/dist/ploof.js +313 -0
- package/package.json +74 -0
- package/skills/asset-generation/SKILL.md +18 -0
package/package.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@miketromba/ploof",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "AI asset generation CLI for OpenAI images today, designed for multi-provider creative workflows.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"ploof": "dist/ploof.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"skills",
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE",
|
|
14
|
+
"SPEC.md"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"dev": "bun run bin/ploof.ts",
|
|
18
|
+
"build": "bun run scripts/build.ts",
|
|
19
|
+
"test": "bun test tests/unit tests/integration",
|
|
20
|
+
"test:watch": "bun test --watch",
|
|
21
|
+
"test:unit": "bun test tests/unit",
|
|
22
|
+
"test:integration": "bun test tests/integration",
|
|
23
|
+
"test:e2e": "bun test tests/e2e",
|
|
24
|
+
"lint": "bunx biome check .",
|
|
25
|
+
"lint:fix": "bunx biome check --write .",
|
|
26
|
+
"format": "bunx biome format --write .",
|
|
27
|
+
"typecheck": "bunx tsc --noEmit",
|
|
28
|
+
"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 && npm publish --access public",
|
|
30
|
+
"ploof": "bun run bin/ploof.ts",
|
|
31
|
+
"prepare": "husky || true"
|
|
32
|
+
},
|
|
33
|
+
"keywords": [
|
|
34
|
+
"ai",
|
|
35
|
+
"assets",
|
|
36
|
+
"image-generation",
|
|
37
|
+
"cli",
|
|
38
|
+
"openai",
|
|
39
|
+
"agent",
|
|
40
|
+
"media-generation"
|
|
41
|
+
],
|
|
42
|
+
"author": "Michael Tromba",
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"repository": {
|
|
45
|
+
"type": "git",
|
|
46
|
+
"url": "git+https://github.com/miketromba/ploof.git"
|
|
47
|
+
},
|
|
48
|
+
"bugs": {
|
|
49
|
+
"url": "https://github.com/miketromba/ploof/issues"
|
|
50
|
+
},
|
|
51
|
+
"homepage": "https://github.com/miketromba/ploof#readme",
|
|
52
|
+
"engines": {
|
|
53
|
+
"node": ">=18.0.0"
|
|
54
|
+
},
|
|
55
|
+
"publishConfig": {
|
|
56
|
+
"access": "public"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@biomejs/biome": "^2.5.1",
|
|
60
|
+
"@types/bun": "^1.3.14",
|
|
61
|
+
"husky": "^9.1.7",
|
|
62
|
+
"typescript": "^6.0.3"
|
|
63
|
+
},
|
|
64
|
+
"peerDependencies": {
|
|
65
|
+
"typescript": "^5 || ^6"
|
|
66
|
+
},
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"chalk": "^5.6.2",
|
|
69
|
+
"commander": "^13.1.0",
|
|
70
|
+
"openai": "^6.45.0",
|
|
71
|
+
"yaml": "^2.9.0",
|
|
72
|
+
"zod": "^4.4.3"
|
|
73
|
+
}
|
|
74
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: asset-generation
|
|
3
|
+
description: Generate, edit, or batch-create AI assets with the ploof CLI. Use when working with generated images, provider auth, asset manifests, image context inputs, masks, or agent-driven creative asset workflows.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Learn ploof from the CLI
|
|
7
|
+
|
|
8
|
+
When this skill is relevant, run:
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
ploof learn
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Follow the instructions printed by `ploof learn`. That output is the canonical agent reference for the installed ploof version.
|
|
15
|
+
|
|
16
|
+
If `ploof learn` is unavailable because the CLI is not installed, ask the user to install `@miketromba/ploof` first, then rerun `ploof learn`.
|
|
17
|
+
|
|
18
|
+
Do not rely on this skill file for operational details. It is only a bootstrap adapter that points agents to `ploof learn`.
|