image-skill 0.1.44 → 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 +8 -0
- package/README.md +9 -9
- package/SKILL.md +2 -2
- package/bin/image-skill.mjs +1 -1
- package/cli.md +1 -1
- package/package.json +1 -1
- package/skill.md +2 -2
- package/skills/agent-image-generation/SKILL.md +3 -3
- 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 +2 -2
- package/skills/image-skill/references/cli.md +1 -1
- package/skills/image-to-3d/SKILL.md +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ 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
|
+
|
|
7
15
|
## 0.1.44 - 2026-06-12
|
|
8
16
|
|
|
9
17
|
- Release (freshness): republish the already-synced public CLI mirror content
|
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
|
@@ -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
|
package/bin/image-skill.mjs
CHANGED
|
@@ -15,7 +15,7 @@ import { Readable } from "node:stream";
|
|
|
15
15
|
import { pipeline } from "node:stream/promises";
|
|
16
16
|
import os from "node:os";
|
|
17
17
|
|
|
18
|
-
const VERSION = "0.1.
|
|
18
|
+
const VERSION = "0.1.45";
|
|
19
19
|
const PACKAGE_NAME = "image-skill";
|
|
20
20
|
const DEFAULT_API_BASE_URL = "https://api.image-skill.com";
|
|
21
21
|
const DEFAULT_DOCS_BASE_URL = "https://image-skill.com";
|
package/cli.md
CHANGED
|
@@ -316,7 +316,7 @@ same writable path:
|
|
|
316
316
|
export HOME="$PWD/.agent-home"
|
|
317
317
|
export CODEX_HOME="$HOME/.codex"
|
|
318
318
|
mkdir -p "$HOME" "$CODEX_HOME"
|
|
319
|
-
npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y
|
|
319
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-skill -g -a codex -y
|
|
320
320
|
```
|
|
321
321
|
|
|
322
322
|
Hosted signup saves auth state to the public CLI config by default. If the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "image-skill",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.45",
|
|
4
4
|
"description": "Zero-setup durable creative-media CLI for agents (image + video + audio + 3D): guide-first creation, model and cost inspection, owned URLs, JSON recovery, payments, reusable assets, and feedback.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
package/skill.md
CHANGED
|
@@ -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
|
|
@@ -44,13 +44,13 @@ npm_config_update_notifier=false npx -y image-skill@latest create --model openai
|
|
|
44
44
|
Prefer the GitHub slug so skills.sh can track the marketplace install:
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
-
npx skills add danielgwilson/image-skill-cli --skill agent-image-generation -g -a codex -y
|
|
47
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill agent-image-generation -g -a codex -y
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
The canonical Image Skill entry remains available as:
|
|
51
51
|
|
|
52
52
|
```bash
|
|
53
|
-
npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y
|
|
53
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-skill -g -a codex -y
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
If the Codex/global skill target is read-only or missing, keep the tracked slug
|
|
@@ -63,7 +63,7 @@ path:
|
|
|
63
63
|
export HOME="$PWD/.agent-home"
|
|
64
64
|
export CODEX_HOME="$HOME/.codex"
|
|
65
65
|
mkdir -p "$HOME" "$CODEX_HOME"
|
|
66
|
-
npx skills add danielgwilson/image-skill-cli --skill agent-image-generation -g -a codex -y
|
|
66
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill agent-image-generation -g -a codex -y
|
|
67
67
|
```
|
|
68
68
|
|
|
69
69
|
## Shared Contract
|
|
@@ -44,13 +44,13 @@ npm_config_update_notifier=false npx -y image-skill@latest create --model fal.st
|
|
|
44
44
|
Prefer the GitHub slug so skills.sh can track the marketplace install:
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
-
npx skills add danielgwilson/image-skill-cli --skill ai-audio-generation -g -a codex -y
|
|
47
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill ai-audio-generation -g -a codex -y
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
The canonical Image Skill entry remains available as:
|
|
51
51
|
|
|
52
52
|
```bash
|
|
53
|
-
npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y
|
|
53
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-skill -g -a codex -y
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
If the Codex/global skill target is read-only or missing, keep the tracked slug
|
|
@@ -63,7 +63,7 @@ path:
|
|
|
63
63
|
export HOME="$PWD/.agent-home"
|
|
64
64
|
export CODEX_HOME="$HOME/.codex"
|
|
65
65
|
mkdir -p "$HOME" "$CODEX_HOME"
|
|
66
|
-
npx skills add danielgwilson/image-skill-cli --skill ai-audio-generation -g -a codex -y
|
|
66
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill ai-audio-generation -g -a codex -y
|
|
67
67
|
```
|
|
68
68
|
|
|
69
69
|
## Shared Contract
|
|
@@ -44,13 +44,13 @@ npm_config_update_notifier=false npx -y image-skill@latest create --model openai
|
|
|
44
44
|
Prefer the GitHub slug so skills.sh can track the marketplace install:
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
-
npx skills add danielgwilson/image-skill-cli --skill ai-image-generation -g -a codex -y
|
|
47
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill ai-image-generation -g -a codex -y
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
The canonical Image Skill entry remains available as:
|
|
51
51
|
|
|
52
52
|
```bash
|
|
53
|
-
npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y
|
|
53
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-skill -g -a codex -y
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
If the Codex/global skill target is read-only or missing, keep the tracked slug
|
|
@@ -63,7 +63,7 @@ path:
|
|
|
63
63
|
export HOME="$PWD/.agent-home"
|
|
64
64
|
export CODEX_HOME="$HOME/.codex"
|
|
65
65
|
mkdir -p "$HOME" "$CODEX_HOME"
|
|
66
|
-
npx skills add danielgwilson/image-skill-cli --skill ai-image-generation -g -a codex -y
|
|
66
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill ai-image-generation -g -a codex -y
|
|
67
67
|
```
|
|
68
68
|
|
|
69
69
|
## Shared Contract
|
|
@@ -44,13 +44,13 @@ npm_config_update_notifier=false npx -y image-skill@latest create --model fal.lt
|
|
|
44
44
|
Prefer the GitHub slug so skills.sh can track the marketplace install:
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
-
npx skills add danielgwilson/image-skill-cli --skill ai-video-generation -g -a codex -y
|
|
47
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill ai-video-generation -g -a codex -y
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
The canonical Image Skill entry remains available as:
|
|
51
51
|
|
|
52
52
|
```bash
|
|
53
|
-
npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y
|
|
53
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-skill -g -a codex -y
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
If the Codex/global skill target is read-only or missing, keep the tracked slug
|
|
@@ -63,7 +63,7 @@ path:
|
|
|
63
63
|
export HOME="$PWD/.agent-home"
|
|
64
64
|
export CODEX_HOME="$HOME/.codex"
|
|
65
65
|
mkdir -p "$HOME" "$CODEX_HOME"
|
|
66
|
-
npx skills add danielgwilson/image-skill-cli --skill ai-video-generation -g -a codex -y
|
|
66
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill ai-video-generation -g -a codex -y
|
|
67
67
|
```
|
|
68
68
|
|
|
69
69
|
## Shared Contract
|
|
@@ -44,13 +44,13 @@ npm_config_update_notifier=false npx -y image-skill@latest models list --availab
|
|
|
44
44
|
Prefer the GitHub slug so skills.sh can track the marketplace install:
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
-
npx skills add danielgwilson/image-skill-cli --skill creative-media -g -a codex -y
|
|
47
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill creative-media -g -a codex -y
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
The canonical Image Skill entry remains available as:
|
|
51
51
|
|
|
52
52
|
```bash
|
|
53
|
-
npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y
|
|
53
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-skill -g -a codex -y
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
If the Codex/global skill target is read-only or missing, keep the tracked slug
|
|
@@ -63,7 +63,7 @@ path:
|
|
|
63
63
|
export HOME="$PWD/.agent-home"
|
|
64
64
|
export CODEX_HOME="$HOME/.codex"
|
|
65
65
|
mkdir -p "$HOME" "$CODEX_HOME"
|
|
66
|
-
npx skills add danielgwilson/image-skill-cli --skill creative-media -g -a codex -y
|
|
66
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill creative-media -g -a codex -y
|
|
67
67
|
```
|
|
68
68
|
|
|
69
69
|
## Shared Contract
|
|
@@ -44,13 +44,13 @@ npm_config_update_notifier=false npx -y image-skill@latest edit --input image_..
|
|
|
44
44
|
Prefer the GitHub slug so skills.sh can track the marketplace install:
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
-
npx skills add danielgwilson/image-skill-cli --skill image-edit -g -a codex -y
|
|
47
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-edit -g -a codex -y
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
The canonical Image Skill entry remains available as:
|
|
51
51
|
|
|
52
52
|
```bash
|
|
53
|
-
npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y
|
|
53
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-skill -g -a codex -y
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
If the Codex/global skill target is read-only or missing, keep the tracked slug
|
|
@@ -63,7 +63,7 @@ path:
|
|
|
63
63
|
export HOME="$PWD/.agent-home"
|
|
64
64
|
export CODEX_HOME="$HOME/.codex"
|
|
65
65
|
mkdir -p "$HOME" "$CODEX_HOME"
|
|
66
|
-
npx skills add danielgwilson/image-skill-cli --skill image-edit -g -a codex -y
|
|
66
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-edit -g -a codex -y
|
|
67
67
|
```
|
|
68
68
|
|
|
69
69
|
## Shared Contract
|
|
@@ -44,13 +44,13 @@ npm_config_update_notifier=false npx -y image-skill@latest create --model openai
|
|
|
44
44
|
Prefer the GitHub slug so skills.sh can track the marketplace install:
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
-
npx skills add danielgwilson/image-skill-cli --skill image-generation -g -a codex -y
|
|
47
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-generation -g -a codex -y
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
The canonical Image Skill entry remains available as:
|
|
51
51
|
|
|
52
52
|
```bash
|
|
53
|
-
npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y
|
|
53
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-skill -g -a codex -y
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
If the Codex/global skill target is read-only or missing, keep the tracked slug
|
|
@@ -63,7 +63,7 @@ path:
|
|
|
63
63
|
export HOME="$PWD/.agent-home"
|
|
64
64
|
export CODEX_HOME="$HOME/.codex"
|
|
65
65
|
mkdir -p "$HOME" "$CODEX_HOME"
|
|
66
|
-
npx skills add danielgwilson/image-skill-cli --skill image-generation -g -a codex -y
|
|
66
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-generation -g -a codex -y
|
|
67
67
|
```
|
|
68
68
|
|
|
69
69
|
## Shared Contract
|
|
@@ -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
|
|
@@ -316,7 +316,7 @@ same writable path:
|
|
|
316
316
|
export HOME="$PWD/.agent-home"
|
|
317
317
|
export CODEX_HOME="$HOME/.codex"
|
|
318
318
|
mkdir -p "$HOME" "$CODEX_HOME"
|
|
319
|
-
npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y
|
|
319
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-skill -g -a codex -y
|
|
320
320
|
```
|
|
321
321
|
|
|
322
322
|
Hosted signup saves auth state to the public CLI config by default. If the
|
|
@@ -44,13 +44,13 @@ npm_config_update_notifier=false npx -y image-skill@latest edit --input image_..
|
|
|
44
44
|
Prefer the GitHub slug so skills.sh can track the marketplace install:
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
-
npx skills add danielgwilson/image-skill-cli --skill image-to-3d -g -a codex -y
|
|
47
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-to-3d -g -a codex -y
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
The canonical Image Skill entry remains available as:
|
|
51
51
|
|
|
52
52
|
```bash
|
|
53
|
-
npx skills add danielgwilson/image-skill-cli --skill image-skill -g -a codex -y
|
|
53
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-skill -g -a codex -y
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
If the Codex/global skill target is read-only or missing, keep the tracked slug
|
|
@@ -63,7 +63,7 @@ path:
|
|
|
63
63
|
export HOME="$PWD/.agent-home"
|
|
64
64
|
export CODEX_HOME="$HOME/.codex"
|
|
65
65
|
mkdir -p "$HOME" "$CODEX_HOME"
|
|
66
|
-
npx skills add danielgwilson/image-skill-cli --skill image-to-3d -g -a codex -y
|
|
66
|
+
npx skills add danielgwilson/image-skill-cli --full-depth --skill image-to-3d -g -a codex -y
|
|
67
67
|
```
|
|
68
68
|
|
|
69
69
|
## Shared Contract
|