image-skill 0.1.43 → 0.1.45
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 +16 -0
- package/README.md +9 -9
- package/SKILL.md +10 -10
- package/bin/image-skill.mjs +430 -22
- package/cli.md +13 -4
- package/commands.json +1 -0
- package/llms.txt +2 -2
- package/package.json +1 -1
- package/skill.md +10 -10
- package/skills/agent-image-generation/SKILL.md +78 -0
- package/skills/ai-audio-generation/SKILL.md +3 -3
- package/skills/ai-image-generation/SKILL.md +3 -3
- package/skills/ai-video-generation/SKILL.md +3 -3
- package/skills/creative-media/SKILL.md +3 -3
- package/skills/image-edit/SKILL.md +3 -3
- package/skills/image-generation/SKILL.md +3 -3
- package/skills/image-skill/SKILL.md +10 -10
- package/skills/image-skill/references/cli.md +13 -4
- package/skills/image-skill/references/commands.json +1 -0
- package/skills/image-skill/references/llms.txt +2 -2
- package/skills/image-to-3d/SKILL.md +3 -3
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.45 - 2026-06-12
|
|
8
|
+
|
|
9
|
+
- Release (activation): publish the post-0.1.44 public mirror payload under an
|
|
10
|
+
unpublished package version so `image-skill@latest` can include the
|
|
11
|
+
full-depth GitHub-slug skill install guidance from #1859. No CLI behavior,
|
|
12
|
+
hosted API behavior, payment caps, provider routing, or public contract
|
|
13
|
+
payload changed in this release bump.
|
|
14
|
+
|
|
15
|
+
## 0.1.44 - 2026-06-12
|
|
16
|
+
|
|
17
|
+
- Release (freshness): republish the already-synced public CLI mirror content
|
|
18
|
+
under an unpublished package version so `image-skill@latest` can match the
|
|
19
|
+
public mirror commit again. No CLI behavior, hosted API behavior, payment
|
|
20
|
+
caps, provider routing, or public contract payload changed in this release
|
|
21
|
+
bump.
|
|
22
|
+
|
|
7
23
|
## 0.1.43 - 2026-06-12
|
|
8
24
|
|
|
9
25
|
- Feature (recovery): `doctor --json` now reports `data.in_flight` with
|
package/README.md
CHANGED
|
@@ -12,20 +12,20 @@ Install the agent skill. Prefer the registry slug so the install is tracked and
|
|
|
12
12
|
discoverable on skills.sh:
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y
|
|
15
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-skill -g -a codex -y
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
Intent-named aliases are published from the same repo and point to the same
|
|
19
19
|
zero-setup runtime when an agent searches by task instead of brand:
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
npx skills add danielgwilson/image-skill-cli --skill ai-image-generation -g -a codex -y
|
|
23
|
-
npx skills add danielgwilson/image-skill-cli --skill image-generation -g -a codex -y
|
|
24
|
-
npx skills add danielgwilson/image-skill-cli --skill image-edit -g -a codex -y
|
|
25
|
-
npx skills add danielgwilson/image-skill-cli --skill ai-video-generation -g -a codex -y
|
|
26
|
-
npx skills add danielgwilson/image-skill-cli --skill ai-audio-generation -g -a codex -y
|
|
27
|
-
npx skills add danielgwilson/image-skill-cli --skill image-to-3d -g -a codex -y
|
|
28
|
-
npx skills add danielgwilson/image-skill-cli --skill creative-media -g -a codex -y
|
|
22
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill ai-image-generation -g -a codex -y
|
|
23
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-generation -g -a codex -y
|
|
24
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-edit -g -a codex -y
|
|
25
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill ai-video-generation -g -a codex -y
|
|
26
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill ai-audio-generation -g -a codex -y
|
|
27
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-to-3d -g -a codex -y
|
|
28
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill creative-media -g -a codex -y
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
Or install straight from the hosted public contract for the always-latest build:
|
|
@@ -44,7 +44,7 @@ path:
|
|
|
44
44
|
export HOME="$PWD/.agent-home"
|
|
45
45
|
export CODEX_HOME="$HOME/.codex"
|
|
46
46
|
mkdir -p "$HOME" "$CODEX_HOME"
|
|
47
|
-
npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y
|
|
47
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-skill -g -a codex -y
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
Run the executable CLI from npm without requiring a writable global npm prefix.
|
package/SKILL.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: image-skill
|
|
3
3
|
description: >-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
4
|
+
AI image generation and editing for agents across text-to-image and
|
|
5
|
+
image-to-image workflows, video generation, audio generation, and image-to-3D
|
|
6
|
+
asset creation through one zero-setup hosted runtime. Use Image Skill when an
|
|
7
|
+
agent needs durable media URLs, recoverable jobs, model/cost inspection and
|
|
8
|
+
stable JSON envelopes with capability-preserving parameters. Optional
|
|
9
|
+
agent-funded credits work without a provider API key, OAuth app, local model
|
|
10
|
+
or per-provider billing account.
|
|
11
11
|
homepage: https://image-skill.com
|
|
12
12
|
docs: https://image-skill.com/llms.txt
|
|
13
13
|
metadata:
|
|
@@ -39,7 +39,7 @@ JSON is the default. Do not add `--json` to examples.
|
|
|
39
39
|
npm_config_update_notifier=false npx -y image-skill@latest create --guide --prompt "a compact field camera on a stainless workbench"
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
-
The guide is a free, zero-spend planning call. Given current auth, quota, and payment state, it returns `data.next_command`, `data.next_command_copy_runnable`, `data.next_command_missing_inputs`, `data.stage`, `data.guide_warning`, `data.next_command_effect`, `data.auth_ready`, `data.no_spend_evaluation`, `data.recommended_no_spend_command` (alias of `data.no_spend_next_command`), `data.no_spend_next_command_effect`, `data.self_fund_next_command`, `data.self_fund_handoff`, `data.auth_handoff`, and `data.mutation`. Read `data.guide_warning` before running `data.next_command`: `next_command_safety` names whether the command is no-spend setup, read-only inspection, live-money payment action, or live media create. Run that next command only when `data.next_command_copy_runnable` is `true` and the warning says it is safe for your spend policy; when it is `false`, fill `data.next_command_missing_inputs` first. Repeat until `data.stage` is `ready_to_create`. At `ready_to_create`, `data.auth_ready.ready` and `data.auth_ready.next_command_auth_ready` are `true`: the returned create can reuse saved config, env token, or stdin token context without exposing a raw token. When `data.guide_warning.next_command_safety` is `live_media_create_credit_debit` and `data.no_spend_evaluation.stop_here` is `true`, `data.next_command` is the live create: run it only if media spend is allowed, otherwise stop before it and run `data.recommended_no_spend_command` for no-spend proof. The no-spend command is an authenticated hosted dry-run: it may create a recoverable `job.planned` receipt, but it has no provider call, credit debit, downloadable asset, or media write.
|
|
42
|
+
The guide is a free, zero-spend planning call. Given current auth, quota, and payment state, it returns `data.next_command`, `data.next_command_copy_runnable`, `data.next_command_missing_inputs`, `data.stage`, `data.guide_warning`, `data.next_command_effect`, `data.auth_ready`, `data.no_spend_evaluation`, `data.guide_recovery`, `data.recommended_no_spend_command` (alias of `data.no_spend_next_command`), `data.no_spend_next_command_effect`, `data.self_fund_next_command`, `data.self_fund_handoff`, `data.auth_handoff`, and `data.mutation`. Read `data.guide_warning` before running `data.next_command`: `next_command_safety` names whether the command is no-spend setup, read-only inspection, live-money payment action, or live media create. Run that next command only when `data.next_command_copy_runnable` is `true` and the warning says it is safe for your spend policy; when it is `false`, fill `data.next_command_missing_inputs` first. Prefer `data.guide_recovery` for no-doc recovery loops: it names the safest no-spend command and field, the live create or payment field that would spend, and the double-spend guard to check before any live retry. Repeat until `data.stage` is `ready_to_create`. At `ready_to_create`, `data.auth_ready.ready` and `data.auth_ready.next_command_auth_ready` are `true`: the returned create can reuse saved config, env token, or stdin token context without exposing a raw token. When `data.guide_warning.next_command_safety` is `live_media_create_credit_debit` and `data.no_spend_evaluation.stop_here` is `true`, `data.next_command` is the live create: run it only if media spend is allowed, otherwise stop before it and run `data.recommended_no_spend_command` for no-spend proof. The no-spend command is an authenticated hosted dry-run: it may create a recoverable `job.planned` receipt, but it has no provider call, credit debit, downloadable asset, or media write.
|
|
43
43
|
|
|
44
44
|
Minimum success envelope on a create or edit:
|
|
45
45
|
|
|
@@ -141,7 +141,7 @@ Install paths, in order of preference:
|
|
|
141
141
|
npm_config_update_notifier=false npx -y image-skill@latest create --guide --prompt "..."
|
|
142
142
|
|
|
143
143
|
# tracked install through the registry slug
|
|
144
|
-
npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y
|
|
144
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-skill -g -a codex -y
|
|
145
145
|
|
|
146
146
|
# direct from the hosted public contract
|
|
147
147
|
npx skills add https://image-skill.com --skill image-skill -g -a codex -y
|
|
@@ -156,7 +156,7 @@ rerunning `skills add`. The skills.sh Codex adapter writes to `$HOME/.agents`;
|
|
|
156
156
|
export HOME="$PWD/.agent-home"
|
|
157
157
|
export CODEX_HOME="$HOME/.codex"
|
|
158
158
|
mkdir -p "$HOME" "$CODEX_HOME"
|
|
159
|
-
npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y
|
|
159
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-skill -g -a codex -y
|
|
160
160
|
```
|
|
161
161
|
|
|
162
162
|
## Cost and payment
|