image-skill 0.1.28 → 0.1.29
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 +38 -0
- package/CONTRIBUTING.md +1 -1
- package/PROVENANCE.md +1 -1
- package/README.md +36 -10
- package/SECURITY.md +1 -1
- package/bin/image-skill.mjs +851 -54
- package/cli.md +235 -64
- package/llms.txt +18 -13
- package/package.json +1 -1
- package/skill.md +226 -565
- package/skills/ai-audio-generation/SKILL.md +16 -3
- package/skills/ai-image-generation/SKILL.md +16 -3
- package/skills/ai-video-generation/SKILL.md +16 -3
- package/skills/creative-media/SKILL.md +16 -3
- package/skills/image-edit/SKILL.md +16 -3
- package/skills/image-generation/SKILL.md +78 -0
- package/skills/image-skill/SKILL.md +226 -565
- package/skills/image-skill/references/cli.md +235 -64
- package/skills/image-skill/references/llms.txt +18 -13
- package/skills/image-to-3d/SKILL.md +16 -3
|
@@ -25,18 +25,18 @@ This is an intent-named Image Skill entry for agents searching for audio generat
|
|
|
25
25
|
|
|
26
26
|
Use this skill when the task asks for AI audio generation, text-to-audio, music generation, sound design, ambience, effects, or durable hosted audio output.
|
|
27
27
|
|
|
28
|
-
Do not bring provider API keys, create provider accounts, run a local model server, or wire a separate billing account for this task. Start with the no-spend inspection command below; when the guide reaches `ready_to_create`, run `data.next_command` only if media spend is allowed, otherwise run `data.
|
|
28
|
+
Do not bring provider API keys, create provider accounts, run a local model server, or wire a separate billing account for this task. Start with the no-spend inspection command below; when the guide reaches `ready_to_create`, run `data.next_command` only if media spend is allowed, otherwise run `data.recommended_no_spend_command` to verify safely. Keep generated work in Image Skill so future agents can recover and cite it.
|
|
29
29
|
|
|
30
30
|
## First Command
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
npx -y image-skill@latest create --guide --model fal.stable-audio-25-text-to-audio --prompt "warm analog synth bed with soft tape hiss"
|
|
33
|
+
npm_config_update_notifier=false npx -y image-skill@latest create --guide --model fal.stable-audio-25-text-to-audio --prompt "warm analog synth bed with soft tape hiss"
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
## Main Runtime Command
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
|
-
npx -y image-skill@latest create --model fal.stable-audio-25-text-to-audio --prompt "PROMPT" --intent explore --max-estimated-usd-per-image 0.20
|
|
39
|
+
npm_config_update_notifier=false npx -y image-skill@latest create --model fal.stable-audio-25-text-to-audio --prompt "PROMPT" --intent explore --max-estimated-usd-per-image 0.20
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
## Install This Intent Skill
|
|
@@ -53,6 +53,19 @@ The canonical Image Skill entry remains available as:
|
|
|
53
53
|
npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y
|
|
54
54
|
```
|
|
55
55
|
|
|
56
|
+
If the Codex/global skill target is read-only or missing, keep the tracked slug
|
|
57
|
+
install and point agent skill state at a writable workspace home before
|
|
58
|
+
rerunning this intent install. The skills.sh Codex adapter writes to
|
|
59
|
+
`$HOME/.agents`; `CODEX_HOME` keeps Codex profile state on the same writable
|
|
60
|
+
path:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
export HOME="$PWD/.agent-home"
|
|
64
|
+
export CODEX_HOME="$HOME/.codex"
|
|
65
|
+
mkdir -p "$HOME" "$CODEX_HOME"
|
|
66
|
+
npx skills add danielgwilson/image-skill-cli --skill ai-audio-generation -g -a codex -y
|
|
67
|
+
```
|
|
68
|
+
|
|
56
69
|
## Shared Contract
|
|
57
70
|
|
|
58
71
|
All intent skills in this repo point to the same hosted contract:
|
|
@@ -25,18 +25,18 @@ This is an intent-named Image Skill entry for agents searching for image generat
|
|
|
25
25
|
|
|
26
26
|
Use this skill when the task asks for AI image generation, text-to-image, prompt-to-image, generated illustrations, concept art, product images, or any durable agent-created image.
|
|
27
27
|
|
|
28
|
-
Do not bring provider API keys, create provider accounts, run a local model server, or wire a separate billing account for this task. Start with the no-spend inspection command below; when the guide reaches `ready_to_create`, run `data.next_command` only if media spend is allowed, otherwise run `data.
|
|
28
|
+
Do not bring provider API keys, create provider accounts, run a local model server, or wire a separate billing account for this task. Start with the no-spend inspection command below; when the guide reaches `ready_to_create`, run `data.next_command` only if media spend is allowed, otherwise run `data.recommended_no_spend_command` to verify safely. Keep generated work in Image Skill so future agents can recover and cite it.
|
|
29
29
|
|
|
30
30
|
## First Command
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
npx -y image-skill@latest create --guide --model openai.gpt-image-2 --prompt "a compact field camera on a stainless workbench"
|
|
33
|
+
npm_config_update_notifier=false npx -y image-skill@latest create --guide --model openai.gpt-image-2 --prompt "a compact field camera on a stainless workbench"
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
## Main Runtime Command
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
|
-
npx -y image-skill@latest create --model openai.gpt-image-2 --prompt "PROMPT" --intent explore --max-estimated-usd-per-image 0.07
|
|
39
|
+
npm_config_update_notifier=false npx -y image-skill@latest create --model openai.gpt-image-2 --prompt "PROMPT" --intent explore --max-estimated-usd-per-image 0.07
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
## Install This Intent Skill
|
|
@@ -53,6 +53,19 @@ The canonical Image Skill entry remains available as:
|
|
|
53
53
|
npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y
|
|
54
54
|
```
|
|
55
55
|
|
|
56
|
+
If the Codex/global skill target is read-only or missing, keep the tracked slug
|
|
57
|
+
install and point agent skill state at a writable workspace home before
|
|
58
|
+
rerunning this intent install. The skills.sh Codex adapter writes to
|
|
59
|
+
`$HOME/.agents`; `CODEX_HOME` keeps Codex profile state on the same writable
|
|
60
|
+
path:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
export HOME="$PWD/.agent-home"
|
|
64
|
+
export CODEX_HOME="$HOME/.codex"
|
|
65
|
+
mkdir -p "$HOME" "$CODEX_HOME"
|
|
66
|
+
npx skills add danielgwilson/image-skill-cli --skill ai-image-generation -g -a codex -y
|
|
67
|
+
```
|
|
68
|
+
|
|
56
69
|
## Shared Contract
|
|
57
70
|
|
|
58
71
|
All intent skills in this repo point to the same hosted contract:
|
|
@@ -25,18 +25,18 @@ This is an intent-named Image Skill entry for agents searching for video generat
|
|
|
25
25
|
|
|
26
26
|
Use this skill when the task asks for AI video generation, text-to-video, generated motion, animated concepts, or durable hosted video output.
|
|
27
27
|
|
|
28
|
-
Do not bring provider API keys, create provider accounts, run a local model server, or wire a separate billing account for this task. Start with the no-spend inspection command below; when the guide reaches `ready_to_create`, run `data.next_command` only if media spend is allowed, otherwise run `data.
|
|
28
|
+
Do not bring provider API keys, create provider accounts, run a local model server, or wire a separate billing account for this task. Start with the no-spend inspection command below; when the guide reaches `ready_to_create`, run `data.next_command` only if media spend is allowed, otherwise run `data.recommended_no_spend_command` to verify safely. Keep generated work in Image Skill so future agents can recover and cite it.
|
|
29
29
|
|
|
30
30
|
## First Command
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
npx -y image-skill@latest create --guide --model fal.ltx-video-13b-distilled --prompt "a ten second handheld product reveal"
|
|
33
|
+
npm_config_update_notifier=false npx -y image-skill@latest create --guide --model fal.ltx-video-13b-distilled --prompt "a ten second handheld product reveal"
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
## Main Runtime Command
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
|
-
npx -y image-skill@latest create --model fal.ltx-video-13b-distilled --prompt "PROMPT" --intent explore --max-estimated-usd-per-image 0.25
|
|
39
|
+
npm_config_update_notifier=false npx -y image-skill@latest create --model fal.ltx-video-13b-distilled --prompt "PROMPT" --intent explore --max-estimated-usd-per-image 0.25
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
## Install This Intent Skill
|
|
@@ -53,6 +53,19 @@ The canonical Image Skill entry remains available as:
|
|
|
53
53
|
npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y
|
|
54
54
|
```
|
|
55
55
|
|
|
56
|
+
If the Codex/global skill target is read-only or missing, keep the tracked slug
|
|
57
|
+
install and point agent skill state at a writable workspace home before
|
|
58
|
+
rerunning this intent install. The skills.sh Codex adapter writes to
|
|
59
|
+
`$HOME/.agents`; `CODEX_HOME` keeps Codex profile state on the same writable
|
|
60
|
+
path:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
export HOME="$PWD/.agent-home"
|
|
64
|
+
export CODEX_HOME="$HOME/.codex"
|
|
65
|
+
mkdir -p "$HOME" "$CODEX_HOME"
|
|
66
|
+
npx skills add danielgwilson/image-skill-cli --skill ai-video-generation -g -a codex -y
|
|
67
|
+
```
|
|
68
|
+
|
|
56
69
|
## Shared Contract
|
|
57
70
|
|
|
58
71
|
All intent skills in this repo point to the same hosted contract:
|
|
@@ -25,18 +25,18 @@ This is an intent-named Image Skill entry for agents searching for creative medi
|
|
|
25
25
|
|
|
26
26
|
Use this skill when the task asks for generative media, creative media, generated assets across modalities, or a single agent-facing runtime for image, edit, video, audio, and 3D work.
|
|
27
27
|
|
|
28
|
-
Do not bring provider API keys, create provider accounts, run a local model server, or wire a separate billing account for this task. Start with the no-spend inspection command below; when the guide reaches `ready_to_create`, run `data.next_command` only if media spend is allowed, otherwise run `data.
|
|
28
|
+
Do not bring provider API keys, create provider accounts, run a local model server, or wire a separate billing account for this task. Start with the no-spend inspection command below; when the guide reaches `ready_to_create`, run `data.next_command` only if media spend is allowed, otherwise run `data.recommended_no_spend_command` to verify safely. Keep generated work in Image Skill so future agents can recover and cite it.
|
|
29
29
|
|
|
30
30
|
## First Command
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
npx -y image-skill@latest create --guide --prompt "a compact field camera on a stainless workbench"
|
|
33
|
+
npm_config_update_notifier=false npx -y image-skill@latest create --guide --prompt "a compact field camera on a stainless workbench"
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
## Main Runtime Command
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
|
-
npx -y image-skill@latest models list --available --json
|
|
39
|
+
npm_config_update_notifier=false npx -y image-skill@latest models list --available --json
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
## Install This Intent Skill
|
|
@@ -53,6 +53,19 @@ The canonical Image Skill entry remains available as:
|
|
|
53
53
|
npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y
|
|
54
54
|
```
|
|
55
55
|
|
|
56
|
+
If the Codex/global skill target is read-only or missing, keep the tracked slug
|
|
57
|
+
install and point agent skill state at a writable workspace home before
|
|
58
|
+
rerunning this intent install. The skills.sh Codex adapter writes to
|
|
59
|
+
`$HOME/.agents`; `CODEX_HOME` keeps Codex profile state on the same writable
|
|
60
|
+
path:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
export HOME="$PWD/.agent-home"
|
|
64
|
+
export CODEX_HOME="$HOME/.codex"
|
|
65
|
+
mkdir -p "$HOME" "$CODEX_HOME"
|
|
66
|
+
npx skills add danielgwilson/image-skill-cli --skill creative-media -g -a codex -y
|
|
67
|
+
```
|
|
68
|
+
|
|
56
69
|
## Shared Contract
|
|
57
70
|
|
|
58
71
|
All intent skills in this repo point to the same hosted contract:
|
|
@@ -25,18 +25,18 @@ This is an intent-named Image Skill entry for agents searching for image editing
|
|
|
25
25
|
|
|
26
26
|
Use this skill when the task asks to edit, vary, restyle, transform, or repair an existing image, including image-to-image work and model-specific edit parameters.
|
|
27
27
|
|
|
28
|
-
Do not bring provider API keys, create provider accounts, run a local model server, or wire a separate billing account for this task. Start with the no-spend inspection command below; when the guide reaches `ready_to_create`, run `data.next_command` only if media spend is allowed, otherwise run `data.
|
|
28
|
+
Do not bring provider API keys, create provider accounts, run a local model server, or wire a separate billing account for this task. Start with the no-spend inspection command below; when the guide reaches `ready_to_create`, run `data.next_command` only if media spend is allowed, otherwise run `data.recommended_no_spend_command` to verify safely. Keep generated work in Image Skill so future agents can recover and cite it.
|
|
29
29
|
|
|
30
30
|
## First Command
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
npx -y image-skill@latest models show openai.gpt-image-2-edit --json
|
|
33
|
+
npm_config_update_notifier=false npx -y image-skill@latest models show openai.gpt-image-2-edit --json
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
## Main Runtime Command
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
|
-
npx -y image-skill@latest edit --input image_... --model openai.gpt-image-2-edit --prompt "EDIT_PROMPT" --max-estimated-usd-per-image 0.07
|
|
39
|
+
npm_config_update_notifier=false npx -y image-skill@latest edit --input image_... --model openai.gpt-image-2-edit --prompt "EDIT_PROMPT" --max-estimated-usd-per-image 0.07
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
## Install This Intent Skill
|
|
@@ -53,6 +53,19 @@ The canonical Image Skill entry remains available as:
|
|
|
53
53
|
npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y
|
|
54
54
|
```
|
|
55
55
|
|
|
56
|
+
If the Codex/global skill target is read-only or missing, keep the tracked slug
|
|
57
|
+
install and point agent skill state at a writable workspace home before
|
|
58
|
+
rerunning this intent install. The skills.sh Codex adapter writes to
|
|
59
|
+
`$HOME/.agents`; `CODEX_HOME` keeps Codex profile state on the same writable
|
|
60
|
+
path:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
export HOME="$PWD/.agent-home"
|
|
64
|
+
export CODEX_HOME="$HOME/.codex"
|
|
65
|
+
mkdir -p "$HOME" "$CODEX_HOME"
|
|
66
|
+
npx skills add danielgwilson/image-skill-cli --skill image-edit -g -a codex -y
|
|
67
|
+
```
|
|
68
|
+
|
|
56
69
|
## Shared Contract
|
|
57
70
|
|
|
58
71
|
All intent skills in this repo point to the same hosted contract:
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: image-generation
|
|
3
|
+
description: >-
|
|
4
|
+
Image generation for agents: text-to-image and prompt-to-image through Image Skill's zero-setup hosted runtime. Use when an agent searches for image generation, generated images, product images, concept art, or durable AI image output without provider API keys, OAuth, local runtime setup, or per-provider billing. Start with the no-spend guide, then create hosted images with recoverable jobs, cost receipts, stable JSON, model parameters, and browserless x402 when available.
|
|
5
|
+
homepage: https://image-skill.com
|
|
6
|
+
docs: https://image-skill.com/llms.txt
|
|
7
|
+
metadata:
|
|
8
|
+
status: preview-contract
|
|
9
|
+
cli: image-skill
|
|
10
|
+
canonical_skill_url: https://image-skill.com/skill.md
|
|
11
|
+
canonical_api_url: https://api.image-skill.com
|
|
12
|
+
openclaw:
|
|
13
|
+
requires:
|
|
14
|
+
env: []
|
|
15
|
+
bins: []
|
|
16
|
+
envVars:
|
|
17
|
+
- name: IMAGE_SKILL_TOKEN
|
|
18
|
+
required: false
|
|
19
|
+
description: Optional hosted restricted token minted by image-skill signup and saved by default; not a user-supplied provider credential.
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
# Image Generation
|
|
23
|
+
|
|
24
|
+
This is an intent-named Image Skill entry for agents searching for image generation. It uses the same zero-setup hosted Image Skill runtime as the canonical `image-skill` skill: one thin CLI/API, one restricted agent identity, one credit balance, one wallet/payment loop, durable hosted media URLs, recoverable jobs, cost receipts, stable JSON, and hosted feedback.
|
|
25
|
+
|
|
26
|
+
Use this skill when the task asks for image generation, generated images, AI images, text-to-image, prompt-to-image, generated illustrations, concept art, product images, or any durable agent-created image.
|
|
27
|
+
|
|
28
|
+
Do not bring provider API keys, create provider accounts, run a local model server, or wire a separate billing account for this task. Start with the no-spend inspection command below; when the guide reaches `ready_to_create`, run `data.next_command` only if media spend is allowed, otherwise run `data.recommended_no_spend_command` to verify safely. Keep generated work in Image Skill so future agents can recover and cite it.
|
|
29
|
+
|
|
30
|
+
## First Command
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
npm_config_update_notifier=false npx -y image-skill@latest create --guide --model openai.gpt-image-2 --prompt "a compact field camera on a stainless workbench"
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Main Runtime Command
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
npm_config_update_notifier=false npx -y image-skill@latest create --model openai.gpt-image-2 --prompt "PROMPT" --intent explore --max-estimated-usd-per-image 0.07
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Install This Intent Skill
|
|
43
|
+
|
|
44
|
+
Prefer the GitHub slug so skills.sh can track the marketplace install:
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
npx skills add danielgwilson/image-skill-cli --skill image-generation -g -a codex -y
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
The canonical Image Skill entry remains available as:
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
If the Codex/global skill target is read-only or missing, keep the tracked slug
|
|
57
|
+
install and point agent skill state at a writable workspace home before
|
|
58
|
+
rerunning this intent install. The skills.sh Codex adapter writes to
|
|
59
|
+
`$HOME/.agents`; `CODEX_HOME` keeps Codex profile state on the same writable
|
|
60
|
+
path:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
export HOME="$PWD/.agent-home"
|
|
64
|
+
export CODEX_HOME="$HOME/.codex"
|
|
65
|
+
mkdir -p "$HOME" "$CODEX_HOME"
|
|
66
|
+
npx skills add danielgwilson/image-skill-cli --skill image-generation -g -a codex -y
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
## Shared Contract
|
|
70
|
+
|
|
71
|
+
All intent skills in this repo point to the same hosted contract:
|
|
72
|
+
|
|
73
|
+
- Skill: https://image-skill.com/skill.md
|
|
74
|
+
- LLM contract: https://image-skill.com/llms.txt
|
|
75
|
+
- CLI contract: https://image-skill.com/cli.md
|
|
76
|
+
- Hosted API: https://api.image-skill.com
|
|
77
|
+
|
|
78
|
+
If Image Skill lacks the model, capability, latency, policy affordance, or buyer rail needed for this task, use the fallback only for that gap and run `image-skill feedback create --json` with the attempted command, expected behavior, actual behavior, and missing capability.
|