Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add OPPO-Mente-Lab/X-OmniClaw --skill capcut-theme-videogit clone --depth 1 https://github.com/OPPO-Mente-Lab/X-OmniClawWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/oppo-mente-lab/x-omniclaw/capcut-theme-video)<a href="https://agentmods.dev/skills/oppo-mente-lab/x-omniclaw/capcut-theme-video"><img src="https://agentmods.dev/badge/skills/oppo-mente-lab/x-omniclaw/capcut-theme-video/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/oppo-mente-lab/x-omniclaw/capcut-theme-video"><img src="https://agentmods.dev/badge/skills/oppo-mente-lab/x-omniclaw/capcut-theme-video.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00080 | $0.02765 |
| Opus 5 | $0.00040 | $0.01383 |
| Sonnet 5 | $0.00016 | $0.00553 |
| Haiku 4.5 | $0.00008 | $0.00277 |
Grade A, and why
capcut-theme-video scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 132 lines — stays where its author put it; the contents beside it link to each section on GitHub.
剪映(CapCut)一键成片与相册选图
本 Skill 指导你如何获取目标照片、统一存入 A_latest 相册,并在剪映中完成「一键成片」。
何时使用
用户要:打开剪映、一键成片、从相册选多张图(按时间或按主题)、去成片 / 导出视频 等多步 UI 操作时加载本 Skill。
包名:com.lemon.lv
相册名 A_latest(硬规则)
- 本流程使用的相册名有且只有一个:
A_latest(与Pictures/A_latest/及剪映「照片视频」下拉显示一致)。 - 禁止变体:
A_latest_风景、主题_A_latest、latest、带空格等;主题/时间只体现在检索,不要写进相册名。 - 入库前必须先清相册:最终写入时
copy_images_to_album须clear_album_first: true。 - 任意检索前也须先清空
A_latest(路径 A、路径 B 相同):见下「步骤 0」。避免旧副本混入按时间的list_gallery_images结果,也避免按内容选图时相册里仍残留上一轮素材、与本次拷贝混淆。
核心策略:如何获取照片与目标张数 K
在进入剪映前,必须先确定要选哪些照片以及目标张数 K。不论是按时间还是按主题,所有选出的照片都必须先复制到 A_latest 相册中,然后在剪映里统一从 A_latest 相册中选取。
步骤 0:先清空 A_latest(路径 A 与路径 B 必做,先于一切检索)
在任何 list_gallery_images(路径 A)或 memory_search / memory_get(路径 B)之前,先调用 copy_images_to_album:
album_name: "A_latest"clear_album_first: true- 不要传
content_uris/media_ids→ 工具只清空该相册(空相册则删除 0 条)。
原因简述:
- 路径 A:
A_latest里旧副本仍在 MediaStore 时,date_preset等未按相册排除的检索会把它们和真实目标照片混在一起。 - 路径 B:先清空可保证后续写入
A_latest时相册状态干净,不与上一轮成片残留混淆。
可选探针(与直接先清空等价):先 list_gallery_images,album_filter: "A_latest",limit: 1;仅当 count ≥ 1 时再执行上述仅清空调用。
步骤 1:获取目标照片的 content_uris
完成步骤 0 后,按用户需求二选一:
路径 A:基于时间或相册名(非主题语义)
适用场景:用户明确要求「今天拍的照片」「昨天的照片」「最近 24 小时」,或者指定了具体的系统相册名。 操作步骤:
- 调用
list_gallery_images,使用date_preset(today|yesterday|last_24h) 或album_filter(必要时提高limit,最大 100)。 - 从返回的图片列表中提取所有的
content_uri。
路径 B:基于特定主题、事件或图像内容
适用场景:用户要求按内容找图,如「风景」「海边」「猫」「去北京旅行」。 操作步骤:
- 提取主题词:从用户话里抽出检索用词。
- 检索 image-memories(按内容找图时不要用
list_gallery_images的name_filter当主题检索:文件名多为IMG…,不含「风景」「猫」等语义,易得到 0 条):- 调用
memory_search,query填主题词;可适当增大maxResults(建议 ≥ 10)、略降minScore(建议 ≤ 0.4)以多召回。 - 遍历返回的
citations列表,逐条memory_get,提取content_uri或media_id;不要只读一段就停,避免漏图。
- 调用
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 132 lines · 80 tokens per session scan A d3c790593c0b
capcut-theme-video is a skill published in the GitHub repository OPPO-Mente-Lab/X-OmniClaw (261 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 80 tokens to every session and 2,765 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
meta-short-drama
Use this meta-skill instead of answering directly when the current user asks to generate an AI short-drama or 短剧 from a topic. The workflow infers render style, character identity, and shot count (1-10, default 5) from the request (filling in conservative defaults when missing), drafts a strict shot-by-shot shooting…
ai-video-script
A tool that turns a topic into a structured short-video shooting plan. Each shot includes prompts for the image and video, spoken narration, and text shown on screen.
audio-cog
OpenSquilla-compatible audio generation adapter for webpage audio requests. Prefer OpenRouter config/API key in OpenSquilla; preserve the upstream CellCog workflow only as optional ClawHub provenance.
openrouter-video-generator
Generate or declare an OpenRouter video asset for AwesomeWebpageMetaSkill using a parent-leased Provider Settings connection and configured non-secret model/output values.
video-still-animator
Turn a single still image (PNG/JPG) into a short MP4 with a slow Ken-Burns zoom and a silent audio track. Pure ffmpeg wrapper. Designed as the onfailure substitute for AI video-gen steps that get blocked by content moderation: when seedance refuses, this skill emits a valid replacement clip from the already-generated…
nano-banana-pro-openrouter
Deterministic OpenRouter image generation adapter for Nano Banana Pro / Gemini image models. Use as skillexec when a meta-skill needs local image files and structured IMAGEREADY records without spawning an LLM agent.