image-skill 0.1.3 → 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 +2 -0
- package/bin/image-skill.mjs +2 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -24,6 +24,8 @@ image-skill credits buy --provider stripe --quote-id quote_... --idempotency-key
|
|
|
24
24
|
image-skill create --prompt "A tiny studio robot painting a postcard" --model xai.grok-imagine-image --accept-unknown-cost --json
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
+
The public CLI supports Node.js 20 and newer.
|
|
28
|
+
|
|
27
29
|
Agent-facing contracts:
|
|
28
30
|
|
|
29
31
|
- [skills/image-skill/SKILL.md](./skills/image-skill/SKILL.md)
|
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.5";
|
|
11
11
|
const DEFAULT_API_BASE_URL = "https://api.image-skill.com";
|
|
12
12
|
const DEFAULT_CONFIG_PATH = join(
|
|
13
13
|
process.env.XDG_CONFIG_HOME ?? join(os.homedir(), ".config"),
|
|
@@ -782,6 +782,7 @@ async function assets(argv) {
|
|
|
782
782
|
if (!downloaded.ok) {
|
|
783
783
|
return downloaded.result;
|
|
784
784
|
}
|
|
785
|
+
shown.envelope.command = "image-skill assets get";
|
|
785
786
|
shown.envelope.data = {
|
|
786
787
|
request: {
|
|
787
788
|
reference,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "image-skill",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Thin hosted CLI for Image Skill, a creative runtime for agents.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"cli.md"
|
|
21
21
|
],
|
|
22
22
|
"engines": {
|
|
23
|
-
"node": ">=
|
|
23
|
+
"node": ">=20.0.0"
|
|
24
24
|
},
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|