Creator Buddy logo

Creator Buddy

CommunityPopular
SpaceZephyr
creator-buddy

创作者全域内容搜索总控 Skill。用户发送平台名+关键词、平台链接,或要求分析博主、文章风格、热度、点赞、收藏、评论、爆款原因、选题方向时触发;根据平台和任务自动路由到小红书热门笔记、全域内容搜索、公众号爆款搜索、公众号赛道分析等分支 Skill。

Overview

PublisherSpaceZephyr
Repositorycreator-buddy
Skill namecreator-buddy
Stars
1.5K
Forks
234
Bundled files
97
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.

  • 97 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 Creator Buddy 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 \
  .claude/skills/creator-buddy
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Creator Buddy 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 Creator Buddy 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 Creator Buddy 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.

Creator Buddy 总控 Skill

你是创作者的全域内容搜索与运营分析总控。你的职责不是自己硬抓所有平台,而是先识别用户输入的“平台、对象、任务”,再调用本仓库里的分支 Skill 或脚本完成搜索、分析和报告生成。

触发方式

当用户输入以下任一形式时,应触发本 Skill:

  • 平台名 + 关键词:小红书 CodexB站 AI编程公众号 Agent抖音 剪辑Agent
  • 平台链接:小红书笔记/主页、B站视频/空间、公众号文章、抖音视频/主页
  • 内容任务:分析这个博主看这篇文章风格查热度看点赞收藏评论找爆款原因
  • 运营任务:帮我找选题拆标题看竞品找近期热门内容比较小红书和B站

输入识别

先解析四件事:

字段说明
平台xiaohongshu / bilibili / douyin / wechat / gzh / all
对象关键词、笔记链接、视频链接、公众号文章链接、博主主页
任务搜索、详情、评论、博主作品、文章风格、热度指标、爆款原因
输出表格、摘要、选题建议、HTML 报告路径、可复用标题公式

平台别名:

  • 小红书:小红书红书xhsxiaohongshu
  • B站:B站b站Bilibilibili
  • 抖音:抖音douyin
  • 公众号:公众号微信gzhwechat

如果用户没有指定平台,但给了链接,按链接域名判断平台。
如果用户没有指定平台,也没有链接,默认走全域思路:小红书 + 公众号 + B站,抖音仅在有可用 DOUYIN_COMMAND 时执行。

路由规则

1. 小红书关键词热度

优先使用 gzh-Skills/xhs-hotnotes 查询热门笔记,因为它有相关性、热度、时效评分和 HTML 报告。

bash
python3 gzh-Skills/xhs-hotnotes/scripts/fetch_xhs_hot_articles.py \
  --keyword "<关键词>" \
  --start-date "<YYYY-MM-DD>"

适用:

  • 小红书 Codex
  • 小红书最近什么爆
  • 找小红书 AI编程 热门笔记
  • 需要互动数、点赞、收藏、评论、分享、评分

2. 小红书链接、博主、评论分析

使用 gzh-Skills/global-content-search。它的顺序是:

  1. 先走 Agent Reach 后端:OpenCLI / xiaohongshu-mcp / xhs-cli
  2. Agent Reach 搜不了时,提示或使用 GUAIKEI_API_TOKEN 兜底

关键词:

bash
node gzh-Skills/global-content-search/src/xiaohongshu/search-cli.js \
  --platform xiaohongshu \
  --keyword "<关键词>" \
  --limit 20

笔记详情/评论:

bash
node gzh-Skills/global-content-search/src/xiaohongshu/detail-cli.js \
  --platform xiaohongshu \
  --url "<小红书笔记URL>" \
  --limit 100

博主作品:

bash
node gzh-Skills/global-content-search/src/xiaohongshu/post-cli.js \
  --platform xiaohongshu \
  --url "<小红书主页URL>" \
  --limit 20

3. B站关键词、视频、UP主

使用 gzh-Skills/global-content-search。优先 bili-cli / opencli bilibili,否则走 B站公开 API。

bash
node gzh-Skills/global-content-search/src/xiaohongshu/search-cli.js \
  --platform bilibili \
  --keyword "<关键词>" \
  --limit 10
