skills/douyin-cli/SKILL.md
抖音 CLI 工具。搜索视频、查看详情和评论、获取用户信息和作品列表、导出数据。当用户提到抖音、Douyin、短视频搜索时使用此 Skill。
npx skillsauth add 0xranx/agent-kit douyin-cliInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
通过 agent-browser 实现抖音 Web 数据提取,无需官方 API Key。
npm install -g agent-browser && agent-browser install--auto-connect 模式python douyin.py login(启动独立浏览器登录)验证登录状态:
python skills/douyin-cli/douyin.py status
以下情况使用此 Skill:
python skills/douyin-cli/douyin.py search "关键词" # 搜索视频
python skills/douyin-cli/douyin.py search "关键词" --user # 搜索用户
python skills/douyin-cli/douyin.py search "关键词" --auto-connect # 用 Chrome(推荐)
python skills/douyin-cli/douyin.py detail <aweme_id> # 视频详情
python skills/douyin-cli/douyin.py comments <aweme_id> # 评论列表
python skills/douyin-cli/douyin.py video <aweme_id> # 详情 + 评论
aweme_id 从搜索结果或视频 URL 中获取(/video/ 后面的数字)。
python skills/douyin-cli/douyin.py user <sec_user_id> # 用户主页
python skills/douyin-cli/douyin.py posts <sec_user_id> # 用户作品列表
sec_user_id 从用户主页 URL 中获取(/user/ 后面的字符串)。
python skills/douyin-cli/douyin.py more [次数] # 滚动加载更多(默认3次)
python skills/douyin-cli/douyin.py export results.json # 导出为 JSON
python skills/douyin-cli/douyin.py export results.csv --csv # 导出为 CSV
export 导出上次 search/posts 命令的结果。
连接用户已登录的 Chrome,绕过验证码:
python douyin.py search "关键词" --auto-connect
前提:Chrome 已打开且已登录抖音。所有命令都支持 --auto-connect 选项。
使用独立浏览器 + 持久化 profile:
python douyin.py login # 首次登录
python douyin.py search "关键词" # 后续使用
search "XX" 搜索video <id> 查看详情+评论user <sec_user_id> 获取主页posts <sec_user_id> 查看作品列表search "关键词" 搜索more 5 加载更多export results.csv --csv 导出tools
小红书 CLI 工具。搜索笔记、查看详情和评论、获取用户信息、账号数据统计、自动发布图文。当用户提到小红书、XHS、红书、笔记搜索、发帖时使用此 Skill。
documentation
飞书文档助手。读写飞书云文档和知识库,支持创建、导出、精确编辑、同步到知识库、群消息通知。当用户提到飞书文档、知识库、wiki,或发送 feishu.cn 链接时使用此 Skill。
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------