Bestblogs Profile logo

Bestblogs Profile

CommunityPopular
ginobefun
bestblogs-profile

Use this skill when the user wants to set up, inspect, or update their BestBlogs interest profile and onboarding state (cold start). Triggers include "帮我做 BestBlogs 冷启动 / 设置兴趣标签 / 看我现在的画像 / bestblogs 的 onboarding", "set up my BestBlogs profile", "what topics have I chosen on BestBlogs". Invokes the `bestblogs` CLI.

Overview

Publisherginobefun
RepositoryBestBlogs
Skill namebestblogs-profile
Stars
4K
Forks
363
Bundled files
Instructions only
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.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

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

Installation

Install the Bestblogs Profile 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/ginobefun/BestBlogs.git /tmp/BestBlogs
mkdir -p .claude/skills
cp -r /tmp/BestBlogs/skills/bestblogs-profile .claude/skills/bestblogs-profile
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Bestblogs Profile 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 Bestblogs Profile 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 Bestblogs Profile 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.

bestblogs-profile — BestBlogs Intake(冷启动 / 画像)

何时使用

  • 用户第一次使用 BestBlogs,希望建立兴趣画像。
  • 用户想查看自己当前选了哪些兴趣标签、语言偏好、onboarding 是否完成。
  • 用户想重新设置一遍兴趣(作为漂移干预或重置)。

原语

原语CLI说明
bestblogs.profile.setupbestblogs intake setup交互或非交互地完成 onboarding
bestblogs.profile.getbestblogs intake show --json获取当前画像 + onboarding 状态

前置检查

bash
bestblogs auth status --json

若输出 loggedIn: false 或报 AUTH_REQUIRED,先提示用户运行 bestblogs auth login,获取 API Key 来自 https://bestblogs.dev/settings/api-keys。

动作

非交互建档

bash
bestblogs intake setup --non-interactive \
  --tags "tag_ai,tag_coding,tag_product" \
  --lang both \
  --source-limit 10 \
  --json

输出示例:

json
{
  "success": true,
  "data": {
    "onboardingCompleted": true,
    "interestTagCount": 3,
    "followedSources": 10,
    "languagePreference": "both"
  }
}

交互建档(推荐真人场景)

bash
bestblogs intake setup

(CLI 会用 prompts 弹出多选,Skill 在支持 shell 的 agent 里 fork 子进程执行即可。)

查画像

bash
bestblogs intake show --json

关心的字段(parse 时按需取):

  • data.interests.explicitInterests[] — 显式兴趣(含 tagName, weight)
  • data.interests.implicitInterests[] — 隐式兴趣
  • data.interests.recentActiveTopics[] — 近 7 天活跃主题
  • data.onboarding — onboarding 状态
  • data.interests.driftDetected — 是否有漂移

错误处理

  • error.code=AUTH_REQUIRED → 提示运行 bestblogs auth login,中断流程
  • error.httpStatus=403 → 某些子能力需要 Pro,提示用户升级
  • error.code=RATE_LIMITED → CLI 已自动退避重试一次;如仍失败告知用户稍后重试

输出契约

Skill 的 caller 应拿到结构化结果,例如:

json
{
  "onboardingCompleted": true,
  "explicitInterestCount": 6,
  "languagePreference": "both",
  "driftDetected": false,
  "recentActiveTopics": ["AI Coding", "Dev Tools"]
}

组合建议

  • 冷启动完成后,立即调用 bestblogs-discover 展示 "today" 列表,给用户第一次价值点击。
  • 定期(每周或 drift 触发时)调用 profile.get,根据 driftDetected=true 建议用户打开 bestblogs-profile setup 重新调整。

Frequently asked questions

What does the Bestblogs Profile AI skill do?

Use this skill when the user wants to set up, inspect, or update their BestBlogs interest profile and onboarding state (cold start). Triggers include "帮我做 BestBlogs 冷启动 / 设置兴趣标签 / 看我现在的画像 / bestblogs 的 onboarding", "set up my BestBlogs profile", "what topics have I chosen on BestBlogs". Invokes the `bestblogs` CLI.

Why use Bestblogs Profile on TypingMind?

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

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/ginobefun/BestBlogs/tree/main/skills/bestblogs-profile. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Bestblogs Profile?

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 Bestblogs Profile?

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

Is the Bestblogs Profile AI skill free?

It is published on GitHub by ginobefun. Check the repository for licensing terms. 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 👇