fusion-skills
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseFusion 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., only on MCP failure, only in setup mode). Do not preload all agents or all references.
skill-catalog.mdsync-workflows.md仅加载路由指向的Agent文件。引用内容由Agent在需要时按需加载(例如:仅在MCP失败时加载,仅在设置模式下加载)。请勿预加载所有Agent或所有引用内容。
skill-catalog.mdsync-workflows.mdMCP tools
MCP工具
This skill uses — the Fusion MCP tool that handles both skill discovery and lifecycle operations:
mcp_fusion_skills- Discovery (): semantic search over the skills index by description or task.
intent: query - Inventory (): list installed skills.
intent: inventory - Lifecycle (): advisory commands for managing skills.
intent: install | update | remove
本Skill使用——一款同时处理Skill发现和生命周期操作的Fusion MCP工具:
mcp_fusion_skills- 发现():根据描述或任务对Skill索引进行语义搜索。
intent: query - 清单():列出已安装的Skill。
intent: inventory - 生命周期():用于管理Skill的指导性命令。
intent: install | update | remove
Routing
路由规则
| Intent | Agent |
|---|---|
| Find or discover the right skill; list installed skills | |
| Install, update, remove, or check skills; set up automation | |
| Create, author, or improve a skill | |
| Inspect a skill for quality issues, or report a skill failure | |
If the user was routed here from the main gate with a partially-resolved intent (e.g., "skills"), proceed directly to the most likely agent without re-asking the top-level question.
fusionIf 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 main gate, do not redirect back to . Handle the request within your agents or state that it is out of scope.
fusionfusionOut of scope: Resolving GitHub issues, reviewing PRs, planning task breakdowns, or authoring GitHub issues. Direct the user to the relevant installed skill or the main gate — but never re-route back to if you were activated from there.
fusionfusion| 意图 | Agent |
|---|---|
| 查找或发现合适的Skill;列出已安装的Skill | |
| 安装、更新、移除或检查Skill;设置自动化 | |
| 创建、编写或优化Skill | |
| 检查Skill的质量问题,或上报Skill故障 | |
如果用户是从主入口路由到此处且意图未完全明确(例如:仅输入“skills”),直接跳转到最匹配的Agent,无需再次询问顶层问题。
fusion如果意图确实不明确且尚未向用户询问澄清问题,请询问:“您是想要查找Skill、安装或更新Skill、创建自己的Skill,还是上报Skill的问题?”
复合意图处理:如果请求涉及多个Agent(例如:“检查这个Skill并修复问题”),请依次运行Agent。将第一个Agent的输出作为上下文传递给第二个Agent。
循环预防:如果您是从主入口被激活的,请勿重定向回。请在内部Agent中处理请求,或说明该请求超出范围。
fusionfusion超出范围的场景:解决GitHub问题、审核PR、规划任务拆分或编写GitHub问题。请引导用户使用相关的已安装Skill或主入口——但如果您是从主入口被激活的,请勿将用户重定向回。
fusionfusionfusionMigration from deprecated skills
从已弃用Skill迁移
If or is installed alongside this skill, tell the user:
fusion-discover-skillsfusion-skill-self-report-bug"You have a deprecated skill installed that's now part of. You can safely remove it:fusion-skills"npx -y skills remove <deprecated-skill-name>
如果本Skill同时安装了或,请告知用户:
fusion-discover-skillsfusion-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名称或目录结果。