Global Content Search logo

Global Content Search

CommunityPopular
SpaceZephyr
global-content-search

全域内容搜索|当提到小红书/B站/抖音关键词搜索、笔记/视频详情、评论、博主/UP主作品监控时使用。优先基于 Agent Reach / OpenCLI / bili-cli / 公开只读接口访问;Agent Reach 不可用时,小红书可用 Guaikei API 作为最后兜底。

Overview

PublisherSpaceZephyr
Repositorycreator-buddy
Skill nameglobal-content-search
Stars
1.5K
Forks
234
Bundled files
20
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 20 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by SpaceZephyr on GitHub. Read the source before you install it.

Installation

Install the Global Content Search AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/SpaceZephyr/creator-buddy.git /tmp/creator-buddy
mkdir -p .claude/skills
cp -r /tmp/creator-buddy/gzh-Skills/global-content-search .claude/skills/global-content-search
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Global Content Search in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Global Content Search on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Global Content Search is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

全域内容搜索

一句话价值主张:先用 Agent Reach 搜全网内容,搜不到再用 Guaikei API 兜底,把小红书、B站和可扩展的抖音内容搜索统一到一套 CLI。

1. 技能概述

这个 Skill 的访问顺序是:

  1. 优先使用 Agent Reach 生态中的只读后端
  2. Agent Reach 没有可用小红书后端时,再尝试 Guaikei API 兜底
  3. 如果没有配置 GUAIKEI_API_TOKEN,则提示用户配置,而不是直接失败成未知错误

当前后端:

  • 小红书:opencli xiaohongshuxiaohongshu-mcpxhs-cli
  • 小红书兜底:GUAIKEI_API_TOKEN
  • B站:bili-cliopencli bilibili 或 B站公开搜索/详情 API
  • 抖音:Agent Reach 当前未内置 channel,预留 DOUYIN_COMMAND 自定义只读 CLI 适配

2. 核心能力

使用场景具体价值
内容创作选题输入关键词,跨平台搜索热门内容,快速找到选题方向
竞品监控输入创作者主页链接,查看公开作品与内容方向
评论/详情分析读取笔记或视频详情,必要时抓取评论
趋势洞察用同一个命令比较小红书、B站、抖音的内容分布

3. 快速使用

3.1 小红书关键词搜索

bash
node src/xiaohongshu/search-cli.js --platform xiaohongshu --keyword "夏季穿搭" --limit 10

3.2 小红书笔记详情及评论

bash
node src/xiaohongshu/detail-cli.js \
  --platform xiaohongshu \
  --url "https://www.xiaohongshu.com/explore/xxx?xsec_token=yyy" \
  --limit 100

3.3 小红书博主作品

bash
node src/xiaohongshu/post-cli.js \
  --platform xiaohongshu \
  --url "https://www.xiaohongshu.com/user/profile/xxx?xsec_token=yyy" \
  --limit 20

3.4 B站搜索与视频详情

bash
node src/xiaohongshu/search-cli.js --platform bilibili --keyword "AI编程" --limit 10
node src/xiaohongshu/detail-cli.js --platform bilibili --url "BVxxxx"

3.5 抖音扩展入口

Agent Reach 当前版本没有抖音 channel。若你有本地只读 CLI,可以这样接入:

bash
export DOUYIN_COMMAND="/path/to/douyin-readonly-cli"
node src/xiaohongshu/search-cli.js --platform douyin --keyword "AI工具"

该 CLI 需支持:

bash
$DOUYIN_COMMAND search <keyword> --limit <n>
$DOUYIN_COMMAND detail <url-or-id>
$DOUYIN_COMMAND user <user-url-or-id> --limit <n>

4. 后端检查

使用前建议运行:

bash
agent-reach doctor --json

如果小红书显示 active_backend: null,工具会继续检查 GUAIKEI_API_TOKEN

bash
export GUAIKEI_API_TOKEN="your_api_token_here"

配置后,小红书搜索、详情和博主作品会走 Guaikei API 兜底。

5. 重要限制

  • 本工具只读公开数据,不支持发帖、评论、点赞等写操作。
  • 小红书受 xsec_token 机制限制,详情页建议使用搜索结果返回的完整 URL。
  • Guaikei API 只作为小红书兜底,不会替代 B站或抖音后端。
  • B站公开 API 不保证所有详情字段稳定;安装 bili-cli 后能力更完整。
  • 抖音当前是扩展位,不随仓库内置可用后端。
  • 所有任务结果会自动保存到 logs/,该目录默认不提交。

更多选项见 完整选项说明

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Global Content Search AI skill do?

全域内容搜索|当提到小红书/B站/抖音关键词搜索、笔记/视频详情、评论、博主/UP主作品监控时使用。优先基于 Agent Reach / OpenCLI / bili-cli / 公开只读接口访问;Agent Reach 不可用时,小红书可用 Guaikei API 作为最后兜底。

Why use Global Content Search on TypingMind?

Because you install it once and use it with any model. Global Content Search is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Global Content Search in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/SpaceZephyr/creator-buddy/tree/main/gzh-Skills/global-content-search. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Global Content Search?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Global Content Search?

As many as you like. As long as a model supports skills, you can use Global Content Search with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Global Content Search AI skill free?

Yes. It is published on GitHub by SpaceZephyr under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