skill-finder-cn

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Skill Finder CN

技能查找器(中文用户版)

Follow shared release-shell rules in:
  • postplus-shared
    release-shell rules
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规则:
  • postplus-shared
    发布shell规则
当用户有以下需求时,可使用本技能:
  • 查询已发布的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 --list
  • npx -y skills add PostPlusAI/postplus-skills --skill '*' --agent claude-code codex cursor --yes
  • postplus list
If the current released surface does not contain a suitable skill, say that directly.
请以公开PostPlus技能仓库展示的已发布技能范围为准:
  • npx -y skills add PostPlusAI/postplus-skills --list
  • npx -y skills add PostPlusAI/postplus-skills --skill '*' --agent claude-code codex cursor --yes
  • postplus list
如果当前已发布范围内没有合适的技能,请直接告知用户。

Default Workflow

默认工作流

  1. understand the real task, not just the literal wording
  2. map it to the smallest released skill or skill chain
  3. explain why that route fits
  4. confirm the released skill ids with
    postplus list
    when needed
  5. hand the user the official install path:
    • npm install -g @postplus/cli
    • postplus auth login
    • npx -y skills add PostPlusAI/postplus-skills --skill '*' --agent claude-code codex cursor --yes
  1. 理解用户的真实需求,而非仅停留在字面表述
  2. 将需求匹配到最贴合的已发布单个技能或技能链
  3. 解释推荐该技能的原因
  4. 必要时通过
    postplus list
    确认已发布技能ID
  5. 向用户提供官方安装步骤:
    • npm install -g @postplus/cli
    • postplus auth login
    • npx -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:
  1. recommend
    tiktok-research
  2. if the user only wants installation guidance, point to:
    • npm install -g @postplus/cli
    • postplus auth login
    • npx -y skills add PostPlusAI/postplus-skills --skill '*' --agent claude-code codex cursor --yes
If the user asks:
  • “我想先找达人,再做外联”
Good response shape:
  1. recommend
    creator-discovery-router
  2. then the routed platform research skill
  3. then
    creator-outreach
如果用户提问:
  • “有什么 skill 可以帮我做 TikTok 爆款研究?”
规范回复格式:
  1. 推荐
    tiktok-research
    技能
  2. 如果用户仅需要安装指导,请提供:
    • npm install -g @postplus/cli
    • postplus auth login
    • npx -y skills add PostPlusAI/postplus-skills --skill '*' --agent claude-code codex cursor --yes
如果用户提问:
  • “我想先找达人,再做外联”
规范回复格式:
  1. 推荐
    creator-discovery-router
    技能
  2. 然后使用路由指向的平台研究技能
  3. 最后使用
    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
如果没有已发布技能匹配用户需求,请直接告知:
  • 当前已发布技能范围暂不支持该功能
  • 是否存在最接近的已发布替代技能
  • 用户需求是否依赖当前未提供的功能