Bestblogs Topic logo

Bestblogs Topic

CommunityPopular
ginobefun
bestblogs-topic

Use this skill when the user asks about a specific topic, subject area, or wants to explore curated topic pages on BestBlogs. Triggers include "BestBlogs 有什么主题 / 查一下 AI 编程主题 / 给我看 Claude 主题页 / 大模型相关主题", "BestBlogs topic list", "show me topics about AI", "what topics does BestBlogs have", "topic details for vibe-coding", "browse topic pages". Invokes the `bestblogs` CLI.

Overview

Publisherginobefun
RepositoryBestBlogs
Skill namebestblogs-topic
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 Topic 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-topic .claude/skills/bestblogs-topic
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Bestblogs Topic 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 Topic 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 Topic 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-topic — 主题探索

何时使用

  • 用户想了解 BestBlogs 有哪些主题专页。
  • 用户想深入某个特定主题(如 "AI 编程"、"Vibe Coding")。
  • 用户想按类型筛选主题(事件型 / 领域型 / 人物组织型 / 对比型)。

原语

原语CLI说明
bestblogs.topic.listbestblogs topics list --json浏览全部主题(默认中文)
bestblogs.topic.list.enbestblogs topics list --lang en --json英文主题列表
bestblogs.topic.list.filterbestblogs topics list --type DOMAIN --json按类型筛选主题
bestblogs.topic.getbestblogs topics get <slug> --json查看主题详情
bestblogs.topic.get.enbestblogs topics get <slug> --lang en --json英文版主题详情

核心动作:浏览主题列表

bash
bestblogs topics list --lang zh --json

返回:

json
{
  "success": true,
  "data": {
    "topics": [
      {
        "slug": "vibe-coding",
        "type": "DOMAIN",
        "title": "Vibe Coding",
        "summary": "AI 辅助编程的全新范式……",
        "tagCodes": ["AI_CODING", "LLM"],
        "publishedAt": "2026-04-20T00:00:00Z",
        "pinnedOrder": 1
      }
    ],
    "totalCount": 12
  }
}

展示建议

  • pinnedOrder 非 null → 置顶主题,优先展示(数字越小越靠前)。
  • type 枚举含义:
    • EVENT — 事件型(某次具体事件的深度解读)
    • DOMAIN — 领域型(某技术/方向的系统梳理)
    • PERSON_ORG — 人物/组织型(人物或公司的全面解读)
    • COMPARISON — 对比型(多个选项/方案的对比分析)
  • tagCodes 帮助用户了解主题覆盖的技术领域。

查看主题详情

bash
bestblogs topics get vibe-coding --lang zh --json

返回的 topic 对象包含:

  • title / summary / type / language
  • hasZhVersion / hasEnVersion — 是否有双语版本
  • eventContent / domainContent / personOrgContent / comparisonContent — 对应类型的详细内容体(仅对应类型非 null)
  • references — 脚注引用列表(含站内资源标题)
  • furtherReadingResources — 延伸阅读资源快照(resourceId → resource 元信息)
bash
# 查看英文版
bestblogs topics get vibe-coding --lang en --json

主题类型过滤

bash
# 只看领域型主题
bestblogs topics list --type DOMAIN --json

# 只看事件型主题(英文)
bestblogs topics list --type EVENT --lang en --json

错误处理

  • 404 / NOT_FOUND on topics get <slug> → 主题不存在或未发布;建议改用 topics list 查看可用 slug。
  • 404 且有 language 参数 → 该语言版本尚未发布;尝试另一语言(hasZhVersion / hasEnVersion 字段预告可用版本)。
  • 空列表 → 该类型/语言暂无已发布主题。

组合建议

  • 发现感兴趣的 topic 后,从 furtherReadingResources 中挑选 resourceId,链式调用 bestblogs-read skill 深读
  • bestblogs-trending 给热门横切面,bestblogs-topic 给纵深主题视角 — 配合使用
  • references 中包含站内资源引用,可从中选取高相关内容继续探索

Frequently asked questions

What does the Bestblogs Topic AI skill do?

Use this skill when the user asks about a specific topic, subject area, or wants to explore curated topic pages on BestBlogs. Triggers include "BestBlogs 有什么主题 / 查一下 AI 编程主题 / 给我看 Claude 主题页 / 大模型相关主题", "BestBlogs topic list", "show me topics about AI", "what topics does BestBlogs have", "topic details for vibe-coding", "browse topic pages". Invokes the `bestblogs` CLI.

Why use Bestblogs Topic on TypingMind?

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

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

Which AI models can use Bestblogs Topic?

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 Topic?

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

Is the Bestblogs Topic 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 👇