skill-finder-cn
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseSkill Finder CN
技能查找器(中文用户版)
Follow shared release-shell rules in:
- release-shell rules
postplus-shared
Use this skill when the user wants to:
- ask which released PostPlus skill can solve a task
- map a Chinese request into the smallest released skill or skill chain
- understand whether a capability is currently available through PostPlus
- install the released PostPlus skills from the public repository
This skill is for the current released PostPlus surface only.
Do not:
- route the user to skills that are not on the released public surface
- explain third-party installer internals, agent directories, or copy/symlink behavior
- bypass the public repository with manual directory copying or ad hoc install glue
请遵循以下共享的release-shell规则:
- 发布shell规则
postplus-shared
当用户有以下需求时,可使用本技能:
- 查询已发布的PostPlus技能中哪个可解决特定任务
- 将中文需求匹配到最贴合的已发布单个技能或技能链
- 了解某项功能当前是否可通过PostPlus实现
- 从公开仓库安装已发布的PostPlus技能
本技能仅适用于当前已发布的PostPlus技能范围。
请勿:
- 将用户引导至未在公开发布范围内的技能
- 解释第三方安装程序内部机制、Agent目录或复制/符号链接行为
- 通过手动复制目录或临时安装脚本绕过公开仓库
Source Of Truth
权威来源
Use the released surface exposed by the public PostPlus skills repository:
npx -y skills add PostPlusAI/postplus-skills --listnpx -y skills add PostPlusAI/postplus-skills --skill '*' --agent claude-code codex cursor --yespostplus list
If the current released surface does not contain a suitable skill, say that directly.
请以公开PostPlus技能仓库展示的已发布技能范围为准:
npx -y skills add PostPlusAI/postplus-skills --listnpx -y skills add PostPlusAI/postplus-skills --skill '*' --agent claude-code codex cursor --yespostplus list
如果当前已发布范围内没有合适的技能,请直接告知用户。
Default Workflow
默认工作流
- understand the real task, not just the literal wording
- map it to the smallest released skill or skill chain
- explain why that route fits
- confirm the released skill ids with when needed
postplus list - hand the user the official install path:
npm install -g @postplus/clipostplus auth loginnpx -y skills add PostPlusAI/postplus-skills --skill '*' --agent claude-code codex cursor --yes
- 理解用户的真实需求,而非仅停留在字面表述
- 将需求匹配到最贴合的已发布单个技能或技能链
- 解释推荐该技能的原因
- 必要时通过确认已发布技能ID
postplus list - 向用户提供官方安装步骤:
npm install -g @postplus/clipostplus auth loginnpx -y skills add PostPlusAI/postplus-skills --skill '*' --agent claude-code codex cursor --yes
Recommendation Rules
推荐规则
- prefer one narrow released skill over a broad stack when the task is already specific
- use router skills only when the request is still ambiguous
- if the downstream skill is not released, do not pretend it is installable
- when multiple released skills are needed, order them by workflow stage: research -> synthesis -> production -> publishing
- 当需求明确时,优先推荐单一细分技能而非综合性技能栈
- 仅当需求模糊时使用路由技能
- 如果下游技能未发布,切勿声称其可安装
- 当需要多个技能时,按工作流阶段排序:研究 → 整合 → 生产 → 发布
Good Output
规范输出
Return:
- the recommended released skill id or skill chain
- one-sentence reason for each recommendation
- the exact official install command
- any important release-surface limitation
请返回以下内容:
- 推荐的已发布技能ID或技能链
- 每条推荐的一句话理由
- 准确的官方安装命令
- 任何重要的已发布范围限制
Example
示例
If the user asks:
- “有什么 skill 可以帮我做 TikTok 爆款研究?”
Good response shape:
- recommend
tiktok-research - if the user only wants installation guidance, point to:
npm install -g @postplus/clipostplus auth loginnpx -y skills add PostPlusAI/postplus-skills --skill '*' --agent claude-code codex cursor --yes
If the user asks:
- “我想先找达人,再做外联”
Good response shape:
- recommend
creator-discovery-router - then the routed platform research skill
- then
creator-outreach
如果用户提问:
- “有什么 skill 可以帮我做 TikTok 爆款研究?”
规范回复格式:
- 推荐技能
tiktok-research - 如果用户仅需要安装指导,请提供:
npm install -g @postplus/clipostplus auth loginnpx -y skills add PostPlusAI/postplus-skills --skill '*' --agent claude-code codex cursor --yes
如果用户提问:
- “我想先找达人,再做外联”
规范回复格式:
- 推荐技能
creator-discovery-router - 然后使用路由指向的平台研究技能
- 最后使用技能
creator-outreach
Fail-Fast Rule
快速失败规则
If no released skill fits the request, stop and say:
- the released surface does not currently cover that capability
- whether the nearest released alternative exists
- whether the request appears to depend on a capability that is not currently available
如果没有已发布技能匹配用户需求,请直接告知:
- 当前已发布技能范围暂不支持该功能
- 是否存在最接近的已发布替代技能
- 用户需求是否依赖当前未提供的功能