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 sunshineLixun/video-publish-skill --skill prepare-video-publishgit clone --depth 1 https://github.com/sunshineLixun/video-publish-skillWrote 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/sunshinelixun/video-publish-skill/prepare-video-publish)<a href="https://agentmods.dev/skills/sunshinelixun/video-publish-skill/prepare-video-publish"><img src="https://agentmods.dev/badge/skills/sunshinelixun/video-publish-skill/prepare-video-publish/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/sunshinelixun/video-publish-skill/prepare-video-publish"><img src="https://agentmods.dev/badge/skills/sunshinelixun/video-publish-skill/prepare-video-publish.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to high
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- high Data Exfiltration · line 148 Code or instructions that leak agent conversation context to external services, potentially exposing sensitive user interactions.Fix: Remove any code that sends prompts, responses, or session data externally. Preserve user privacy; never exfiltrate conversation content.
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.00118 | $0.01836 |
| Opus 5 | $0.00059 | $0.00918 |
| Sonnet 5 | $0.00024 | $0.00367 |
| Haiku 4.5 | $0.00012 | $0.00184 |
Grade A, and why
prepare-video-publish 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 12d 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 — 185 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Prepare Video Publish
Complete the entire workflow in the current Codex task. Never start a review website, local HTTP server, background Agent, app-server, or separate Codex task.
Initial Workflow
- Resolve the attached video and/or subtitle to absolute local paths.
- Run
scripts/video-publish.mjs prepareand retain the returnedsessionPathin this task. - Read the complete transcript.
- Read content-contract.md, write
content.jsonbeside the session, and runfinalizeuntil validation passes. - Add any user-supplied style or person images with
references add. - Read cover-workflow.md, update the cover spec when references or user instructions require it, and generate four complete covers with Codex built-in ImageGen.
- Register the generated files with
covers add. - Present the publishing draft and all four local cover images directly in this task, then stop and wait for user feedback or explicit publishing confirmation.
Do not open publishing pages during the initial workflow.
Prepare Input
Replace $SKILL_DIR with the absolute directory containing this SKILL.md.
Video or subtitle:
node "$SKILL_DIR/scripts/video-publish.mjs" prepare --input "/path/input"
Video with a preferred subtitle:
node "$SKILL_DIR/scripts/video-publish.mjs" prepare \
--input "/path/video.mp4" \
--subtitle "/path/subtitle.srt"
Subtitle with a separately supplied video:
node "$SKILL_DIR/scripts/video-publish.mjs" prepare \
--input "/path/subtitle.srt" \
--video "/path/video.mp4"
The command returns sessionPath and transcriptPath as JSON.
Finalize Content
Ground every factual claim in the complete transcript. Never infer visual details from video frames.
node "$SKILL_DIR/scripts/video-publish.mjs" finalize \
--session "/path/session.json" \
--content "/path/content.json"
Conversation Checkpoint
After registering covers, respond in the current task with:
What ships with it
30 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- agents/openai.yaml 304 B
- references/content-contract.md 1.1 KB
- references/cover-workflow.md 3.7 KB
- references/runtime.md 1.4 KB
- scripts/ego-publisher/LICENSE.upstream 1.0 KB
- scripts/ego-publisher/scripts/check-package.mjs 1.4 KB runs code
- scripts/ego-publisher/scripts/config.mjs 5.5 KB runs code
- scripts/ego-publisher/scripts/find-video.mjs 4.6 KB runs code
- scripts/ego-publisher/scripts/lib/config.mjs 8.5 KB runs code
- scripts/ego-publisher/scripts/lib/content-package.mjs 8.7 KB runs code
- scripts/ego-publisher/scripts/lib/media.mjs 4.3 KB runs code
- scripts/ego-publisher/scripts/run-safe-platforms.sh 385 B runs code
- scripts/ego-publisher/scripts/v2/ego/core.mjs 13 KB runs code
- scripts/ego-publisher/scripts/v2/lib/identity.mjs 1.4 KB runs code
- scripts/ego-publisher/scripts/v2/lib/job-lock.mjs 2.4 KB runs code
- scripts/ego-publisher/scripts/v2/lib/job-store.mjs 5.1 KB runs code
- scripts/ego-publisher/scripts/v2/lib/model.mjs 5.0 KB runs code
- scripts/ego-publisher/scripts/v2/lib/platform-lock.mjs 1.9 KB runs code
- scripts/ego-publisher/scripts/v2/lib/result-line.mjs 617 B runs code
- scripts/ego-publisher/scripts/v2/lib/scheduler.mjs 668 B runs code
- scripts/ego-publisher/scripts/v2/platforms/bilibili.mjs 25 KB runs code
- scripts/ego-publisher/scripts/v2/platforms/dispatch.mjs 437 B runs code
- scripts/ego-publisher/scripts/v2/platforms/douyin.mjs 44 KB runs code
- scripts/ego-publisher/scripts/v2/platforms/wechat-channels.mjs 23 KB runs code
- scripts/ego-publisher/scripts/v2/platforms/xiaohongshu.mjs 26 KB runs code
- scripts/ego-publisher/scripts/v2/publisher.mjs 16 KB runs code
- scripts/ego-publisher/scripts/v2/run-platform.mjs 6.0 KB runs code
- scripts/ego-publisher/SKILL.md 30 KB
- scripts/transcribe.py 1.1 KB runs code
- scripts/video-publish.mjs 581 KB runs code
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.
- 12d ago First seen · 185 lines · 118 tokens per session scan A f5285b68ec3a
prepare-video-publish is a skill published in the GitHub repository sunshineLixun/video-publish-skill (22 stars, last pushed 8d ago), licensed Apache-2.0. It adds 118 tokens to every session and 1,836 once invoked, about $0.0006 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
algorithmic-art
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright…
canvas-design
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.
infographic
A guide for creating infographics with only HTML and CSS. Infographics present structured information visually, such as timelines, comparisons, funnels and organisation charts.
slack-gif-creator
Knowledge and utilities for creating animated GIFs optimized for Slack. Provides constraints, validation tools, and animation concepts. Use when users request animated GIFs for Slack like "make me a GIF of X doing Y for Slack.".
展示时刻 Show Time
A skill for presenting completed work or live agent activity in the Agent Desk display. It is intended for results such as HTML visualisations, charts, reports, configuration, and code.
linkedin-magic
LinkedIn post generation and asset bundling for project launches. Depends on project-showcase.