evolink-ad-creative-images 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/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # Ad Creative Images
2
+
3
+ Install the Ad Creative Images with GPT Image 2 on EvoLink agent skill.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npx evolink-ad-creative-images -y --path ./my-agent-project
9
+ ```
10
+
11
+ The installer writes the skill to `.agents/skills/ad-creative-images/SKILL.md`.
12
+
13
+ ## Agent Use
14
+
15
+ After installation, use the skill when a user asks for the ad-creative-images EvoLink workflow.
16
+
17
+ ## Links
18
+
19
+ - GitHub: https://github.com/Evolink-AI/evolink-agent-skills/tree/main/ad-creative-images
20
+ - EvoLink: https://evolink.ai?utm_source=npm&utm_medium=skill&utm_campaign=ad-creative-images
package/README.npm.md ADDED
@@ -0,0 +1,20 @@
1
+ # Ad Creative Images
2
+
3
+ Install the Ad Creative Images with GPT Image 2 on EvoLink agent skill.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npx evolink-ad-creative-images -y --path ./my-agent-project
9
+ ```
10
+
11
+ The installer writes the skill to `.agents/skills/ad-creative-images/SKILL.md`.
12
+
13
+ ## Agent Use
14
+
15
+ After installation, use the skill when a user asks for the ad-creative-images EvoLink workflow.
16
+
17
+ ## Links
18
+
19
+ - GitHub: https://github.com/Evolink-AI/evolink-agent-skills/tree/main/ad-creative-images
20
+ - EvoLink: https://evolink.ai?utm_source=npm&utm_medium=skill&utm_campaign=ad-creative-images
package/SKILL.md ADDED
@@ -0,0 +1,81 @@
1
+ ---
2
+ name: ad-creative-images
3
+ displayName: "Ad Creative Images with GPT Image 2 on EvoLink"
4
+ description: >
5
+ Generate paid social ad images, marketing creatives, campaign stills, and visual variants with GPT Image 2 on EvoLink. Use this skill when the user needs static ad assets that can later become Seedance 2 ad videos.
6
+ homepage: "https://evolink.ai?utm_source=skillssh&utm_medium=skill&utm_campaign=ad-creative-images"
7
+ license: MIT
8
+ ---
9
+
10
+ # Ad Creative Images with GPT Image 2 on EvoLink
11
+
12
+ Create static ad creatives that can be used directly in campaigns or handed off as first frames for Seedance 2 videos.
13
+
14
+ ```bash
15
+ npx skills add Evolink-AI/evolink-agent-skills --skill ad-creative-images -g
16
+ ```
17
+
18
+ ## When to Use This Skill
19
+
20
+ Use this skill when the user wants:
21
+
22
+ - paid social ad images
23
+ - marketing campaign visuals
24
+ - launch creative concepts
25
+ - product offer images
26
+ - audience-specific image variants
27
+ - first-frame options for video ads
28
+
29
+ Use `ad-video-generation` when the user already wants motion.
30
+
31
+ ## Prerequisites
32
+
33
+ 1. EvoLink API access or EvoLink MCP configured.
34
+ 2. Offer, audience, product, platform, and visual style.
35
+ 3. Optional product photo, brand guide, landing page, or existing creative.
36
+ 4. Attribution links should use `utm_source=skillssh&utm_medium=skill&utm_campaign=ad-creative-images`.
37
+
38
+ ## Pick the Right Workflow
39
+
40
+ | User intent | Model path | Why |
41
+ |---|---|---|
42
+ | New ad image from product copy | GPT Image 2 | Creates commercial still concepts quickly. |
43
+ | Variant from existing creative | GPT Image 2 image edit | Changes angle, audience, style, or composition. |
44
+ | First frame for video ad | GPT Image 2 -> Seedance 2 | Turns a static ad concept into a video-ready image. |
45
+ | Multi-platform ad pack | GPT Image 2 variants | Supports different ratios and campaign angles. |
46
+
47
+ ## Default Workflow
48
+
49
+ 1. Extract offer, audience, product proof, platform, and style.
50
+ 2. Decide if the task is new generation or edit from an existing creative.
51
+ 3. Write a GPT Image 2 prompt for one primary ad creative.
52
+ 4. Generate the asset.
53
+ 5. Propose three variants and one video handoff.
54
+
55
+ ## Prompting Tips
56
+
57
+ - Keep the visual idea simple enough to understand while scrolling.
58
+ - Reserve exact text, pricing, and disclaimers for design tools unless the user accepts generated text risk.
59
+ - Use platform context: Meta ad, TikTok cover, Instagram story, YouTube thumbnail, marketplace banner.
60
+ - For video handoff, create a strong subject and clear foreground-background separation.
61
+
62
+ ## Next Token Loop
63
+
64
+ After the first creative, offer:
65
+
66
+ - three audience variants
67
+ - three style variants
68
+ - one `image-to-video` handoff
69
+ - one `ad-video-generation` adaptation
70
+
71
+ ## Safety and Privacy
72
+
73
+ Do not create fake endorsements, fake screenshots, misleading before-after claims, or regulated-product claims not provided by the user.
74
+
75
+ ## See Also
76
+
77
+ - `image-edit`
78
+ - `product-to-ad`
79
+ - `ad-video-generation`
80
+ - [EvoLink](https://evolink.ai?utm_source=skillssh&utm_medium=skill&utm_campaign=ad-creative-images)
81
+
package/bin/cli.js ADDED
@@ -0,0 +1,71 @@
1
+ #!/usr/bin/env node
2
+ import fs from "node:fs";
3
+ import path from "node:path";
4
+ import { fileURLToPath } from "node:url";
5
+
6
+ const __dirname = path.dirname(fileURLToPath(import.meta.url));
7
+ const packageRoot = path.resolve(__dirname, "..");
8
+ const skill = "ad-creative-images";
9
+ const packageJson = JSON.parse(fs.readFileSync(path.join(packageRoot, "package.json"), "utf8"));
10
+
11
+ function usage() {
12
+ console.log(`evolink-ad-creative-images v${packageJson.version}
13
+
14
+ Install the ${skill} EvoLink agent skill.
15
+
16
+ Usage:
17
+ npx evolink-ad-creative-images -y --path ./my-agent-project
18
+ npx evolink-ad-creative-images --skill
19
+
20
+ Options:
21
+ -y, --yes Accept install prompts.
22
+ --path <dir> Install into this project directory. Defaults to cwd.
23
+ --skill Print the bundled SKILL.md.
24
+ --no-open Accepted for CI compatibility.
25
+ --version Print package version.
26
+ --help Show this help.
27
+ `);
28
+ }
29
+
30
+ function parseArgs(argv) {
31
+ const args = { target: process.cwd(), yes: false, printSkill: false };
32
+ for (let i = 0; i < argv.length; i += 1) {
33
+ const arg = argv[i];
34
+ if (arg === "-y" || arg === "--yes") args.yes = true;
35
+ else if (arg === "--no-open") continue;
36
+ else if (arg === "--skill") args.printSkill = true;
37
+ else if (arg === "--path") {
38
+ args.target = path.resolve(argv[i + 1] || "");
39
+ i += 1;
40
+ } else if (arg === "--version") {
41
+ console.log(packageJson.version);
42
+ process.exit(0);
43
+ } else if (arg === "--help" || arg === "-h") {
44
+ usage();
45
+ process.exit(0);
46
+ } else {
47
+ console.error(`Unknown argument: ${arg}`);
48
+ usage();
49
+ process.exit(2);
50
+ }
51
+ }
52
+ return args;
53
+ }
54
+
55
+ const args = parseArgs(process.argv.slice(2));
56
+ const skillMarkdown = fs.readFileSync(path.join(packageRoot, "SKILL.md"), "utf8");
57
+
58
+ if (args.printSkill) {
59
+ process.stdout.write(skillMarkdown);
60
+ process.exit(0);
61
+ }
62
+
63
+ const destination = path.join(args.target, ".agents", "skills", skill);
64
+ fs.mkdirSync(destination, { recursive: true });
65
+ fs.writeFileSync(path.join(destination, "SKILL.md"), skillMarkdown);
66
+
67
+ console.log(`INSTALLED_SKILL=${skill}`);
68
+ console.log(`INSTALL_PATH=${destination}`);
69
+ console.log("EVOLINK_KEY_URL=https://evolink.ai?utm_source=npm&utm_medium=skill&utm_campaign=" + skill);
70
+ console.log("ENV_VAR_EXPORT=export EVOLINK_API_KEY=<your_evolink_api_key>");
71
+ console.log("AGENT_NEXT_ACTION=Use the installed SKILL.md whenever the user asks for this EvoLink workflow.");
package/package.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "evolink-ad-creative-images",
3
+ "version": "1.0.0",
4
+ "description": "Install the Ad Creative Images with GPT Image 2 on EvoLink agent skill.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "bin": {
8
+ "evolink-ad-creative-images": "bin/cli.js"
9
+ },
10
+ "files": [
11
+ "SKILL.md",
12
+ "bin",
13
+ "README.md",
14
+ "README.npm.md"
15
+ ],
16
+ "keywords": [
17
+ "evolink",
18
+ "agent-skill",
19
+ "skills",
20
+ "ai",
21
+ "ad-creative-images"
22
+ ],
23
+ "homepage": "https://github.com/Evolink-AI/evolink-agent-skills/tree/main/ad-creative-images",
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/Evolink-AI/evolink-agent-skills.git",
27
+ "directory": "packages/ad-creative-images"
28
+ },
29
+ "bugs": {
30
+ "url": "https://github.com/Evolink-AI/evolink-agent-skills/issues"
31
+ },
32
+ "engines": {
33
+ "node": ">=18"
34
+ },
35
+ "scripts": {
36
+ "check:node": "node --check bin/cli.js",
37
+ "smoke:install": "tmp=$(mktemp -d) && node bin/cli.js -y --path \"$tmp\" --no-open && test -f \"$tmp/.agents/skills/ad-creative-images/SKILL.md\""
38
+ }
39
+ }