image-skill 0.1.18 → 0.1.19
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/CHANGELOG.md +20 -0
- package/bin/image-skill.mjs +5 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,26 @@ This changelog tracks the public `image-skill` CLI package and public skill
|
|
|
4
4
|
mirror. The npm package metadata remains the authority for tarball integrity and
|
|
5
5
|
provenance; this file is the human- and agent-readable release map.
|
|
6
6
|
|
|
7
|
+
## 0.1.19 - 2026-06-02
|
|
8
|
+
|
|
9
|
+
- Fix: the two newly-shipped modalities were broken on live prod despite green
|
|
10
|
+
unit tests. Audio (`fal.stable-audio-25-text-to-audio`) failed server-side
|
|
11
|
+
with `PROVIDER_FAILURE` "fal audio queue status returned HTTP 405" — the Fal
|
|
12
|
+
queue status/result poll appended `requests/<id>` to the full sub-pathed model
|
|
13
|
+
id, but Fal keys those endpoints by the app id only (`fal-ai/stable-audio-25`,
|
|
14
|
+
sub-path dropped), so the poll 405'd. The queue runner now prefers the absolute
|
|
15
|
+
`status_url`/`response_url` Fal returns and falls back to the app-level base.
|
|
16
|
+
Video and Trellis (no sub-path) are unaffected.
|
|
17
|
+
- Fix: the documented promptless image-to-3D edit `image-skill edit --input
|
|
18
|
+
image_... --model fal.trellis-image-to-3d --json` (no `--prompt`) was
|
|
19
|
+
unreachable — the edit validator required `--prompt` while the provider
|
|
20
|
+
rejected any prompt. The public CLI bin (and the server) now treat Trellis as
|
|
21
|
+
promptless: no `--prompt` is required and none is sent.
|
|
22
|
+
- Fix: a failed edit's `PROVIDER_FAILURE` recovery `suggested_command` now
|
|
23
|
+
preserves `--input` and `--model` so the advertised retry is runnable verbatim
|
|
24
|
+
(it previously collapsed to a bare `image-skill edit --idempotency-key ...`
|
|
25
|
+
that failed "edit requires --input").
|
|
26
|
+
|
|
7
27
|
## 0.1.18 - 2026-06-02
|
|
8
28
|
|
|
9
29
|
- Contract: advertise the now-shipped audio and 3D modalities so registries
|
package/bin/image-skill.mjs
CHANGED
|
@@ -7,7 +7,7 @@ import { Readable } from "node:stream";
|
|
|
7
7
|
import { pipeline } from "node:stream/promises";
|
|
8
8
|
import os from "node:os";
|
|
9
9
|
|
|
10
|
-
const VERSION = "0.1.
|
|
10
|
+
const VERSION = "0.1.19";
|
|
11
11
|
const PACKAGE_NAME = "image-skill";
|
|
12
12
|
const DEFAULT_API_BASE_URL = "https://api.image-skill.com";
|
|
13
13
|
const DEFAULT_DOCS_BASE_URL = "https://image-skill.com";
|
|
@@ -17,6 +17,10 @@ const PROMPTLESS_EDIT_MODEL_IDS = new Set([
|
|
|
17
17
|
"fal.flux-dev-redux",
|
|
18
18
|
"fal.flux-krea-redux",
|
|
19
19
|
"fal.flux-schnell-redux",
|
|
20
|
+
// Promptless image-to-3D variation: the documented `image-skill edit --input
|
|
21
|
+
// image_... --model fal.trellis-image-to-3d` (no --prompt) must succeed; the
|
|
22
|
+
// provider rejects any prompt, so the public CLI must not require/send one.
|
|
23
|
+
"fal.trellis-image-to-3d",
|
|
20
24
|
]);
|
|
21
25
|
const DEFAULT_CONFIG_PATH = join(
|
|
22
26
|
process.env.XDG_CONFIG_HOME ?? join(os.homedir(), ".config"),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "image-skill",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.19",
|
|
4
4
|
"description": "Zero-setup durable creative-media CLI for agents (image + video + audio + 3D): guide-first creation, model and cost inspection, owned URLs, JSON recovery, payments, reusable assets, and feedback.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|