Install
$ agentstack add skill-dolantan548-cmd-douyin-video-to-doc-skill-douyin-video-to-doc-skill ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Douyin Video To Doc
Turn a Douyin share link into a reusable document bundle:
- source video metadata
- local video/audio files
- local transcript files
- one Markdown document per video
Use this skill when the user wants to archive, study, summarize, or structurally organize the full content of a Douyin video.
Output Rule
Create one Markdown file per video under the configured output directory.
Default output directory:
%USERPROFILE%\douyin-video-docs
Override with:
DOUYIN_VIDEO_TO_DOC_OUTPUT_DIR
Keep the global skill itself under:
C:\Users\dolan\.codex\skills\douyin-video-to-doc
On this machine, if you want outputs under your project workspace root, set:
$env:DOUYIN_VIDEO_TO_DOC_OUTPUT_DIR = "D:\dolan_env\temp\project\personal\douyin-video-docs"
Workflow
- Run the helper script to fetch metadata, download media, extract audio, and generate transcript files.
- Inspect the transcript and correct obvious ASR mistakes through context.
- Write a final Markdown document with:
- basic video info
- processing notes
- detailed content writeup
- transcript raw text
- Be explicit when transcript text came from local ASR rather than official captions.
Script
Use:
python C:\Users\dolan\.codex\skills\douyin-video-to-doc\scripts\douyin_video_to_doc.py --input "抖音分享文本或链接"
Optional flags:
python C:\Users\dolan\.codex\skills\douyin-video-to-doc\scripts\douyin_video_to_doc.py --input "..." --model small --output-dir "D:\dolan_env\temp\project\personal\douyin-video-docs"
The script produces:
VIDEO_ID.mp4VIDEO_ID.wavVIDEO_ID..srtVIDEO_ID..txtVIDEO_ID.metadata.jsonYYYY-MM-DD-douyin--.draft.md
Example:
python C:\Users\dolan\.codex\skills\douyin-video-to-doc\scripts\douyin_video_to_doc.py --input "7.99 复制打开抖音,看看【每日AI评论的作品】简单讲讲最近最火的Hermes Agent https://v.douyin.com/j6ySf9z4GKg/"
If you want to pin output to a custom directory for the current shell:
$env:DOUYIN_VIDEO_TO_DOC_OUTPUT_DIR = "D:\dolan_env\temp\project\personal\douyin-video-docs"
python C:\Users\dolan\.codex\skills\douyin-video-to-doc\scripts\douyin_video_to_doc.py --input "https://v.douyin.com/xxxx/"
Writing Standard
The final document should not stop at a framework-level summary.
Expand the video into:
- the speaker's main claim
- argument structure
- implementation details
- examples and mechanisms
- assumptions and caveats
- inferred corrections for obvious ASR errors
If a key proper noun is uncertain, say it is inferred from context.
Verification
Before claiming completion:
- confirm the draft and transcript files exist
- read the transcript text
- make sure the final Markdown includes both transcript and detailed writeup
Notes
- Douyin pages often do not expose reusable official subtitles.
- In that case the transcript is local ASR output, not platform-native captions.
- Prefer the
smallmodel when quality matters more than speed.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: dolantan548-cmd
- Source: dolantan548-cmd/douyin-video-to-doc-skill
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.