← 返回 Skills 市场
terrycarter1985

Douyin Quick Search

作者 terrycarter1985 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
43
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install douyin-quick-search
功能描述
Search Douyin (抖音) content by natural language keyword. Supports video search, trending topics, and video detail extraction. Uses web search + page scraping...
使用说明 (SKILL.md)

Douyin Scraper

Search Douyin videos by natural language — "搜索一下海鲜视频" just works.

What This Skill Does

Search and retrieve Douyin (抖音) video content using natural language queries:

  • Keyword search: Find videos by any Chinese or English keyword phrase
  • Trending discovery: Find what's hot on Douyin
  • Video detail: Extract metadata from a specific Douyin video URL

How It Works

This skill uses two layers:

  1. Web search (Brave) → discovers Douyin search result pages and video URLs
  2. Web fetch → extracts readable content from Douyin pages when accessible

No API keys, cookies, or login required.


Activation Rules (for AI agents)

Use this skill when the user asks about:

  • Searching Douyin videos by keyword (搜索抖音/搜一下/找一下)
  • Finding trending Douyin content (抖音热搜/抖音热门)
  • Getting info about a specific Douyin video URL
  • Any request containing "抖音" + a search intent

Do NOT use this skill when:

  • User wants to download videos (use a downloader skill instead)
  • User wants to publish/upload to Douyin
  • User asks about Douyin script optimization (that's the douyin skill)
  • User asks about Douyin account/analytics management

Execution Protocol

Search: douyin_search

Trigger: User wants to search Douyin content by keyword.

Steps:

  1. Extract keywords from the user's natural language request.

    • "搜索一下海鲜视频" → keyword: 海鲜视频
    • "帮我找抖音上做菜的视频" → keyword: 做菜
    • "抖音上最近火的猫咪内容" → keyword: 猫咪
    • "douyin seafood cooking" → keyword: seafood cooking
  2. Run web_search with the keyword targeting Douyin:

    web_search(query="\x3Ckeyword> site:douyin.com", count=10)
    

    Also run a broader search for richer results:

    web_search(query="抖音 \x3Ckeyword> 视频", count=10)
    
  3. Parse results — extract from search results:

    • Video URLs: https://www.douyin.com/video/\x3Cid>
    • Search pages: https://www.douyin.com/search/\x3Ckeyword>
    • Descriptions and snippets from search result titles/descriptions
  4. Enrich — for each distinct video URL found, optionally use web_fetch to extract more detail. If the page is behind CAPTCHA, fall back to search result metadata only.

  5. Format output as a clean list:

    🔍 抖音搜索:海鲜视频
    ━━━━━━━━━━━━━━━━━━━━━
    
    1. **盘点捞汁小海鲜** — 看哪位主播吃的最过瘾
       🔗 https://www.douyin.com/search/捞汁小海鲜
    
    2. **全网最火主播吃海鲜合集**
       🔗 https://www.douyin.com/search/全网最火主播吃海鲜合集
    
    ...
    

Trending: douyin_trending

Trigger: User asks about Douyin trending/hot topics (抖音热搜/热门/趋势).

Steps:

  1. Run web_search:

    web_search(query="抖音热搜榜 today", count=10, freshness="day")
    
  2. Parse and format the trending topics.

Video Detail: douyin_detail

Trigger: User provides a specific Douyin video URL or wants info about one.

Steps:

  1. Try web_fetch(url=\x3Cdouyin_video_url>) to extract metadata.
  2. If blocked by CAPTCHA, try web_search(query="site:douyin.com \x3Cvideo_id>").
  3. Return whatever metadata is available (title, author, description).

Output Format

Always include:

  • Search keyword used
  • Result count found
  • Each result with: title, brief description (if available), link

For searches with no results:

  • Say so clearly
  • Suggest trying a different or shorter keyword
  • Suggest browsing directly at https://www.douyin.com/search/\x3Ckeyword>

Limitations

  • Douyin aggressively blocks automated access (CAPTCHA, auth requirements)
  • Video metadata may be limited to what search engines have indexed
  • Cannot download videos — only discover and describe them
  • Search results depend on search engine coverage, which may lag behind live Douyin
  • For real-time or comprehensive search, the user should browse Douyin directly

Tips

  • Shorter keywords work better海鲜 over 海鲜视频大全最新
  • Chinese keywords yield more results than English for Douyin content
  • If a search returns few results, try the Chinese equivalent of the term
  • Combine with the douyin script optimization skill for content creation workflows
安全使用建议
This skill appears safe to use for public Douyin discovery. Before installing, be comfortable with search terms and Douyin URLs being sent to web search/fetch providers, do not provide Douyin login cookies or credentials, and verify important results because they come from public search snippets and fetched pages.
功能分析
Type: OpenClaw Skill Name: douyin-quick-search Version: 1.0.0 The skill bundle contains instructions for an AI agent to perform Douyin content searches using standard web search and fetching tools. There is no executable code, no request for sensitive permissions, and no evidence of malicious prompt injection or data exfiltration in files like skill.md or skill.json.
能力标签
requires-sensitive-credentials
能力评估
Purpose & Capability
The purpose is coherent and disclosed: SKILL.md says it searches Douyin content using "Web search (Brave)" and "Web fetch". This is proportionate for a search/scraping skill, but it means user queries and URLs may go to external web tools.
Instruction Scope
Instructions are scoped to keyword search, trending discovery, and video detail extraction, and SKILL.md explicitly says not to use it for downloads, publishing/uploading, account analytics, or account management.
Install Mechanism
There is no install spec, no required binaries, no required environment variables, and no code files; the manifest contains only README.md, skill.json, and skill.md.
Credentials
The supplied capability signals include "requires-sensitive-credentials", while SKILL.md says "No API keys, cookies, or login required" and registry requirements list no env vars or primary credential. This appears to be metadata ambiguity rather than evidence of credential handling.
Persistence & Privilege
No artifacts show persistence, local file indexing, shell execution, account mutation, posting, deletion, or background activity.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install douyin-quick-search
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /douyin-quick-search 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of douyin-quick-search skill. - Search Douyin (抖音) videos using natural language keywords in Chinese or English. - Discover trending topics and popular content from Douyin. - Extract metadata from specific Douyin video URLs. - No login or API key required; uses web search and page scraping. - Clear rules for when to trigger searches, show trending, or extract video details.
元数据
Slug douyin-quick-search
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Douyin Quick Search 是什么?

Search Douyin (抖音) content by natural language keyword. Supports video search, trending topics, and video detail extraction. Uses web search + page scraping... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 43 次。

如何安装 Douyin Quick Search?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install douyin-quick-search」即可一键安装,无需额外配置。

Douyin Quick Search 是免费的吗?

是的,Douyin Quick Search 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Douyin Quick Search 支持哪些平台?

Douyin Quick Search 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Douyin Quick Search?

由 terrycarter1985(@terrycarter1985)开发并维护,当前版本 v1.0.0。

💬 留言讨论