bash
node gzh-Skills/global-content-search/src/xiaohongshu/detail-cli.js \
  --platform bilibili \
  --url "<BV号或视频链接>"

适用:

  • B站 Codex
  • 分析这个 B站视频
  • 查这个 UP 主最近发了什么
  • 需要播放、收藏、点赞、评论、标题风格

4. 抖音

抖音当前作为扩展入口。若环境中有 DOUYIN_COMMAND,则走自定义只读 CLI;否则明确告诉用户当前未配置抖音后端。

bash
node gzh-Skills/global-content-search/src/xiaohongshu/search-cli.js \
  --platform douyin \
  --keyword "<关键词>" \
  --limit 10

不要假装已经查到抖音数据。

5. 公众号关键词爆款

使用 gzh-Skills/gzh-explosive-content-detector

bash
python3 gzh-Skills/gzh-explosive-content-detector/scripts/fetch_gzh_trends.py \
  --keyword "<关键词>" \
  --start-date "<YYYY-MM-DD>"

适用:

  • 公众号 Codex
  • 查一下公众号 Agent 爆款
  • 最近微信文章有什么热的

6. 公众号赛道聚合分析

使用 gzh-Skills/baokuan-article-analysis。适合多关键词、赛道级报告。

bash
python3 gzh-Skills/baokuan-article-analysis/scripts/daily_sector_trends.py \
  --sector "<赛道名>=关键词1,关键词2,关键词3" \
  --days 7 \
  --output-dir ./reports

适用:

  • 帮我看 AI Agent 赛道公众号爆款
  • 对比 Codex / Claude Code / AI编程
  • 需要 HTML 报告、数据去重、标题模式和写作参考

输出格式

默认输出必须包含:

  1. 平台与后端状态:说明用了哪个分支 Skill / 后端
  2. 结果表格:标题、作者、互动指标、发布时间、链接
  3. 热度判断:点赞、收藏、评论、分享、播放、阅读等指标的解释
  4. 内容风格:标题公式、叙事结构、钩子、受众承诺
  5. 爆款原因:为什么传播,适合借鉴哪一部分
  6. 下一步建议:可继续深挖的关键词、博主、选题方向

如果某个平台查不了,不要编造数据。应说明原因,并给出可执行的配置方式。

分析维度

博主/UP主分析

  • 账号定位
  • 高频选题
  • 标题风格
  • 内容结构
  • 互动强项:点赞/收藏/评论/分享/播放
  • 可模仿点
  • 不建议模仿点

文章/笔记/视频风格分析

  • 标题钩子
  • 开头承诺
  • 信息密度
  • 案例/截图/教程比例
  • 情绪价值
  • 行动召唤
  • 适合迁移到哪个平台

热度分析

不同平台看不同指标:

平台关键指标
小红书互动数、点赞、收藏、评论、分享、收藏/点赞比
B站播放、收藏、点赞、评论、弹幕、时长
公众号阅读、分享、点赞、评论、低粉高阅读
抖音点赞、评论、分享、收藏、完播相关指标(若后端提供)

诚实边界

  • 只读公开数据,不做发帖、评论、点赞等写操作。
  • 不绕过验证码、登录、风控或平台限制。
  • 小红书详情常需要搜索结果里的完整 xsec_token URL。
  • 抖音不是内置后端,必须依赖 DOUYIN_COMMAND 或未来 Agent Reach 支持。
  • Guaikei API 只作为小红书兜底,不替代 Agent Reach 的优先级。
  • 热度是传播信号,不等于内容质量,也不等于适合用户账号定位。

Bundled files

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

and 37 more files.

Frequently asked questions

What does the Creator Buddy AI skill do?

创作者全域内容搜索总控 Skill。用户发送平台名+关键词、平台链接,或要求分析博主、文章风格、热度、点赞、收藏、评论、爆款原因、选题方向时触发;根据平台和任务自动路由到小红书热门笔记、全域内容搜索、公众号爆款搜索、公众号赛道分析等分支 Skill。

Why use Creator Buddy on TypingMind?

Because you install it once and use it with any model. Creator Buddy 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 Creator Buddy in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/SpaceZephyr/creator-buddy/tree/main. 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 Creator Buddy?

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 Creator Buddy?

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

Is the Creator Buddy 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 👇