image-skill 0.1.52 → 0.1.53

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,15 @@ 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.53 - 2026-06-16
8
+
9
+ - Release (activation): align `create --guide` `auth_required` blocker copy
10
+ with anonymous signup semantics. Fresh agents are told to sign up once, with
11
+ `--agent-contact` optional and attachable later, instead of implying that a
12
+ durable contact inbox is required before hosted media creation. No auth
13
+ semantics, token storage, payment caps, provider routing, provider spend,
14
+ media spend, hosted deploy, or production write changed in this release bump.
15
+
7
16
  ## 0.1.52 - 2026-06-16
8
17
 
9
18
  - Release (activation/self-fund): publish the quota
@@ -15,7 +15,7 @@ import { Readable } from "node:stream";
15
15
  import { pipeline } from "node:stream/promises";
16
16
  import os from "node:os";
17
17
 
18
- const VERSION = "0.1.52";
18
+ const VERSION = "0.1.53";
19
19
  const PACKAGE_NAME = "image-skill";
20
20
  const DEFAULT_API_BASE_URL = "https://api.image-skill.com";
21
21
  const DEFAULT_DOCS_BASE_URL = "https://image-skill.com";
@@ -2776,7 +2776,7 @@ function createGuideBlocker(stage, input) {
2776
2776
  return {
2777
2777
  code: "auth_required",
2778
2778
  message:
2779
- "Sign up once with a durable agent contact before creating hosted media.",
2779
+ "Sign up once before creating hosted media; --agent-contact is optional and can be attached later.",
2780
2780
  };
2781
2781
  }
2782
2782
  if (stage === "quota_required") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "image-skill",
3
- "version": "0.1.52",
3
+ "version": "0.1.53",
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,