Skip to content

Commit ed88370

Browse files
author
z
committed
feat: add video prompting skill, make image/video skills model-agnostic
1 parent a642404 commit ed88370

6 files changed

Lines changed: 439 additions & 255 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@
2525
"name": "prompt-images",
2626
"source": "skills/prompt-images",
2727
"description": "Prompting techniques for AI image generation and editing models on Replicate."
28+
},
29+
{
30+
"name": "prompt-videos",
31+
"source": "skills/prompt-videos",
32+
"description": "Prompting techniques for AI video generation models on Replicate."
2833
}
2934
]
3035
}

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,4 @@ jobs:
3737
npx clawhub@latest publish skills/compare-models --slug replicate-compare-models --name "Replicate: Compare Models"
3838
npx clawhub@latest publish skills/run-models --slug replicate-run-models --name "Replicate: Run Models"
3939
npx clawhub@latest publish skills/prompt-images --slug replicate-prompt-images --name "Replicate: Prompt Images"
40+
npx clawhub@latest publish skills/prompt-videos --slug replicate-prompt-videos --name "Replicate: Prompt Videos"

AGENTS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ This repo publishes Agent Skills for Replicate: focused guides for finding, comp
1010
- `skills/compare-models/SKILL.md` — evaluating models by cost, speed, quality, and capabilities.
1111
- `skills/run-models/SKILL.md` — predictions, polling, webhooks, streaming, file I/O, concurrency, multi-model workflows.
1212
- `skills/prompt-images/SKILL.md` — prompting techniques for image generation and editing models.
13+
- `skills/prompt-videos/SKILL.md` — prompting techniques for video generation models.
1314
- `script/lint` — validates the skills.
1415
- `.mcp.json` — points to the remote MCP server.
1516
- `.claude-plugin/` — marketplace metadata for Claude Code.
@@ -28,4 +29,5 @@ script/lint skills/find-models
2829
script/lint skills/compare-models
2930
script/lint skills/run-models
3031
script/lint skills/prompt-images
32+
script/lint skills/prompt-videos
3133
```

skills/compare-models/SKILL.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ description: Compare Replicate models by cost, speed, quality, and capabilities.
3939
- Community models: may cold-boot, require version pinning, maintained by the author.
4040
- If a community model meets your needs and an official model doesn't, consider creating a deployment for consistent uptime.
4141

42-
## Image model comparisons
42+
## Prompting guidance
4343

44-
For image generation and editing model comparisons, including task-specific model selection tables and cost/speed reference data, see the [prompt-images](../prompt-images/SKILL.md) skill.
44+
For prompting techniques and task-specific guidance:
45+
46+
- Image generation and editing: see the [prompt-images](../prompt-images/SKILL.md) skill.
47+
- Video generation: see the [prompt-videos](../prompt-videos/SKILL.md) skill.

0 commit comments

Comments
 (0)