fusion-skills

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Fusion Skills

Fusion Skills

Skill lifecycle entrypoint. Resolve intent, engage the right agent.
Skill生命周期操作入口。解析用户意图,调用对应的Agent。

Loading behavior

加载行为

Load ONLY the routed agent file. References are loaded on-demand by the agent when it needs them (e.g.,
skill-catalog.md
only on MCP failure,
sync-workflows.md
only in setup mode). Do not preload all agents or all references.
仅加载路由指向的Agent文件。引用内容由Agent在需要时按需加载(例如:仅在MCP失败时加载
skill-catalog.md
,仅在设置模式下加载
sync-workflows.md
)。请勿预加载所有Agent或所有引用内容。

MCP tools

MCP工具

This skill uses
mcp_fusion_skills
— the Fusion MCP tool that handles both skill discovery and lifecycle operations:
  • Discovery (
    intent: query
    ): semantic search over the skills index by description or task.
  • Inventory (
    intent: inventory
    ): list installed skills.
  • Lifecycle (
    intent: install | update | remove
    ): advisory commands for managing skills.
本Skill使用
mcp_fusion_skills
——一款同时处理Skill发现和生命周期操作的Fusion MCP工具:
  • 发现
    intent: query
    ):根据描述或任务对Skill索引进行语义搜索。
  • 清单
    intent: inventory
    ):列出已安装的Skill。
  • 生命周期
    intent: install | update | remove
    ):用于管理Skill的指导性命令。

Routing

路由规则

IntentAgent
Find or discover the right skill; list installed skills
agents/discovery.agent.md
Install, update, remove, or check skills; set up automation
agents/greenkeeper.agent.md
Create, author, or improve a skill
agents/author.agent.md
Inspect a skill for quality issues, or report a skill failure
agents/warden.agent.md
If the user was routed here from the
fusion
main gate with a partially-resolved intent (e.g., "skills"), proceed directly to the most likely agent without re-asking the top-level question.
If intent is genuinely unclear and the user was not already asked a clarifying question, ask one question: "Are you looking to find a skill, install or update one, create your own, or report a problem with one?"
Compound intents: If the request spans multiple agents (e.g., "inspect this skill and fix the issues"), run agents sequentially. Pass the output of the first agent as context to the second.
Loop prevention: If you were activated from the
fusion
main gate, do not redirect back to
fusion
. Handle the request within your agents or state that it is out of scope.
Out of scope: Resolving GitHub issues, reviewing PRs, planning task breakdowns, or authoring GitHub issues. Direct the user to the relevant installed skill or the
fusion
main gate — but never re-route back to
fusion
if you were activated from there.
意图Agent
查找或发现合适的Skill;列出已安装的Skill
agents/discovery.agent.md
安装、更新、移除或检查Skill;设置自动化
agents/greenkeeper.agent.md
创建、编写或优化Skill
agents/author.agent.md
检查Skill的质量问题,或上报Skill故障
agents/warden.agent.md
如果用户是从
fusion
主入口路由到此处且意图未完全明确(例如:仅输入“skills”),直接跳转到最匹配的Agent,无需再次询问顶层问题。
如果意图确实不明确且尚未向用户询问澄清问题,请询问:“您是想要查找Skill、安装或更新Skill、创建自己的Skill,还是上报Skill的问题?”
复合意图处理:如果请求涉及多个Agent(例如:“检查这个Skill并修复问题”),请依次运行Agent。将第一个Agent的输出作为上下文传递给第二个Agent。
循环预防:如果您是从
fusion
主入口被激活的,请勿重定向回
fusion
。请在内部Agent中处理请求,或说明该请求超出范围。
超出范围的场景:解决GitHub问题、审核PR、规划任务拆分或编写GitHub问题。请引导用户使用相关的已安装Skill或
fusion
主入口——但如果您是从
fusion
主入口被激活的,请勿将用户重定向回
fusion

Migration from deprecated skills

从已弃用Skill迁移

If
fusion-discover-skills
or
fusion-skill-self-report-bug
is installed alongside this skill, tell the user:
"You have a deprecated skill installed that's now part of
fusion-skills
. You can safely remove it:
npx -y skills remove <deprecated-skill-name>
"
如果本Skill同时安装了
fusion-discover-skills
fusion-skill-self-report-bug
,请告知用户:
"您安装了一款已弃用的Skill,该Skill的功能现已整合到
fusion-skills
中。您可以安全地移除它:
npx -y skills remove <deprecated-skill-name>
"

Safety

安全规则

  • No secrets or credentials.
  • No GitHub mutations without confirmation.
  • No remote script execution.
  • No invented skill names or catalog results.
  • 不处理机密信息或凭证。
  • 未经确认不得修改GitHub内容。
  • 不执行远程脚本。
  • 不得虚构Skill名称或目录结果。