evolink-agent-skills 1.0.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/LICENSE +22 -0
- package/README.md +85 -0
- package/README.npm.md +32 -0
- package/ad-creative-images/SKILL.md +81 -0
- package/ad-video-generation/SKILL.md +83 -0
- package/bin/cli.js +140 -0
- package/docs/api-reference.md +20 -0
- package/docs/callbacks.md +5 -0
- package/docs/errors.md +11 -0
- package/docs/publishing-checklist.md +48 -0
- package/docs/quickstart.md +27 -0
- package/docs/real-api-test-plan.md +94 -0
- package/docs/response-schema.md +14 -0
- package/docs/task-lifecycle.md +8 -0
- package/docs/test-report-2026-06-15.md +240 -0
- package/examples/curl/complete-flow.sh +26 -0
- package/image-edit/SKILL.md +80 -0
- package/image-to-video/SKILL.md +81 -0
- package/llms-install.md +30 -0
- package/package.json +57 -0
- package/product-demo-video/SKILL.md +80 -0
- package/product-image-generation/SKILL.md +80 -0
- package/product-to-ad/SKILL.md +80 -0
- package/skills.sh.json +33 -0
- package/ugc-video-ads/SKILL.md +81 -0
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
# Test Report: First-Batch skills.sh Release
|
|
2
|
+
|
|
3
|
+
Date: 2026-06-15
|
|
4
|
+
|
|
5
|
+
## Scope
|
|
6
|
+
|
|
7
|
+
Validated the first 8 demand-led and scene-led skills:
|
|
8
|
+
|
|
9
|
+
- `image-edit`
|
|
10
|
+
- `product-image-generation`
|
|
11
|
+
- `image-to-video`
|
|
12
|
+
- `product-to-ad`
|
|
13
|
+
- `ad-video-generation`
|
|
14
|
+
- `product-demo-video`
|
|
15
|
+
- `ad-creative-images`
|
|
16
|
+
- `ugc-video-ads`
|
|
17
|
+
|
|
18
|
+
## Tests Run
|
|
19
|
+
|
|
20
|
+
### Real API Cost Guard
|
|
21
|
+
|
|
22
|
+
Live API tests are intentionally constrained to the cheapest useful parameters.
|
|
23
|
+
|
|
24
|
+
Default image test:
|
|
25
|
+
|
|
26
|
+
```json
|
|
27
|
+
{
|
|
28
|
+
"model": "gpt-image-2",
|
|
29
|
+
"size": "1:1",
|
|
30
|
+
"resolution": "1K",
|
|
31
|
+
"quality": "low",
|
|
32
|
+
"n": 1
|
|
33
|
+
}
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Explicit video test:
|
|
37
|
+
|
|
38
|
+
```json
|
|
39
|
+
{
|
|
40
|
+
"model": "seedance-2.0-text-to-video",
|
|
41
|
+
"duration": 4,
|
|
42
|
+
"quality": "480p",
|
|
43
|
+
"aspect_ratio": "16:9",
|
|
44
|
+
"generate_audio": false
|
|
45
|
+
}
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
Video tests are not run by default. They require:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
node scripts/real-api-smoke-test.mjs --video
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
### Static Validation
|
|
55
|
+
|
|
56
|
+
Command:
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
node scripts/validate-skills.mjs
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Result:
|
|
63
|
+
|
|
64
|
+
```text
|
|
65
|
+
Validated 8 skills successfully.
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
Coverage:
|
|
69
|
+
|
|
70
|
+
- Skill directory list matches the first-batch plan.
|
|
71
|
+
- Every directory has `SKILL.md`.
|
|
72
|
+
- Frontmatter `name` matches directory slug.
|
|
73
|
+
- Required frontmatter fields exist: `name`, `displayName`, `description`, `homepage`, `license`.
|
|
74
|
+
- `skills.sh.json` uses the official schema URL and groups all 8 skills.
|
|
75
|
+
- Every skill includes required sections: use case, prerequisites, route table, default workflow, prompting tips, next token loop, safety, and see also.
|
|
76
|
+
- UTM format is canonical: `utm_source=skillssh&utm_medium=skill&utm_campaign=<skill-name>`.
|
|
77
|
+
- No first-batch file contains `utm_content`.
|
|
78
|
+
- No first-batch file uses model-word install slugs: `seedance-2` or `gpt-image-2`.
|
|
79
|
+
- Image skills include GPT Image 2 plus video handoff.
|
|
80
|
+
- Video skills include Seedance 2 plus variant/iteration loop.
|
|
81
|
+
- Full-funnel skill includes `GPT Image 2 -> Seedance 2`.
|
|
82
|
+
|
|
83
|
+
### skills CLI Smoke Install
|
|
84
|
+
|
|
85
|
+
Command:
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
node scripts/smoke-install-skills.mjs
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
Result:
|
|
92
|
+
|
|
93
|
+
```text
|
|
94
|
+
Smoke-installed 8 skills successfully.
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
Coverage:
|
|
98
|
+
|
|
99
|
+
- Runs the real `skills` CLI through `npx`.
|
|
100
|
+
- Uses a temporary project directory.
|
|
101
|
+
- Uses a temporary HOME and XDG config directory.
|
|
102
|
+
- Installs all 8 skills from the local repo with `--copy`.
|
|
103
|
+
- Confirms each installed skill has an installed `SKILL.md`.
|
|
104
|
+
- Confirms installed frontmatter contains the matching slug.
|
|
105
|
+
- Confirms `skills-lock.json` is created.
|
|
106
|
+
- Confirms every lockfile entry has `sourceType: local` and a `computedHash`.
|
|
107
|
+
|
|
108
|
+
## Remaining Upload-Time Check
|
|
109
|
+
|
|
110
|
+
After uploading to GitHub, run the remote install test once:
|
|
111
|
+
|
|
112
|
+
```bash
|
|
113
|
+
npx skills add EvoLinkAI/evolink-agent-skills --skill image-edit -g
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
Then repeat for the other 7 skills or install all by explicit slug list.
|
|
117
|
+
|
|
118
|
+
## Remote GitHub Validation
|
|
119
|
+
|
|
120
|
+
Status: completed after repository creation.
|
|
121
|
+
|
|
122
|
+
Repository:
|
|
123
|
+
|
|
124
|
+
```text
|
|
125
|
+
https://github.com/EvoLinkAI/evolink-agent-skills
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
Remote list command:
|
|
129
|
+
|
|
130
|
+
```bash
|
|
131
|
+
npx -y skills add EvoLinkAI/evolink-agent-skills --list --full-depth
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
Result:
|
|
135
|
+
|
|
136
|
+
```text
|
|
137
|
+
Found 8 skills
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
Remote install command:
|
|
141
|
+
|
|
142
|
+
```bash
|
|
143
|
+
npx -y skills add EvoLinkAI/evolink-agent-skills --skill image-edit product-image-generation image-to-video product-to-ad ad-video-generation product-demo-video ad-creative-images ugc-video-ads -y --copy
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
Result:
|
|
147
|
+
|
|
148
|
+
```text
|
|
149
|
+
Installed count: 8
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
Lockfile source validation:
|
|
153
|
+
|
|
154
|
+
```text
|
|
155
|
+
sourceType: github
|
|
156
|
+
source: EvoLinkAI/evolink-agent-skills
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
## Real API Validation
|
|
160
|
+
|
|
161
|
+
Status: passed.
|
|
162
|
+
|
|
163
|
+
Before the passing run, two test harness issues were found and fixed:
|
|
164
|
+
|
|
165
|
+
- The initial default image prompt was too product/marketing-specific for a smoke test and produced a misleading generation error. It was replaced with a simple geometric prompt.
|
|
166
|
+
- The script originally preserved an existing shell `EVOLINK_API_KEY` over `.env`. This caused an old invalid shell key to override the valid `.env` key. `.env` now overrides shell values by default, matching the repository's local test workflow.
|
|
167
|
+
|
|
168
|
+
### GPT Image 2 Minimal Smoke Test
|
|
169
|
+
|
|
170
|
+
Command:
|
|
171
|
+
|
|
172
|
+
```bash
|
|
173
|
+
node scripts/real-api-smoke-test.mjs --image
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
Payload:
|
|
177
|
+
|
|
178
|
+
```json
|
|
179
|
+
{
|
|
180
|
+
"model": "gpt-image-2",
|
|
181
|
+
"prompt": "A plain red square centered on a white background, simple geometric test image, no text",
|
|
182
|
+
"size": "1:1",
|
|
183
|
+
"resolution": "1K",
|
|
184
|
+
"quality": "low",
|
|
185
|
+
"n": 1
|
|
186
|
+
}
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
Result:
|
|
190
|
+
|
|
191
|
+
```text
|
|
192
|
+
Status: completed
|
|
193
|
+
Task: task-unified-1781525538-qbracls9
|
|
194
|
+
Credits reserved: 0.3436
|
|
195
|
+
Credits used: 0.3454
|
|
196
|
+
Output URL: https://files.evolink.ai/000BG2E93TVWN41W8S/images/2026/06/15/2451047b9af44e2489690ec81cfae03b.png
|
|
197
|
+
```
|
|
198
|
+
|
|
199
|
+
Local full report:
|
|
200
|
+
|
|
201
|
+
```text
|
|
202
|
+
test-results/real-api-image-2026-06-15T12-11-44-223Z.md
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
### Seedance 2 Minimal Smoke Test
|
|
206
|
+
|
|
207
|
+
Command:
|
|
208
|
+
|
|
209
|
+
```bash
|
|
210
|
+
node scripts/real-api-smoke-test.mjs --video
|
|
211
|
+
```
|
|
212
|
+
|
|
213
|
+
Payload:
|
|
214
|
+
|
|
215
|
+
```json
|
|
216
|
+
{
|
|
217
|
+
"model": "seedance-2.0-text-to-video",
|
|
218
|
+
"prompt": "A plain red ball slowly rolling from left to right on a white background, simple geometric test video, no text",
|
|
219
|
+
"duration": 4,
|
|
220
|
+
"quality": "480p",
|
|
221
|
+
"aspect_ratio": "16:9",
|
|
222
|
+
"generate_audio": false
|
|
223
|
+
}
|
|
224
|
+
```
|
|
225
|
+
|
|
226
|
+
Result:
|
|
227
|
+
|
|
228
|
+
```text
|
|
229
|
+
Status: completed
|
|
230
|
+
Task: task-unified-1781525566-3uesdxty
|
|
231
|
+
Credits reserved: 20.46
|
|
232
|
+
Credits used: 20.46
|
|
233
|
+
Output URL: https://files.evolink.ai/000BG2E93TVWN41W8S/videos/2026/06/15/851bcca3706a42e992a7e7a2ba048050.mp4
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
Local full report:
|
|
237
|
+
|
|
238
|
+
```text
|
|
239
|
+
test-results/real-api-video-2026-06-15T12-12-12-092Z.md
|
|
240
|
+
```
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
set -euo pipefail
|
|
3
|
+
|
|
4
|
+
: "${EVOLINK_API_KEY:?Set EVOLINK_API_KEY first}"
|
|
5
|
+
api_base="${EVOLINK_API_BASE:-https://api.evolink.ai}"
|
|
6
|
+
|
|
7
|
+
payload='{
|
|
8
|
+
"model": "gpt-image-2",
|
|
9
|
+
"prompt": "A plain red square centered on a white background, simple geometric test image, no text",
|
|
10
|
+
"size": "1:1",
|
|
11
|
+
"resolution": "1K",
|
|
12
|
+
"quality": "low",
|
|
13
|
+
"n": 1
|
|
14
|
+
}'
|
|
15
|
+
|
|
16
|
+
created="$(curl -sS "$api_base/v1/images/generations" \
|
|
17
|
+
-H "Authorization: Bearer $EVOLINK_API_KEY" \
|
|
18
|
+
-H "Content-Type: application/json" \
|
|
19
|
+
-d "$payload")"
|
|
20
|
+
|
|
21
|
+
echo "$created"
|
|
22
|
+
task_id="$(printf '%s' "$created" | node -e 'let s="";process.stdin.on("data",d=>s+=d);process.stdin.on("end",()=>{const j=JSON.parse(s);console.log(j.id||j.task_id||"")})')"
|
|
23
|
+
test -n "$task_id"
|
|
24
|
+
|
|
25
|
+
curl -sS "$api_base/v1/tasks/$task_id" \
|
|
26
|
+
-H "Authorization: Bearer $EVOLINK_API_KEY"
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: image-edit
|
|
3
|
+
displayName: "Image Edit with GPT Image 2 on EvoLink"
|
|
4
|
+
description: >
|
|
5
|
+
Edit images with GPT Image 2 on EvoLink. Use this skill when the user wants to change a product photo, replace a background, retouch a visual, expand a canvas, localize an ad image, or prepare a cleaner source image for Seedance 2 image-to-video generation.
|
|
6
|
+
homepage: "https://evolink.ai?utm_source=skillssh&utm_medium=skill&utm_campaign=image-edit"
|
|
7
|
+
license: MIT
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Image Edit with GPT Image 2 on EvoLink
|
|
11
|
+
|
|
12
|
+
Edit a source image into a cleaner, more useful creative asset, then route strong outputs into video workflows when the user wants motion.
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npx skills add Evolink-AI/evolink-agent-skills --skill image-edit -g
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## When to Use This Skill
|
|
19
|
+
|
|
20
|
+
Use this skill when the user asks to:
|
|
21
|
+
|
|
22
|
+
- change a product image background
|
|
23
|
+
- retouch, clean up, or improve an image
|
|
24
|
+
- expand, crop, or reframe an image
|
|
25
|
+
- create local ad image variants from one asset
|
|
26
|
+
- prepare a still image for an image-to-video workflow
|
|
27
|
+
- keep product identity stable while changing scene, lighting, or composition
|
|
28
|
+
|
|
29
|
+
Do not use it for video generation directly. If the user wants motion after the edit, continue with `image-to-video`.
|
|
30
|
+
|
|
31
|
+
## Prerequisites
|
|
32
|
+
|
|
33
|
+
1. EvoLink API access or EvoLink MCP configured.
|
|
34
|
+
2. One source image when editing an existing asset.
|
|
35
|
+
3. A clear edit goal: background, object change, product cleanup, aspect ratio, or campaign variant.
|
|
36
|
+
4. Attribution links should use `utm_source=skillssh&utm_medium=skill&utm_campaign=image-edit`.
|
|
37
|
+
|
|
38
|
+
## Pick the Right Workflow
|
|
39
|
+
|
|
40
|
+
| User intent | Model path | Why |
|
|
41
|
+
|---|---|---|
|
|
42
|
+
| Replace product background | GPT Image 2 image edit | Preserves product identity while changing scene context. |
|
|
43
|
+
| Clean up product photo | GPT Image 2 image edit | Best for retouching, removing clutter, and improving polish. |
|
|
44
|
+
| Create ad image variants | GPT Image 2 image edit | Fast iteration on style, audience, platform, and offer. |
|
|
45
|
+
| Prepare first frame for video | GPT Image 2 image edit -> Seedance 2 | A cleaner still frame gives Seedance 2 a stronger video starting point. |
|
|
46
|
+
|
|
47
|
+
## Default Workflow
|
|
48
|
+
|
|
49
|
+
1. Identify what must stay unchanged: product shape, logo, color, face, packaging, or layout.
|
|
50
|
+
2. Identify what should change: background, lighting, scene, crop, text-free space, or platform ratio.
|
|
51
|
+
3. Rewrite the edit request into a precise image edit prompt for GPT Image 2.
|
|
52
|
+
4. Generate one clean primary edit and, when useful, two variation directions.
|
|
53
|
+
5. If the user wants motion, route the best image to `image-to-video`.
|
|
54
|
+
|
|
55
|
+
## Prompting Tips
|
|
56
|
+
|
|
57
|
+
- State preservation first: "keep the bottle shape, label, and logo unchanged".
|
|
58
|
+
- Avoid asking the image model to render small marketing text unless the user explicitly needs it.
|
|
59
|
+
- Use campaign context: ecommerce hero image, paid social creative, landing page visual, or app store screenshot.
|
|
60
|
+
- For video handoff, ask for a clean subject, visible product edges, and uncluttered background.
|
|
61
|
+
|
|
62
|
+
## Next Token Loop
|
|
63
|
+
|
|
64
|
+
After a successful edit, offer one next action:
|
|
65
|
+
|
|
66
|
+
- create three ad image variants with `ad-creative-images`
|
|
67
|
+
- generate product catalog assets with `product-image-generation`
|
|
68
|
+
- animate the strongest edit with `image-to-video`
|
|
69
|
+
|
|
70
|
+
## Safety and Privacy
|
|
71
|
+
|
|
72
|
+
Use only images the user supplied or explicitly approved. Do not edit private identities, trademarks, or regulated-product claims in misleading ways. Do not claim an edited image is an untouched original.
|
|
73
|
+
|
|
74
|
+
## See Also
|
|
75
|
+
|
|
76
|
+
- `image-to-video`
|
|
77
|
+
- `product-image-generation`
|
|
78
|
+
- `ad-creative-images`
|
|
79
|
+
- [EvoLink](https://evolink.ai?utm_source=skillssh&utm_medium=skill&utm_campaign=image-edit)
|
|
80
|
+
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: image-to-video
|
|
3
|
+
displayName: "Image-to-Video with Seedance 2 on EvoLink"
|
|
4
|
+
description: >
|
|
5
|
+
Turn still images into short videos with Seedance 2 on EvoLink. Use this skill when the user has a product image, character image, poster, ad image, or edited GPT Image 2 asset and wants motion, camera movement, or a short commercial clip.
|
|
6
|
+
homepage: "https://evolink.ai?utm_source=skillssh&utm_medium=skill&utm_campaign=image-to-video"
|
|
7
|
+
license: MIT
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Image-to-Video with Seedance 2 on EvoLink
|
|
11
|
+
|
|
12
|
+
Animate a still image into a short video. This is the main handoff from GPT Image 2 image assets into Seedance 2 video generation.
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npx skills add Evolink-AI/evolink-agent-skills --skill image-to-video -g
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## When to Use This Skill
|
|
19
|
+
|
|
20
|
+
Use this skill when the user wants to:
|
|
21
|
+
|
|
22
|
+
- animate a product image
|
|
23
|
+
- turn an ad image into a short video
|
|
24
|
+
- make a poster, character, or scene move
|
|
25
|
+
- add camera motion to a still visual
|
|
26
|
+
- create a video from a GPT Image 2 output
|
|
27
|
+
- test multiple motion directions from the same source image
|
|
28
|
+
|
|
29
|
+
Use `product-image-generation` or `image-edit` first if the source image is low quality or not campaign-ready.
|
|
30
|
+
|
|
31
|
+
## Prerequisites
|
|
32
|
+
|
|
33
|
+
1. EvoLink API access or EvoLink MCP configured.
|
|
34
|
+
2. One source image URL or local image available to the agent.
|
|
35
|
+
3. Desired duration, aspect ratio, motion style, and output use case.
|
|
36
|
+
4. Attribution links should use `utm_source=skillssh&utm_medium=skill&utm_campaign=image-to-video`.
|
|
37
|
+
|
|
38
|
+
## Pick the Right Workflow
|
|
39
|
+
|
|
40
|
+
| User intent | Model path | Why |
|
|
41
|
+
|---|---|---|
|
|
42
|
+
| Product reveal from one image | Seedance 2 image-to-video | Best first video path when the image is already strong. |
|
|
43
|
+
| Ad image to paid social clip | Seedance 2 image-to-video | Turns a static creative into motion for Reels, Shorts, or TikTok. |
|
|
44
|
+
| Weak source image | GPT Image 2 edit -> Seedance 2 | Improve the source frame before spending video tokens. |
|
|
45
|
+
| Need multiple motion tests | Seedance 2 variants | Reuse one image with different camera and action prompts. |
|
|
46
|
+
|
|
47
|
+
## Default Workflow
|
|
48
|
+
|
|
49
|
+
1. Inspect the image and identify the subject that must stay stable.
|
|
50
|
+
2. Ask for all missing requirements in one message: duration, platform, aspect ratio, motion, and style.
|
|
51
|
+
3. Write a Seedance 2 prompt focused on motion, camera, scene change, and preservation.
|
|
52
|
+
4. Generate the first clip.
|
|
53
|
+
5. Suggest two iteration directions: motion variant and commercial variant.
|
|
54
|
+
|
|
55
|
+
## Prompting Tips
|
|
56
|
+
|
|
57
|
+
- Lead with motion: camera push-in, orbit, product rotation, hand interaction, walk cycle, light sweep.
|
|
58
|
+
- Do not redescribe every visible object. Focus on what changes over time.
|
|
59
|
+
- Preserve identity explicitly: product label unchanged, face stable, packaging shape unchanged.
|
|
60
|
+
- Use one primary action per clip.
|
|
61
|
+
- Keep text overlays out of the generation prompt unless the user accepts text artifacts.
|
|
62
|
+
|
|
63
|
+
## Next Token Loop
|
|
64
|
+
|
|
65
|
+
After the first clip, offer:
|
|
66
|
+
|
|
67
|
+
- three motion variants from the same image
|
|
68
|
+
- one platform adaptation for TikTok, Reels, or Shorts
|
|
69
|
+
- a product ad version with `ad-video-generation`
|
|
70
|
+
|
|
71
|
+
## Safety and Privacy
|
|
72
|
+
|
|
73
|
+
Do not animate private people, public figures, or brand assets in misleading contexts without user authorization. Do not produce deceptive political, medical, financial, or impersonation content.
|
|
74
|
+
|
|
75
|
+
## See Also
|
|
76
|
+
|
|
77
|
+
- `image-edit`
|
|
78
|
+
- `product-image-generation`
|
|
79
|
+
- `ad-video-generation`
|
|
80
|
+
- [EvoLink](https://evolink.ai?utm_source=skillssh&utm_medium=skill&utm_campaign=image-to-video)
|
|
81
|
+
|
package/llms-install.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# EvoLink Agent Skills Installation
|
|
2
|
+
|
|
3
|
+
Install all creative generation skills:
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npx evolink-agent-skills -y --path ./my-agent-project --all
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
Install one skill:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npx evolink-agent-skills -y --skill image-edit --path ./my-agent-project
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Available skills:
|
|
16
|
+
|
|
17
|
+
- `image-edit`
|
|
18
|
+
- `product-image-generation`
|
|
19
|
+
- `image-to-video`
|
|
20
|
+
- `product-to-ad`
|
|
21
|
+
- `ad-video-generation`
|
|
22
|
+
- `product-demo-video`
|
|
23
|
+
- `ad-creative-images`
|
|
24
|
+
- `ugc-video-ads`
|
|
25
|
+
|
|
26
|
+
Set credentials before live generation:
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
export EVOLINK_API_KEY=<your_evolink_api_key>
|
|
30
|
+
```
|
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "evolink-agent-skills",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Install EvoLink creative generation agent skills for GPT Image 2 and Seedance 2 workflows.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"bin": {
|
|
8
|
+
"evolink-agent-skills": "bin/cli.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"llms-install.md",
|
|
12
|
+
"README.md",
|
|
13
|
+
"README.npm.md",
|
|
14
|
+
"skills.sh.json",
|
|
15
|
+
"bin",
|
|
16
|
+
"docs",
|
|
17
|
+
"examples",
|
|
18
|
+
"image-edit",
|
|
19
|
+
"product-image-generation",
|
|
20
|
+
"image-to-video",
|
|
21
|
+
"product-to-ad",
|
|
22
|
+
"ad-video-generation",
|
|
23
|
+
"product-demo-video",
|
|
24
|
+
"ad-creative-images",
|
|
25
|
+
"ugc-video-ads"
|
|
26
|
+
],
|
|
27
|
+
"keywords": [
|
|
28
|
+
"evolink",
|
|
29
|
+
"agent-skills",
|
|
30
|
+
"gpt-image-2",
|
|
31
|
+
"seedance-2",
|
|
32
|
+
"image-generation",
|
|
33
|
+
"video-generation"
|
|
34
|
+
],
|
|
35
|
+
"homepage": "https://github.com/Evolink-AI/evolink-agent-skills",
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "git+https://github.com/Evolink-AI/evolink-agent-skills.git"
|
|
39
|
+
},
|
|
40
|
+
"bugs": {
|
|
41
|
+
"url": "https://github.com/Evolink-AI/evolink-agent-skills/issues"
|
|
42
|
+
},
|
|
43
|
+
"engines": {
|
|
44
|
+
"node": ">=18"
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"prepare:packages": "node scripts/prepare-npm-packages.mjs",
|
|
48
|
+
"check:node": "node --check bin/cli.js && for f in packages/*/bin/cli.js; do node --check \"$f\"; done",
|
|
49
|
+
"validate": "node scripts/validate-skills.mjs",
|
|
50
|
+
"smoke:install": "node scripts/smoke-install-skills.mjs",
|
|
51
|
+
"smoke:npm-local": "tmp=$(mktemp -d) && node bin/cli.js -y --path \"$tmp\" --all --no-open && test -f \"$tmp/.agents/skills/image-edit/SKILL.md\" && for d in packages/*; do tmp2=$(mktemp -d); node \"$d/bin/cli.js\" -y --path \"$tmp2\" --no-open; done",
|
|
52
|
+
"smoke:api:image": "node scripts/real-api-smoke-test.mjs --image",
|
|
53
|
+
"smoke:api:video": "node scripts/real-api-smoke-test.mjs --video",
|
|
54
|
+
"publish:dry-run": "./scripts/publish-npm.sh --dry-run",
|
|
55
|
+
"publish:all": "./scripts/publish-npm.sh"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: product-demo-video
|
|
3
|
+
displayName: "Product Demo Video with GPT Image 2 and Seedance 2 on EvoLink"
|
|
4
|
+
description: >
|
|
5
|
+
Create ecommerce product demo videos, SaaS demo videos, app promo clips, and tool walkthrough-style videos with GPT Image 2 and Seedance 2 on EvoLink. Use this skill when the user needs to show what a product is, how it works, or why it matters.
|
|
6
|
+
homepage: "https://evolink.ai?utm_source=skillssh&utm_medium=skill&utm_campaign=product-demo-video"
|
|
7
|
+
license: MIT
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Product Demo Video with GPT Image 2 and Seedance 2 on EvoLink
|
|
11
|
+
|
|
12
|
+
Show a product in action with a short, clear video built from product context and optional source images.
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npx skills add Evolink-AI/evolink-agent-skills --skill product-demo-video -g
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## When to Use This Skill
|
|
19
|
+
|
|
20
|
+
Use this skill for:
|
|
21
|
+
|
|
22
|
+
- ecommerce product demos
|
|
23
|
+
- SaaS feature videos
|
|
24
|
+
- app promo clips
|
|
25
|
+
- tool walkthrough visuals
|
|
26
|
+
- product reveal videos
|
|
27
|
+
- before-after product narratives
|
|
28
|
+
|
|
29
|
+
Use `ad-video-generation` if the primary goal is paid acquisition rather than explaining the product.
|
|
30
|
+
|
|
31
|
+
## Prerequisites
|
|
32
|
+
|
|
33
|
+
1. EvoLink API access or EvoLink MCP configured.
|
|
34
|
+
2. Product type, core function, target user, and demo objective.
|
|
35
|
+
3. Optional source image, UI screenshot, product photo, or landing page copy.
|
|
36
|
+
4. Attribution links should use `utm_source=skillssh&utm_medium=skill&utm_campaign=product-demo-video`.
|
|
37
|
+
|
|
38
|
+
## Pick the Right Workflow
|
|
39
|
+
|
|
40
|
+
| User intent | Model path | Why |
|
|
41
|
+
|---|---|---|
|
|
42
|
+
| Product photo to demo clip | Seedance 2 image-to-video | Animates a real or generated product still. |
|
|
43
|
+
| Need clean product first frame | GPT Image 2 -> Seedance 2 | Creates a clearer demo starting point. |
|
|
44
|
+
| SaaS or app visual demo | GPT Image 2 stills -> Seedance 2 | Builds visual scenes before motion generation. |
|
|
45
|
+
| Need multiple feature demos | Seedance 2 variants | Each feature should become one focused short clip. |
|
|
46
|
+
|
|
47
|
+
## Default Workflow
|
|
48
|
+
|
|
49
|
+
1. Identify the single product function or benefit to demonstrate.
|
|
50
|
+
2. Choose the route: source image to video, generated first frame to video, or text-to-video.
|
|
51
|
+
3. Write a prompt that shows product action, context, camera movement, and outcome.
|
|
52
|
+
4. Generate one focused demo clip.
|
|
53
|
+
5. Suggest the next feature, audience, or platform variant.
|
|
54
|
+
|
|
55
|
+
## Prompting Tips
|
|
56
|
+
|
|
57
|
+
- One demo clip should show one core action.
|
|
58
|
+
- Prefer concrete use moments: unboxing, applying, clicking, opening, comparing, scanning, saving time.
|
|
59
|
+
- For software, avoid tiny UI text; show screen structure and user outcome instead.
|
|
60
|
+
- For ecommerce, keep product identity, packaging, and color stable.
|
|
61
|
+
|
|
62
|
+
## Next Token Loop
|
|
63
|
+
|
|
64
|
+
After the first demo, offer:
|
|
65
|
+
|
|
66
|
+
- one demo per product feature
|
|
67
|
+
- one shorter ad adaptation with `ad-video-generation`
|
|
68
|
+
- one image pack with `product-image-generation`
|
|
69
|
+
|
|
70
|
+
## Safety and Privacy
|
|
71
|
+
|
|
72
|
+
Do not fabricate product capabilities or before-after effects. For regulated categories, ask the user to confirm approved claims before generating marketing visuals.
|
|
73
|
+
|
|
74
|
+
## See Also
|
|
75
|
+
|
|
76
|
+
- `product-image-generation`
|
|
77
|
+
- `product-to-ad`
|
|
78
|
+
- `ad-video-generation`
|
|
79
|
+
- [EvoLink](https://evolink.ai?utm_source=skillssh&utm_medium=skill&utm_campaign=product-demo-video)
|
|
80
|
+
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: product-image-generation
|
|
3
|
+
displayName: "Product Image Generation with GPT Image 2 on EvoLink"
|
|
4
|
+
description: >
|
|
5
|
+
Generate ecommerce product images, product ad images, SaaS visuals, and launch creatives with GPT Image 2 on EvoLink. Use this skill when the user needs high-quality still assets that can also become Seedance 2 video first frames.
|
|
6
|
+
homepage: "https://evolink.ai?utm_source=skillssh&utm_medium=skill&utm_campaign=product-image-generation"
|
|
7
|
+
license: MIT
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Product Image Generation with GPT Image 2 on EvoLink
|
|
11
|
+
|
|
12
|
+
Create product visuals that are useful as standalone images and as first-frame assets for Seedance 2 video generation.
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npx skills add Evolink-AI/evolink-agent-skills --skill product-image-generation -g
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## When to Use This Skill
|
|
19
|
+
|
|
20
|
+
Use this skill when the user wants:
|
|
21
|
+
|
|
22
|
+
- ecommerce product photos
|
|
23
|
+
- product lifestyle images
|
|
24
|
+
- product ad images
|
|
25
|
+
- SaaS or app promo visuals
|
|
26
|
+
- launch campaign stills
|
|
27
|
+
- clean first frames for product videos
|
|
28
|
+
|
|
29
|
+
Use `image-edit` instead when the user already has a source image and wants to change it.
|
|
30
|
+
|
|
31
|
+
## Prerequisites
|
|
32
|
+
|
|
33
|
+
1. EvoLink API access or EvoLink MCP configured.
|
|
34
|
+
2. Product context: product name, category, audience, visual style, and intended platform.
|
|
35
|
+
3. Optional source assets: product photo, packaging image, logo, brand colors, landing page copy.
|
|
36
|
+
4. Attribution links should use `utm_source=skillssh&utm_medium=skill&utm_campaign=product-image-generation`.
|
|
37
|
+
|
|
38
|
+
## Pick the Right Workflow
|
|
39
|
+
|
|
40
|
+
| User intent | Model path | Why |
|
|
41
|
+
|---|---|---|
|
|
42
|
+
| Generate product hero image | GPT Image 2 text-to-image or image-guided generation | Best for polished commercial stills. |
|
|
43
|
+
| Create lifestyle product scene | GPT Image 2 | Good for context, hands, use cases, and environment. |
|
|
44
|
+
| Build a video first frame | GPT Image 2 -> Seedance 2 | Gives Seedance 2 a strong still source for motion. |
|
|
45
|
+
| Need multiple ad angles | GPT Image 2 batch variants | Supports testing audience, angle, and offer before video. |
|
|
46
|
+
|
|
47
|
+
## Default Workflow
|
|
48
|
+
|
|
49
|
+
1. Extract product, buyer, benefit, platform, and required aspect ratio.
|
|
50
|
+
2. Decide whether the output is a catalog image, lifestyle image, ad image, or video first frame.
|
|
51
|
+
3. Write a GPT Image 2 prompt with product preservation and commercial composition.
|
|
52
|
+
4. Generate the image or image set.
|
|
53
|
+
5. Offer a video handoff through `image-to-video` or `product-demo-video`.
|
|
54
|
+
|
|
55
|
+
## Prompting Tips
|
|
56
|
+
|
|
57
|
+
- Lead with the product and commercial purpose.
|
|
58
|
+
- Specify the scene role: studio hero, lifestyle use, landing page header, paid social, marketplace image.
|
|
59
|
+
- Keep logos and packaging stable when a source image is available.
|
|
60
|
+
- For video first frames, leave enough clean space around the product for camera movement.
|
|
61
|
+
|
|
62
|
+
## Next Token Loop
|
|
63
|
+
|
|
64
|
+
After image generation, offer:
|
|
65
|
+
|
|
66
|
+
- edit the best image with `image-edit`
|
|
67
|
+
- make paid social variants with `ad-creative-images`
|
|
68
|
+
- turn the best still into video with `image-to-video`
|
|
69
|
+
|
|
70
|
+
## Safety and Privacy
|
|
71
|
+
|
|
72
|
+
Do not invent certifications, reviews, medical claims, or regulated benefits. Keep generated commercial visuals aligned with the user's real product and approved brand constraints.
|
|
73
|
+
|
|
74
|
+
## See Also
|
|
75
|
+
|
|
76
|
+
- `image-edit`
|
|
77
|
+
- `image-to-video`
|
|
78
|
+
- `product-demo-video`
|
|
79
|
+
- [EvoLink](https://evolink.ai?utm_source=skillssh&utm_medium=skill&utm_campaign=product-image-generation)
|
|
80
|
+
|