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.
76
95%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
| 原语 | CLI | 说明 |
|---|---|---|
bestblogs.profile.setup | bestblogs intake setup | 交互或非交互地完成 onboarding |
bestblogs.profile.get | bestblogs intake show --json | 获取当前画像 + onboarding 状态 |
bestblogs auth status --json若输出 loggedIn: false 或报 AUTH_REQUIRED,先提示用户运行 bestblogs auth login,获取 API Key 来自 https://bestblogs.dev/settings/api-keys。
bestblogs intake setup --non-interactive \
--tags "tag_ai,tag_coding,tag_product" \
--lang both \
--source-limit 10 \
--json输出示例:
{
"success": true,
"data": {
"onboardingCompleted": true,
"interestTagCount": 3,
"followedSources": 10,
"languagePreference": "both"
}
}bestblogs intake setup(CLI 会用 prompts 弹出多选,Skill 在支持 shell 的 agent 里 fork 子进程执行即可。)
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 应拿到结构化结果,例如:
{
"onboardingCompleted": true,
"explicitInterestCount": 6,
"languagePreference": "both",
"driftDetected": false,
"recentActiveTopics": ["AI Coding", "Dev Tools"]
}bestblogs-discover 展示 "today" 列表,给用户第一次价值点击。profile.get,根据 driftDetected=true 建议用户打开 bestblogs-profile setup 重新调整。756ffbd
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.