evolink-ugc-video-ads 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
+ # Ugc Video Ads
2
+
3
+ Install the UGC Video Ads with Seedance 2 on EvoLink agent skill.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npx evolink-ugc-video-ads -y --path ./my-agent-project
9
+ ```
10
+
11
+ The installer writes the skill to `.agents/skills/ugc-video-ads/SKILL.md`.
12
+
13
+ ## Agent Use
14
+
15
+ After installation, use the skill when a user asks for the ugc-video-ads EvoLink workflow.
16
+
17
+ ## Links
18
+
19
+ - GitHub: https://github.com/Evolink-AI/evolink-agent-skills/tree/main/ugc-video-ads
20
+ - EvoLink: https://evolink.ai?utm_source=npm&utm_medium=skill&utm_campaign=ugc-video-ads
package/README.npm.md ADDED
@@ -0,0 +1,20 @@
1
+ # Ugc Video Ads
2
+
3
+ Install the UGC Video Ads with Seedance 2 on EvoLink agent skill.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npx evolink-ugc-video-ads -y --path ./my-agent-project
9
+ ```
10
+
11
+ The installer writes the skill to `.agents/skills/ugc-video-ads/SKILL.md`.
12
+
13
+ ## Agent Use
14
+
15
+ After installation, use the skill when a user asks for the ugc-video-ads EvoLink workflow.
16
+
17
+ ## Links
18
+
19
+ - GitHub: https://github.com/Evolink-AI/evolink-agent-skills/tree/main/ugc-video-ads
20
+ - EvoLink: https://evolink.ai?utm_source=npm&utm_medium=skill&utm_campaign=ugc-video-ads
package/SKILL.md ADDED
@@ -0,0 +1,81 @@
1
+ ---
2
+ name: ugc-video-ads
3
+ displayName: "UGC Video Ads with Seedance 2 on EvoLink"
4
+ description: >
5
+ Generate UGC-style video ad concepts with Seedance 2 on EvoLink. Use this skill for spokesperson-style hooks, testimonial-style ads, creator-style product demos, social proof concepts, and short-form video variants for TikTok, Reels, and Shorts.
6
+ homepage: "https://evolink.ai?utm_source=skillssh&utm_medium=skill&utm_campaign=ugc-video-ads"
7
+ license: MIT
8
+ ---
9
+
10
+ # UGC Video Ads with Seedance 2 on EvoLink
11
+
12
+ Create creator-style ad video concepts optimized for hooks, spoken-style storytelling, and repeated variation.
13
+
14
+ ```bash
15
+ npx skills add Evolink-AI/evolink-agent-skills --skill ugc-video-ads -g
16
+ ```
17
+
18
+ ## When to Use This Skill
19
+
20
+ Use this skill when the user wants:
21
+
22
+ - UGC-style product ads
23
+ - testimonial-style video concepts
24
+ - creator-style hooks
25
+ - TikTok, Reels, or Shorts ad variants
26
+ - spokesperson-style product explanation
27
+ - multiple scripts or hooks for the same product
28
+
29
+ Use `ad-video-generation` for polished commercial ads and `product-demo-video` for product explanation videos.
30
+
31
+ ## Prerequisites
32
+
33
+ 1. EvoLink API access or EvoLink MCP configured.
34
+ 2. Product, audience, offer, platform, tone, and allowed claims.
35
+ 3. Optional source image, creator reference style, or script.
36
+ 4. Attribution links should use `utm_source=skillssh&utm_medium=skill&utm_campaign=ugc-video-ads`.
37
+
38
+ ## Pick the Right Workflow
39
+
40
+ | User intent | Model path | Why |
41
+ |---|---|---|
42
+ | Hook-driven UGC ad | Seedance 2 text-to-video | Good for short creator-style concept clips. |
43
+ | Product image plus UGC scene | Seedance 2 image-to-video | Preserves product while adding creator-style motion. |
44
+ | Need a cleaner product shot first | GPT Image 2 -> Seedance 2 | Improves product presence before video generation. |
45
+ | Need many hooks | Seedance 2 variants | UGC performance depends on repeated hook testing. |
46
+
47
+ ## Default Workflow
48
+
49
+ 1. Ask for all missing campaign inputs in one message: product, audience, hook angle, platform, duration, and claim limits.
50
+ 2. Create three hook options before generation.
51
+ 3. Turn the selected hook into a Seedance 2 prompt with scene, creator energy, motion, and product moment.
52
+ 4. Generate the first UGC-style video.
53
+ 5. Suggest hook, tone, and audience variants.
54
+
55
+ ## Prompting Tips
56
+
57
+ - Use one human moment: opening the product, reacting to result, showing a use case, or explaining one pain point.
58
+ - Keep claims grounded in user-provided product facts.
59
+ - Avoid requesting a real celebrity, influencer, or exact private person likeness.
60
+ - Separate exact spoken script from visual prompt if the generation path does not guarantee exact speech.
61
+
62
+ ## Next Token Loop
63
+
64
+ After the first clip, offer:
65
+
66
+ - five hook variants
67
+ - three tone variants: skeptical, excited, practical
68
+ - one polished ad version with `ad-video-generation`
69
+ - one still image pack with `ad-creative-images`
70
+
71
+ ## Safety and Privacy
72
+
73
+ Do not create fake testimonials that imply a real person used the product. Do not impersonate known creators or use unauthorized likenesses. Flag unsupported performance claims before generation.
74
+
75
+ ## See Also
76
+
77
+ - `ad-video-generation`
78
+ - `product-to-ad`
79
+ - `ad-creative-images`
80
+ - [EvoLink](https://evolink.ai?utm_source=skillssh&utm_medium=skill&utm_campaign=ugc-video-ads)
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 = "ugc-video-ads";
9
+ const packageJson = JSON.parse(fs.readFileSync(path.join(packageRoot, "package.json"), "utf8"));
10
+
11
+ function usage() {
12
+ console.log(`evolink-ugc-video-ads v${packageJson.version}
13
+
14
+ Install the ${skill} EvoLink agent skill.
15
+
16
+ Usage:
17
+ npx evolink-ugc-video-ads -y --path ./my-agent-project
18
+ npx evolink-ugc-video-ads --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-ugc-video-ads",
3
+ "version": "1.0.0",
4
+ "description": "Install the UGC Video Ads with Seedance 2 on EvoLink agent skill.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "bin": {
8
+ "evolink-ugc-video-ads": "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
+ "ugc-video-ads"
22
+ ],
23
+ "homepage": "https://github.com/Evolink-AI/evolink-agent-skills/tree/main/ugc-video-ads",
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/Evolink-AI/evolink-agent-skills.git",
27
+ "directory": "packages/ugc-video-ads"
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/ugc-video-ads/SKILL.md\""
38
+ }
39
+ }