@miketromba/ploof 0.1.4 → 0.1.5

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
@@ -9,7 +9,7 @@
9
9
  <img src="https://img.shields.io/badge/node-%3E%3D18-brightgreen" alt="node version" />
10
10
  </p>
11
11
 
12
- Ploof is a CLI for generating and editing creative assets with AI providers. It supports OpenAI image generation, editing, and variations today, with a provider registry designed for audio, video, and broader model marketplaces over time.
12
+ Ploof is a CLI for generating and editing creative assets with AI providers. It supports OpenAI image generation and editing today, plus the legacy OpenAI image variations endpoint when the authenticated project has access. The provider registry is designed for audio, video, and broader model marketplaces over time.
13
13
 
14
14
  It is built for both developers and AI agents: predictable commands, parseable output, local auth profiles, YAML manifests, parallel execution, and a companion skill.
15
15
 
@@ -20,7 +20,7 @@ It is built for both developers and AI agents: predictable commands, parseable o
20
20
  | OpenAI auth profiles | Supported |
21
21
  | OpenAI image generation | Supported |
22
22
  | OpenAI image editing | Supported |
23
- | OpenAI image variations | Supported |
23
+ | OpenAI image variations | Legacy endpoint; supported when available to the authenticated project |
24
24
  | Context images and masks | Supported |
25
25
  | YAML/JSON batch manifests | Supported |
26
26
  | Dependency-aware parallel runs | Supported |
@@ -154,7 +154,7 @@ Use repeated `--image` flags for context/reference images. Use `--mask` when the
154
154
 
155
155
  ## Image Variations
156
156
 
157
- OpenAI image variations use the legacy variations endpoint and default to `dall-e-2`, which is currently the only supported model for that endpoint.
157
+ OpenAI image variations use the legacy variations endpoint and default to `dall-e-2`, which is currently the only supported model for that endpoint. If OpenAI returns a 404 for this command, use `ploof image edit` for image-to-image workflows or try a profile/project with DALL-E 2 variation access.
158
158
 
159
159
  ```bash
160
160
  ploof image variation \
package/SPEC.md CHANGED
@@ -223,8 +223,11 @@ ploof image variation \
223
223
  --size 1024x1024
224
224
  ```
225
225
 
226
- OpenAI variations default to `dall-e-2`, because the current OpenAI variations
227
- endpoint only supports that model. `ploof image variations` is an alias.
226
+ OpenAI variations default to `dall-e-2`, because the legacy OpenAI variations
227
+ endpoint only supports that model. This endpoint is supported when the
228
+ authenticated project has DALL-E 2 variation access; if OpenAI returns a 404,
229
+ use `ploof image edit` for image-to-image workflows. `ploof image variations`
230
+ is an alias.
228
231
 
229
232
  ### Batch Run
230
233