image-skill 0.1.34 → 0.1.36
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 +21 -0
- package/bin/image-skill.mjs +227 -36
- package/cli.md +43 -26
- package/commands.json +515 -0
- package/llms.txt +2 -1
- package/package.json +2 -1
- package/skill.md +4 -2
- package/skills/ai-audio-generation/SKILL.md +1 -1
- package/skills/ai-image-generation/SKILL.md +1 -1
- package/skills/ai-video-generation/SKILL.md +1 -1
- package/skills/creative-media/SKILL.md +1 -1
- package/skills/image-edit/SKILL.md +1 -1
- package/skills/image-generation/SKILL.md +1 -1
- package/skills/image-skill/SKILL.md +4 -2
- package/skills/image-skill/references/cli.md +43 -26
- package/skills/image-skill/references/commands.json +515 -0
- package/skills/image-skill/references/llms.txt +2 -1
- package/skills/image-to-3d/SKILL.md +1 -1
|
@@ -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
|
|
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.
|
|
43
43
|
|
|
44
44
|
Minimum success envelope on a create or edit:
|
|
45
45
|
|
|
@@ -133,7 +133,7 @@ image-skill usage quota
|
|
|
133
133
|
|
|
134
134
|
If the runtime supports stdin secret handoff, prefer `--token-stdin` over `--token` for `whoami`, `usage quota`, `create`, and `feedback create`. The guide returns `data.auth_handoff` with copy-safe env and stdin command templates so the token never lands in prompts, logs, or feedback.
|
|
135
135
|
|
|
136
|
-
If the default config home is read-only, set `IMAGE_SKILL_CONFIG_PATH` to a writable path before `signup`. Do not fall back to another tool because the install or default config directory is blocked. `create --guide` detects this and makes `data.next_command` a
|
|
136
|
+
If the default config home is read-only, set `IMAGE_SKILL_CONFIG_PATH` to a writable path before `signup`. Do not fall back to another tool because the install or default config directory is blocked. `create --guide` detects this and makes `data.next_command` a saved-config signup template prefixed with `IMAGE_SKILL_CONFIG_PATH="$PWD/.image-skill/config.json"`; fill `data.next_command_missing_inputs` before running it. The `--show-token --no-save` plus `--token-stdin` route stays available only as structured fallback recovery.
|
|
137
137
|
|
|
138
138
|
Install paths, in order of preference:
|
|
139
139
|
|
|
@@ -195,6 +195,8 @@ image-skill models list --available --modality video --operation video.generate
|
|
|
195
195
|
image-skill models show openai.gpt-image-2
|
|
196
196
|
```
|
|
197
197
|
|
|
198
|
+
`models list` is the compact, summary-first action menu. Use `models show MODEL_ID` for one model's full capability schema, or `models list --details` only when you intentionally need every model's full schema at once.
|
|
199
|
+
|
|
198
200
|
`--available` filters to runnable rows (`status:"available"` and `execution.model_execution_status:"executable"`). Do not treat provider-level `status:"available"` as runnable. `--catalog-only` exposes research rows that are not runnable yet; inspect them, do not pass them to create or edit.
|
|
199
201
|
|
|
200
202
|
Pass model-specific controls through validated JSON, not invented top-level flags:
|
|
@@ -69,6 +69,11 @@ copyable commands, proof URL placeholders, and redaction guarantees.
|
|
|
69
69
|
Use `trust` when deciding whether Image Skill is current and honest enough to
|
|
70
70
|
select. It is not a required setup step before the first image; the canonical
|
|
71
71
|
fresh-agent creative entrypoint remains `image-skill create --guide`.
|
|
72
|
+
Agents may also use modality-first aliases when that is the natural wording:
|
|
73
|
+
`image-skill image create --guide`, `image-skill video create --guide`,
|
|
74
|
+
`image-skill audio create --guide`, and `image-skill 3d create --guide` all
|
|
75
|
+
route into the same `create --guide` flow, with video/audio/3D intent hints
|
|
76
|
+
added only when the agent did not already provide `--intent`.
|
|
72
77
|
|
|
73
78
|
If package metadata, hosted docs, API health, or model availability cannot be
|
|
74
79
|
verified, the command still returns a packet with explicit `unreachable`,
|
|
@@ -129,7 +134,8 @@ should omit it.
|
|
|
129
134
|
Use the no-spend guide first. It is the only required first command for a fresh
|
|
130
135
|
agent. It checks health, executable model availability, auth/quota when a token
|
|
131
136
|
already exists, and payment rails, then returns one primary
|
|
132
|
-
`data.next_command` plus machine-readable `data.
|
|
137
|
+
`data.next_command` plus machine-readable `data.next_command_copy_runnable`,
|
|
138
|
+
`data.next_command_missing_inputs`, `data.next_command_effect`,
|
|
133
139
|
`data.guide_warning`, `data.auth_ready`, and `data.no_spend_evaluation`. Guide
|
|
134
140
|
mode does not create a signup, provider job, dry-run job, payment object,
|
|
135
141
|
credit debit, or asset.
|
|
@@ -138,22 +144,28 @@ credit debit, or asset.
|
|
|
138
144
|
image-skill create --guide --prompt "a compact field camera on a stainless workbench"
|
|
139
145
|
```
|
|
140
146
|
|
|
141
|
-
Read `data.stage` and `data.guide_warning`, run `data.next_command` when
|
|
142
|
-
`data.
|
|
143
|
-
|
|
147
|
+
Read `data.stage` and `data.guide_warning`, run `data.next_command` only when
|
|
148
|
+
`data.next_command_copy_runnable` is `true` and
|
|
149
|
+
`data.guide_warning.next_command_safety` is safe for the current spend policy.
|
|
150
|
+
When `data.next_command_copy_runnable` is `false`, fill
|
|
151
|
+
`data.next_command_missing_inputs` first. Rerun the guide only after auth or
|
|
152
|
+
payment state changes. Do not run
|
|
144
153
|
`doctor`, `models list`, `signup`, `whoami`, `usage quota`, `create --dry-run`,
|
|
145
154
|
or payment commands as a setup checklist before the guide asks for them.
|
|
146
155
|
|
|
147
|
-
- `prompt_required`:
|
|
148
|
-
|
|
149
|
-
|
|
156
|
+
- `prompt_required`: fill `data.next_command_missing_inputs` with the real
|
|
157
|
+
prompt, then rerun `data.next_command`.
|
|
158
|
+
- `auth_required`: fill `data.next_command_missing_inputs` when present, run
|
|
159
|
+
`data.next_command`, then rerun guide once. Hosted signup saves auth to
|
|
160
|
+
config by default. If the runtime intentionally used
|
|
150
161
|
`--no-save --show-token`, store the returned token and use
|
|
151
162
|
`data.auth_handoff.rerun_guide.with_env` or
|
|
152
163
|
`data.auth_handoff.rerun_guide.with_stdin`. In this stage,
|
|
153
164
|
`data.auth_ready.ready` is `false`, and
|
|
154
165
|
`data.guide_warning.next_command_safety` is
|
|
155
166
|
`hosted_signup_no_spend_setup`.
|
|
156
|
-
- `quota_required`:
|
|
167
|
+
- `quota_required`: fill `data.next_command_missing_inputs` when present, then
|
|
168
|
+
run `data.self_fund_next_command` to start the top-up.
|
|
157
169
|
It aliases `data.next_command` and is the first payment command, usually an
|
|
158
170
|
x402 or Stripe quote. If the guide authenticated from env or stdin, prefer
|
|
159
171
|
`data.self_fund_handoff.auth.next_command.with_env` or
|
|
@@ -762,7 +774,7 @@ capability-preserving schema for one model.
|
|
|
762
774
|
```bash
|
|
763
775
|
image-skill models --json
|
|
764
776
|
image-skill models list --json
|
|
765
|
-
image-skill models list --
|
|
777
|
+
image-skill models list --details --json
|
|
766
778
|
image-skill models list --available --operation image.generate --json
|
|
767
779
|
image-skill models list --available --operation image.edit --json
|
|
768
780
|
image-skill models list --available --modality video --operation video.generate --json
|
|
@@ -793,20 +805,23 @@ inspect the recommended create surface without knowing a provider-specific
|
|
|
793
805
|
model id. The list response also returns `summary` with total, returned,
|
|
794
806
|
available, executable, catalog-only, provider split,
|
|
795
807
|
`execution_availability`, first actionable model ids, recommended filter
|
|
796
|
-
commands, and catalog-inclusion flags. Default list output
|
|
797
|
-
catalog-only rows so fresh agents see
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
`
|
|
808
|
+
commands, and catalog-inclusion flags. Default list output is a compact,
|
|
809
|
+
sortable model menu and excludes catalog-only rows so fresh agents see
|
|
810
|
+
executable candidates first. Each row keeps the model id, flat
|
|
811
|
+
`estimated_usd_per_image`, `credits_required`, lightweight `task_tags`, status,
|
|
812
|
+
provider, max output count/resolution, storage, and `show_command`, while
|
|
813
|
+
omitting full parameter schemas. Use `models show MODEL_ID --json` for one
|
|
814
|
+
model's full capability schema, or `models list --details --json` only when you
|
|
815
|
+
intentionally need the full list with capability schemas for compatibility or
|
|
816
|
+
offline analysis. `--summary` is still accepted as a compatibility alias for the
|
|
817
|
+
default compact list. Use `--available` for currently usable executable rows,
|
|
818
|
+
`--modality image|video|audio|3d` for media type, `--operation
|
|
819
|
+
image.generate`, `--operation image.edit`, `--operation video.generate`,
|
|
820
|
+
`--operation audio.generate`, or `--operation 3d.generate` for the task,
|
|
821
|
+
`--provider fal|xai|openai` to narrow by provider, and `--catalog-only` when you
|
|
822
|
+
intentionally want source-backed rows that are inspectable but not runnable yet.
|
|
823
|
+
Provider-level availability is not the same thing as model executability; for
|
|
824
|
+
runnable choices require both `status:"available"` and
|
|
810
825
|
`execution.model_execution_status:"executable"`. If a reachable provider has no
|
|
811
826
|
runnable model for the requested operation, `summary.execution_availability`
|
|
812
827
|
says so directly and includes the fastest `--available --operation ...`
|
|
@@ -894,13 +909,15 @@ image-skill create --guide --prompt "A compact field camera on a stainless workb
|
|
|
894
909
|
```
|
|
895
910
|
|
|
896
911
|
`create --guide` returns `schema: image-skill.create-guide.v1`,
|
|
897
|
-
`stage`, `next_command`, `
|
|
898
|
-
`
|
|
912
|
+
`stage`, `next_command`, `next_command_copy_runnable`,
|
|
913
|
+
`next_command_missing_inputs`, `guide_warning`, `auth_ready`,
|
|
914
|
+
`no_spend_evaluation`, `recommended_no_spend_command`,
|
|
899
915
|
`self_fund_next_command`, `self_fund_handoff`, `escape_hatches`, selected
|
|
900
916
|
executable model and cost, auth/quota/payment blockers, and mutation flags. All
|
|
901
917
|
mutation flags must be false in guide mode: no provider call, hosted create,
|
|
902
918
|
signup, payment object, credit debit, or media write.
|
|
903
|
-
For next-command safety, read `
|
|
919
|
+
For next-command safety, read `next_command_copy_runnable`,
|
|
920
|
+
`next_command_missing_inputs`, and `guide_warning.next_command_safety` before
|
|
904
921
|
acting: `hosted_signup_no_spend_setup` is no-spend auth setup,
|
|
905
922
|
`live_money_payment_action` is top-up/payment work, and
|
|
906
923
|
`live_media_create_credit_debit` is a live create that can call a provider,
|
|
@@ -0,0 +1,515 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "image-skill.public-command-manifest.v1",
|
|
3
|
+
"command_prefix": "image-skill",
|
|
4
|
+
"product_frame": "Image Skill is a hosted thin CLI and public contract for agent-native durable creative media.",
|
|
5
|
+
"skill_url": "https://image-skill.com/skill.md",
|
|
6
|
+
"docs_url": "https://image-skill.com/cli.md",
|
|
7
|
+
"llms_url": "https://image-skill.com/llms.txt",
|
|
8
|
+
"commands": [
|
|
9
|
+
{
|
|
10
|
+
"id": "doctor",
|
|
11
|
+
"docs_anchor": "image-skill-doctor",
|
|
12
|
+
"surface": "client",
|
|
13
|
+
"mutation": false,
|
|
14
|
+
"spend": false
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"id": "trust",
|
|
18
|
+
"docs_anchor": "image-skill-trust",
|
|
19
|
+
"surface": "client",
|
|
20
|
+
"mutation": false,
|
|
21
|
+
"spend": false
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"id": "signup",
|
|
25
|
+
"docs_anchor": "image-skill-signup-agent",
|
|
26
|
+
"surface": "hosted_cli",
|
|
27
|
+
"mutation": true,
|
|
28
|
+
"spend": false
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": "whoami",
|
|
32
|
+
"docs_anchor": "image-skill-whoami",
|
|
33
|
+
"surface": "hosted_cli",
|
|
34
|
+
"mutation": false,
|
|
35
|
+
"spend": false
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"id": "usage",
|
|
39
|
+
"docs_anchor": "image-skill-usage",
|
|
40
|
+
"surface": "hosted_cli",
|
|
41
|
+
"mutation": false,
|
|
42
|
+
"spend": false,
|
|
43
|
+
"subcommands": ["quota"]
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"id": "quota",
|
|
47
|
+
"docs_anchor": "image-skill-quota",
|
|
48
|
+
"surface": "hosted_cli",
|
|
49
|
+
"mutation": false,
|
|
50
|
+
"spend": false
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"id": "credits",
|
|
54
|
+
"docs_anchor": "image-skill-credits",
|
|
55
|
+
"surface": "hosted_cli",
|
|
56
|
+
"mutation": true,
|
|
57
|
+
"spend": true,
|
|
58
|
+
"subcommands": ["methods", "packs list", "quote", "buy", "status"]
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"id": "capabilities",
|
|
62
|
+
"docs_anchor": "image-skill-capabilities",
|
|
63
|
+
"surface": "hosted_cli",
|
|
64
|
+
"mutation": false,
|
|
65
|
+
"spend": false,
|
|
66
|
+
"subcommands": ["list", "show"]
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"id": "models",
|
|
70
|
+
"docs_anchor": "image-skill-models",
|
|
71
|
+
"surface": "hosted_cli",
|
|
72
|
+
"mutation": false,
|
|
73
|
+
"spend": false,
|
|
74
|
+
"subcommands": ["list", "show"]
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"id": "create",
|
|
78
|
+
"docs_anchor": "image-skill-create",
|
|
79
|
+
"surface": "hosted_cli",
|
|
80
|
+
"mutation": true,
|
|
81
|
+
"spend": true
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"id": "upload",
|
|
85
|
+
"docs_anchor": "image-skill-upload",
|
|
86
|
+
"surface": "client",
|
|
87
|
+
"mutation": true,
|
|
88
|
+
"spend": false
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"id": "edit",
|
|
92
|
+
"docs_anchor": "image-skill-edit",
|
|
93
|
+
"surface": "client",
|
|
94
|
+
"mutation": true,
|
|
95
|
+
"spend": true
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"id": "assets",
|
|
99
|
+
"docs_anchor": "image-skill-assets",
|
|
100
|
+
"surface": "hosted_cli",
|
|
101
|
+
"mutation": false,
|
|
102
|
+
"spend": false,
|
|
103
|
+
"subcommands": ["show", "get"]
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"id": "jobs",
|
|
107
|
+
"docs_anchor": "image-skill-jobs",
|
|
108
|
+
"surface": "hosted_cli",
|
|
109
|
+
"mutation": false,
|
|
110
|
+
"spend": false,
|
|
111
|
+
"subcommands": ["show", "wait"]
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"id": "activity",
|
|
115
|
+
"docs_anchor": "image-skill-activity",
|
|
116
|
+
"surface": "hosted_cli",
|
|
117
|
+
"mutation": false,
|
|
118
|
+
"spend": false,
|
|
119
|
+
"subcommands": ["list", "show"]
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"id": "feedback",
|
|
123
|
+
"docs_anchor": "image-skill-feedback",
|
|
124
|
+
"surface": "hosted_cli",
|
|
125
|
+
"mutation": true,
|
|
126
|
+
"spend": false,
|
|
127
|
+
"subcommands": ["create"]
|
|
128
|
+
}
|
|
129
|
+
],
|
|
130
|
+
"modality_aliases": [
|
|
131
|
+
{ "alias": "image", "command": "create", "intent": null },
|
|
132
|
+
{ "alias": "video", "command": "create", "intent": "video" },
|
|
133
|
+
{ "alias": "audio", "command": "create", "intent": "audio" },
|
|
134
|
+
{ "alias": "3d", "command": "create", "intent": "image-to-3d" },
|
|
135
|
+
{ "alias": "image-to-3d", "command": "create", "intent": "image-to-3d" },
|
|
136
|
+
{ "alias": "three-d", "command": "create", "intent": "image-to-3d" }
|
|
137
|
+
],
|
|
138
|
+
"help_entries": [
|
|
139
|
+
{
|
|
140
|
+
"key": "",
|
|
141
|
+
"help": {
|
|
142
|
+
"command": "help",
|
|
143
|
+
"usage": "image-skill <doctor|trust|signup|whoami|usage|quota|credits|capabilities|models|create|upload|edit|assets|jobs|activity|feedback> --json",
|
|
144
|
+
"docs_url": "https://image-skill.com/cli.md",
|
|
145
|
+
"commands": [
|
|
146
|
+
"doctor",
|
|
147
|
+
"trust",
|
|
148
|
+
"signup --agent --agent-contact --agent-name NAME --runtime RUNTIME",
|
|
149
|
+
"whoami",
|
|
150
|
+
"usage quota",
|
|
151
|
+
"quota",
|
|
152
|
+
"credits methods",
|
|
153
|
+
"credits quote",
|
|
154
|
+
"credits packs list",
|
|
155
|
+
"credits buy",
|
|
156
|
+
"credits status",
|
|
157
|
+
"capabilities",
|
|
158
|
+
"capabilities list",
|
|
159
|
+
"capabilities show",
|
|
160
|
+
"models",
|
|
161
|
+
"models list",
|
|
162
|
+
"models show",
|
|
163
|
+
"create --guide",
|
|
164
|
+
"image create --guide",
|
|
165
|
+
"video create --guide",
|
|
166
|
+
"audio create --guide",
|
|
167
|
+
"3d create --guide",
|
|
168
|
+
"create --dry-run",
|
|
169
|
+
"create",
|
|
170
|
+
"image edit",
|
|
171
|
+
"upload",
|
|
172
|
+
"edit",
|
|
173
|
+
"assets show",
|
|
174
|
+
"assets get",
|
|
175
|
+
"jobs show",
|
|
176
|
+
"jobs wait",
|
|
177
|
+
"activity list",
|
|
178
|
+
"activity show",
|
|
179
|
+
"feedback create"
|
|
180
|
+
]
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"key": "doctor",
|
|
185
|
+
"help": {
|
|
186
|
+
"command": "image-skill doctor help",
|
|
187
|
+
"usage": "image-skill doctor --json",
|
|
188
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-doctor",
|
|
189
|
+
"description": "Check hosted API reachability, CLI version, auth state, and health."
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"key": "trust",
|
|
194
|
+
"help": {
|
|
195
|
+
"command": "image-skill trust help",
|
|
196
|
+
"usage": "image-skill trust --json",
|
|
197
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-trust",
|
|
198
|
+
"description": "Return npm provenance, hosted contract hashes, API health, and model availability evidence."
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"key": "signup",
|
|
203
|
+
"help": {
|
|
204
|
+
"command": "image-skill signup help",
|
|
205
|
+
"usage": "image-skill signup --agent --agent-contact AGENT_OR_OPERATOR_INBOX --agent-name NAME --runtime RUNTIME --json",
|
|
206
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-signup-agent",
|
|
207
|
+
"required_flags": [
|
|
208
|
+
"--agent",
|
|
209
|
+
"--agent-contact",
|
|
210
|
+
"--agent-name",
|
|
211
|
+
"--runtime"
|
|
212
|
+
],
|
|
213
|
+
"optional_flags": ["--show-token", "--no-save", "--token-stdin"]
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"key": "whoami",
|
|
218
|
+
"help": {
|
|
219
|
+
"command": "image-skill whoami help",
|
|
220
|
+
"usage": "image-skill whoami --json",
|
|
221
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-whoami"
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"key": "usage",
|
|
226
|
+
"help": {
|
|
227
|
+
"command": "image-skill usage help",
|
|
228
|
+
"usage": "image-skill usage quota --json",
|
|
229
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-usage",
|
|
230
|
+
"subcommands": ["quota"]
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"key": "usage quota",
|
|
235
|
+
"help": {
|
|
236
|
+
"command": "image-skill usage quota help",
|
|
237
|
+
"usage": "image-skill usage quota --json",
|
|
238
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-usage"
|
|
239
|
+
}
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"key": "quota",
|
|
243
|
+
"help": {
|
|
244
|
+
"command": "image-skill quota help",
|
|
245
|
+
"usage": "image-skill quota --json",
|
|
246
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-quota"
|
|
247
|
+
}
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"key": "credits",
|
|
251
|
+
"help": {
|
|
252
|
+
"command": "image-skill credits help",
|
|
253
|
+
"usage": "image-skill credits <methods|packs list|quote|buy|status> --json",
|
|
254
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-credits",
|
|
255
|
+
"subcommands": ["methods", "packs list", "quote", "buy", "status"]
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"key": "credits methods",
|
|
260
|
+
"help": {
|
|
261
|
+
"command": "image-skill credits methods help",
|
|
262
|
+
"usage": "image-skill credits methods",
|
|
263
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-credits"
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"key": "credits packs",
|
|
268
|
+
"help": {
|
|
269
|
+
"command": "image-skill credits packs help",
|
|
270
|
+
"usage": "image-skill credits packs list --json",
|
|
271
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-credits",
|
|
272
|
+
"subcommands": ["list"]
|
|
273
|
+
}
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"key": "credits quote",
|
|
277
|
+
"help": {
|
|
278
|
+
"command": "image-skill credits quote help",
|
|
279
|
+
"usage": "image-skill credits quote --pack PACK_ID --payment-method stripe_x402.exact.usdc --json",
|
|
280
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-credits",
|
|
281
|
+
"required_flags": ["--pack or --credits", "--payment-method"],
|
|
282
|
+
"optional_flags": ["--idempotency-key"]
|
|
283
|
+
}
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"key": "credits buy",
|
|
287
|
+
"help": {
|
|
288
|
+
"command": "image-skill credits buy help",
|
|
289
|
+
"usage": "image-skill credits buy --provider stripe_x402 --quote-id QUOTE_ID --idempotency-key KEY --json",
|
|
290
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-credits",
|
|
291
|
+
"required_flags": ["--provider", "--quote-id", "--idempotency-key"],
|
|
292
|
+
"supported_providers": ["stripe", "stripe_x402"]
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"key": "credits status",
|
|
297
|
+
"help": {
|
|
298
|
+
"command": "image-skill credits status help",
|
|
299
|
+
"usage": "image-skill credits status --payment-attempt-id PAYMENT_ATTEMPT_ID --json",
|
|
300
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-credits",
|
|
301
|
+
"required_flags": ["--payment-attempt-id"]
|
|
302
|
+
}
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"key": "capabilities",
|
|
306
|
+
"help": {
|
|
307
|
+
"command": "image-skill capabilities help",
|
|
308
|
+
"usage": "image-skill capabilities <list|show> --json",
|
|
309
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-capabilities",
|
|
310
|
+
"subcommands": ["list", "show"]
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"key": "capabilities list",
|
|
315
|
+
"help": {
|
|
316
|
+
"command": "image-skill capabilities list help",
|
|
317
|
+
"usage": "image-skill capabilities list --json",
|
|
318
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-capabilities"
|
|
319
|
+
}
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"key": "capabilities show",
|
|
323
|
+
"help": {
|
|
324
|
+
"command": "image-skill capabilities show help",
|
|
325
|
+
"usage": "image-skill capabilities show CAPABILITY_ID --json",
|
|
326
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-capabilities"
|
|
327
|
+
}
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"key": "models",
|
|
331
|
+
"help": {
|
|
332
|
+
"command": "image-skill models help",
|
|
333
|
+
"usage": "image-skill models <list|show> --json",
|
|
334
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-models",
|
|
335
|
+
"subcommands": ["list", "show"]
|
|
336
|
+
}
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"key": "models list",
|
|
340
|
+
"help": {
|
|
341
|
+
"command": "image-skill models list help",
|
|
342
|
+
"usage": "image-skill models list --available --operation image.generate --json",
|
|
343
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-models",
|
|
344
|
+
"optional_flags": [
|
|
345
|
+
"--available",
|
|
346
|
+
"--executable",
|
|
347
|
+
"--catalog-only",
|
|
348
|
+
"--operation",
|
|
349
|
+
"--modality",
|
|
350
|
+
"--provider",
|
|
351
|
+
"--summary",
|
|
352
|
+
"--details"
|
|
353
|
+
]
|
|
354
|
+
}
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"key": "models show",
|
|
358
|
+
"help": {
|
|
359
|
+
"command": "image-skill models show help",
|
|
360
|
+
"usage": "image-skill models show MODEL_ID --json",
|
|
361
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-models"
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"key": "create",
|
|
366
|
+
"help": {
|
|
367
|
+
"command": "image-skill create help",
|
|
368
|
+
"usage": "image-skill create --prompt \"...\" --intent explore --max-estimated-usd-per-image 0.07 --json",
|
|
369
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-create",
|
|
370
|
+
"optional_flags": [
|
|
371
|
+
"--guide",
|
|
372
|
+
"--dry-run",
|
|
373
|
+
"--model",
|
|
374
|
+
"--aspect-ratio",
|
|
375
|
+
"--output-count",
|
|
376
|
+
"--element-frontal",
|
|
377
|
+
"--element-reference",
|
|
378
|
+
"--reference-image",
|
|
379
|
+
"--model-parameters-json",
|
|
380
|
+
"--idempotency-key"
|
|
381
|
+
]
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"key": "upload",
|
|
386
|
+
"help": {
|
|
387
|
+
"command": "image-skill upload help",
|
|
388
|
+
"usage": "image-skill upload PATH_OR_URL --json",
|
|
389
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-upload"
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"key": "edit",
|
|
394
|
+
"help": {
|
|
395
|
+
"command": "image-skill edit help",
|
|
396
|
+
"usage": "image-skill edit --input image_... --prompt \"...\" --json",
|
|
397
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-edit",
|
|
398
|
+
"required_flags": ["--input"],
|
|
399
|
+
"optional_flags": [
|
|
400
|
+
"--dry-run",
|
|
401
|
+
"--prompt",
|
|
402
|
+
"--model",
|
|
403
|
+
"--mask",
|
|
404
|
+
"--element-reference",
|
|
405
|
+
"--element-frontal",
|
|
406
|
+
"--reference-image",
|
|
407
|
+
"--model-parameters-json",
|
|
408
|
+
"--idempotency-key"
|
|
409
|
+
]
|
|
410
|
+
}
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"key": "assets",
|
|
414
|
+
"help": {
|
|
415
|
+
"command": "image-skill assets help",
|
|
416
|
+
"usage": "image-skill assets <show|get> ASSET_ID_OR_URL --json",
|
|
417
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-assets",
|
|
418
|
+
"subcommands": ["show", "get"]
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"key": "assets show",
|
|
423
|
+
"help": {
|
|
424
|
+
"command": "image-skill assets show help",
|
|
425
|
+
"usage": "image-skill assets show ASSET_ID_OR_URL --json",
|
|
426
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-assets"
|
|
427
|
+
}
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"key": "assets get",
|
|
431
|
+
"help": {
|
|
432
|
+
"command": "image-skill assets get help",
|
|
433
|
+
"usage": "image-skill assets get ASSET_ID_OR_URL --output PATH --json",
|
|
434
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-assets"
|
|
435
|
+
}
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"key": "jobs",
|
|
439
|
+
"help": {
|
|
440
|
+
"command": "image-skill jobs help",
|
|
441
|
+
"usage": "image-skill jobs <show|wait> JOB_ID --json",
|
|
442
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-jobs",
|
|
443
|
+
"subcommands": ["show", "wait"]
|
|
444
|
+
}
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"key": "jobs show",
|
|
448
|
+
"help": {
|
|
449
|
+
"command": "image-skill jobs show help",
|
|
450
|
+
"usage": "image-skill jobs show JOB_ID --json",
|
|
451
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-jobs"
|
|
452
|
+
}
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
"key": "jobs wait",
|
|
456
|
+
"help": {
|
|
457
|
+
"command": "image-skill jobs wait help",
|
|
458
|
+
"usage": "image-skill jobs wait JOB_ID --timeout-ms 30000 --json",
|
|
459
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-jobs"
|
|
460
|
+
}
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"key": "activity",
|
|
464
|
+
"help": {
|
|
465
|
+
"command": "image-skill activity help",
|
|
466
|
+
"usage": "image-skill activity <list|show> --json",
|
|
467
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-activity",
|
|
468
|
+
"subcommands": ["list", "show"]
|
|
469
|
+
}
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"key": "activity list",
|
|
473
|
+
"help": {
|
|
474
|
+
"command": "image-skill activity list help",
|
|
475
|
+
"usage": "image-skill activity list --subject JOB_ID --json",
|
|
476
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-activity"
|
|
477
|
+
}
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
"key": "activity show",
|
|
481
|
+
"help": {
|
|
482
|
+
"command": "image-skill activity show help",
|
|
483
|
+
"usage": "image-skill activity show REFERENCE --json",
|
|
484
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-activity"
|
|
485
|
+
}
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"key": "feedback",
|
|
489
|
+
"help": {
|
|
490
|
+
"command": "image-skill feedback help",
|
|
491
|
+
"usage": "image-skill feedback create --title TITLE --body BODY --json",
|
|
492
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-feedback",
|
|
493
|
+
"subcommands": ["create"]
|
|
494
|
+
}
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"key": "feedback create",
|
|
498
|
+
"help": {
|
|
499
|
+
"command": "image-skill feedback create help",
|
|
500
|
+
"usage": "image-skill feedback create --title TITLE --body BODY --type user_feedback --json",
|
|
501
|
+
"docs_url": "https://image-skill.com/cli.md#image-skill-feedback",
|
|
502
|
+
"optional_flags": [
|
|
503
|
+
"--title",
|
|
504
|
+
"--body",
|
|
505
|
+
"--type",
|
|
506
|
+
"--severity",
|
|
507
|
+
"--confidence",
|
|
508
|
+
"--expected",
|
|
509
|
+
"--actual",
|
|
510
|
+
"--command"
|
|
511
|
+
]
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
]
|
|
515
|
+
}
|