image-skill 0.1.19 → 0.1.20

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 CHANGED
@@ -4,6 +4,22 @@ 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.20 - 2026-06-02
8
+
9
+ - Fix (funnel): the advertised `signup` usage line omitted the now-required
10
+ `--agent-name` and `--runtime` flags, so a cold agent's first signup always
11
+ stumbled before self-correcting via the recovery envelope. The top-level help
12
+ now advertises the full required flag set, so a first signup with the
13
+ advertised flags succeeds.
14
+ - Fix (funnel): the live create/edit receipt reported `cost.estimated_usd: null`
15
+ while the dry-run/plan receipt populated it. The live receipt now derives
16
+ `estimated_usd` from the same reservation credit-pricing the plan used, so plan
17
+ and execution agree (a provider-reported concrete value still wins when
18
+ present).
19
+ - Test: added a fault-injection test that forces the hosted provider to 5xx and
20
+ asserts the error envelope carries `recovery.idempotency_key` +
21
+ `suggested_command`, then proves a same-key retry replays and charges once.
22
+
7
23
  ## 0.1.19 - 2026-06-02
8
24
 
9
25
  - Fix: the two newly-shipped modalities were broken on live prod despite green
@@ -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.19";
10
+ const VERSION = "0.1.20";
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";
@@ -74,7 +74,7 @@ async function main(rawArgv) {
74
74
  commands: [
75
75
  "doctor",
76
76
  "trust",
77
- "signup --agent --agent-contact --show-token",
77
+ "signup --agent --agent-contact --agent-name NAME --runtime RUNTIME --show-token",
78
78
  "auth status",
79
79
  "auth save",
80
80
  "auth logout",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "image-skill",
3
- "version": "0.1.19",
3
+ "version": "0.1.20",
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,