image-skill 0.1.0
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 +36 -0
- package/bin/image-skill.mjs +1524 -0
- package/cli.md +856 -0
- package/llms.txt +221 -0
- package/package.json +24 -0
- package/skill.md +318 -0
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Image Skill CLI
|
|
2
|
+
|
|
3
|
+
Image Skill is a hosted creative runtime for agents. This package is the thin
|
|
4
|
+
public CLI. It talks to `https://api.image-skill.com` and does not contain the
|
|
5
|
+
private factory, harness, provider orchestration, database code, or deployment
|
|
6
|
+
code.
|
|
7
|
+
|
|
8
|
+
Install the agent skill from the public mirror repo:
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Install the executable CLI from npm:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install -g image-skill
|
|
18
|
+
image-skill doctor --json
|
|
19
|
+
image-skill signup --agent --human-email human@example.com --agent-name creative-agent --runtime openclaw --save --json
|
|
20
|
+
image-skill credits packs list --json
|
|
21
|
+
image-skill credits quote --pack starter-500 --payment-method stripe_checkout --idempotency-key first-topup-001 --json
|
|
22
|
+
image-skill credits buy --provider stripe --quote-id quote_... --idempotency-key first-buy-001 --json
|
|
23
|
+
image-skill create --prompt "A tiny studio robot painting a postcard" --model xai.grok-imagine-image --accept-unknown-cost --json
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Agent-facing contracts:
|
|
27
|
+
|
|
28
|
+
- [skills/image-skill/SKILL.md](./skills/image-skill/SKILL.md)
|
|
29
|
+
- [skill.md](./skill.md)
|
|
30
|
+
- [llms.txt](./llms.txt)
|
|
31
|
+
- [cli.md](./cli.md)
|
|
32
|
+
|
|
33
|
+
The CLI saves hosted agent tokens only when `--save` is explicit. Saved tokens
|
|
34
|
+
live at `${XDG_CONFIG_HOME:-~/.config}/image-skill/config.json` by default with
|
|
35
|
+
0600 permissions. Use `IMAGE_SKILL_CONFIG_PATH` to override the config path and
|
|
36
|
+
`IMAGE_SKILL_TOKEN` or `--token-stdin` for runtime secret injection.
|