CAT
/Skills
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Jianying Video Gen

cclank/lanshu-waytovideo
451 installs247 stars
Summary

This automates JianYing's Seedance 2.0 model using Playwright to generate AI videos without touching the web UI. You get four modes: text-to-video, image-to-video, video-to-video style transfer, and extending existing clips. It handles the full workflow,logs in with cookies, fills forms, intercepts thread IDs, polls for completion, and downloads the MP4. Runs 3-5 credits per second depending on whether you pick Fast or standard. The dry-run mode is smart, letting you debug form state with screenshots before burning credits. You'll need Python 3.9+, a cookies.json from your browser session, and patience for video uploads (60-90 seconds for 8MB). Good for batching video generation or integrating JianYing into larger pipelines.

Install to Claude Code

npx -y skills add cclank/lanshu-waytovideo --skill jianying-video-gen --agent claude-code

Installs into .claude/skills of the current project.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Files
SKILL.mdView on GitHub

剪映 AI 视频生成器

通过 Playwright 自动化操作剪映(xyq.jianying.com),使用 Seedance 2.0 模型生成 AI 视频。

前置条件

  1. Python 3.9+ + playwright 已安装
  2. Chromium 已通过 playwright install chromium 安装
  3. cookies.json — 剪映登录凭证(从浏览器导出),放在脚本同目录下
pip install playwright && playwright install chromium

核心脚本

scripts/jianying_worker.py — 主自动化脚本

使用方式

文生视频 (T2V)

python3 scripts/jianying_worker.py \
  --cookies /path/to/cookies.json \
  --output-dir /path/to/output \
  --prompt "赛博朋克风格的长安城,飞行汽车穿梭在霓虹灯笼之间" \
  --duration 10s \
  --model "Seedance 2.0"

图生视频 (I2V)

python3 scripts/jianying_worker.py \
  --cookies /path/to/cookies.json \
  --output-dir /path/to/output \
  --ref-image /path/to/image.png \
  --prompt "将这张图片变成动画,镜头从左向右缓慢平移" \
  --duration 10s \
  --model "Seedance 2.0 Fast"

参考视频生成 (V2V)

python3 scripts/jianying_worker.py \
  --cookies /path/to/cookies.json \
  --output-dir /path/to/output \
  --ref-video /path/to/reference.mp4 \
  --prompt "画风改成宫崎骏风格,其他不变" \
  --duration 10s \
  --model "Seedance 2.0"

向后延伸 (Extend)

python3 scripts/jianying_worker.py \
  --cookies /path/to/cookies.json \
  --output-dir /path/to/output \
  --extend-url 'https://xyq.jianying.com/home?tab_name=integrated-agent&thread_id=YOUR_THREAD_ID&agent_name=pippit_video_part_agent' \
  --prompt "向后延伸,保持人物和镜头语言一致" \
  --duration 5s

Dry-Run 模式(调试用)

python3 scripts/jianying_worker.py --cookies /path/to/cookies.json --prompt "测试" --dry-run

只填写表单不提交,生成 step_*.png 截图供检查。 对 V2V 来说,dry-run 现在还会输出一段 表单状态 JSON,用来确认参考视频缩略图是否已挂上、发送按钮是否已解锁。

参数说明

参数默认值可选值说明
--prompt"一个美女在跳舞"任意文本视频描述
--duration10s5s, 10s, 15s视频时长
--ratio横屏横屏, 竖屏, 方屏画面比例
--modelSeedance 2.0Seedance 2.0, Seedance 2.0 Fast模型选择
--ref-image无本地图片路径I2V 模式的参考图片
--ref-video无本地视频路径V2V 模式的参考视频
--extend-url无thread 链接Extend 模式,基于已有视频继续生成
--cookiescookies.json文件路径剪映登录凭证路径
--output-dir.目录路径输出视频保存目录
--dry-runfalse-只填表不提交

模型与积分

模型积分/秒5s10s15s特点
Seedance 2.0 Fast3153045快速,适合测试
Seedance 2.05255075高质量,正式出片

自动化流程

登录(cookies) → 选模式(沉浸式短片) → 选模型 → [上传参考素材/打开已有 thread 并点向后延伸] → 选时长 → 输入Prompt → 发送
  → 拦截 thread_id → 导航详情页 → 轮询视频 → curl 下载 MP4

提示词编写指南

详细的提示词示例和编写技巧参见 references/prompt-guide.md。

常见问题

Q: cookies 过期了怎么办? 在浏览器登录 xyq.jianying.com,使用 EditThisCookie 等扩展导出 cookies.json。

Q: 下载 403? 脚本使用 thread_id 详情页 + curl 下载,CDN 链接无需 cookie。如仍失败检查网络。

Q: 上传参考视频很慢? 正常,8MB 视频约需 60-90 秒。脚本会自动等待最多 5 分钟。

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Generative Media
First SeenJun 3, 2026
View on GitHub

Recommended

More Generative Media →
stable-diffusion-image-generation

davila7/claude-code-templates

stable diffusion image generation
1.2k
27.7k
stable-diffusion-image-generation

orchestra-research/ai-research-skills

stable diffusion image generation
266
9.2k
elevenlabs-music-generation

agentspace-so/runcomfy-agent-skills

Generate studio-quality songs and instrumentals from text descriptions, 5 seconds to 5 minutes, with section-level structure control.
116.9k
11
elevenlabs-music-generation

runcomfy-com/skills

elevenlabs music generation
82.4k
1
elevenlabs-music-generation

doany-ai/skills

elevenlabs music generation
82.2k
elevenlabs-tts

inferen-sh/skills

39.1k
173