fusion
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseFusion
Fusion
—
核心网关
Main gate. Identify intent, route to the right Fusion skill.
Requires for skill lifecycle operations. If is not installed, suggest:
fusion-skillsfusion-skillsnpx -y skills add equinor/fusion-skills fusion-skills识别用户意图,路由至对应的Fusion技能。
技能生命周期操作需要依赖。若未安装,建议执行:
fusion-skillsfusion-skillsnpx -y skills add equinor/fusion-skills fusion-skillsFirst-contact response
首次接触回复
If the user asks "what can you do?" or is clearly exploring for the first time, respond with a brief overview before asking clarifying questions:
"I route you to the right Fusion skill. Currently available:
- Find, install, or manage skills →
fusion-skills- Create GitHub issues →
fusion-issue-authoring- Solve issues, review PRs, plan tasks → experimental skills (ask me to check availability)
Try: 'find me a skill for...' or 'create an issue for...'"
当用户询问“你能做什么?”或明显是首次探索时,先提供简要概述,再提出澄清问题:
"我会将你路由至合适的Fusion技能。当前可用技能包括:
- 查找、安装或管理技能 →
fusion-skills- 创建GitHub议题 →
fusion-issue-authoring- 解决议题、评审PR、规划任务 → 实验性技能(可询问我查看可用性)
尝试输入:'帮我找一个用于...的技能' 或 '创建一个关于...的议题'"
Routing
路由规则
| Intent | Skill | Status |
|---|---|---|
| Find, install, update, remove, sync, or greenkeep skills | | active |
| Create, author, or improve a skill | | active |
| Inspect a skill for quality issues or report a skill failure | | active |
| Create or update a GitHub issue | | active |
| Solve / implement a GitHub issue | | experimental |
| Plan or break down an issue into sub-tasks | | experimental |
| Address PR review comments | | experimental |
| Review a dependency update PR | | experimental |
| 意图 | 技能 | 状态 |
|---|---|---|
| 查找、安装、更新、移除、同步或维护技能 | | 已激活 |
| 创建、编写或改进技能 | | 已激活 |
| 检查技能的质量问题或上报技能故障 | | 已激活 |
| 创建或更新GitHub议题 | | 已激活 |
| 解决/实现GitHub议题 | | 实验性 |
| 规划或将议题拆解为子任务 | | 实验性 |
| 处理PR评审意见 | | 实验性 |
| 评审依赖更新PR | | 实验性 |
Loop prevention
循环预防
This skill is a top-level router. It must never re-route back to itself. If you arrived here from another Fusion skill, do not redirect back to that skill — answer directly or state that the intent is out of scope.
本技能是顶层路由器,绝不能将请求重新路由回自身。若你是从其他Fusion技能跳转至此,请勿重定向回该技能——直接回答问题或说明该意图超出范围。
Workflow
工作流程
- Identify intent from the user's request.
- Call to confirm which skill handles it and whether it is installed.
mcp_fusion_skills- If MCP is unavailable: use the routing table above as the sole source of truth. Do not guess or hallucinate skill names.
- If installed: redirect the user to invoke that skill directly.
- If not installed but available (active or experimental): name the skill, state what it does in one sentence, note if experimental, and give the install command:
npx -y skills add equinor/fusion-skills <skill-name> - If the skill is experimental: add a note: "This skill is experimental and may change. Install at your own risk."
- If intent doesn't match any routing entry: say so and suggest the user describe their goal differently, or use discovery to search for a matching skill.
fusion-skills - If intent is still unclear after reading the request, ask one conversational question:
"Are you looking to manage skills, create an issue, work on an issue, or review a PR?"
- 从用户请求中识别意图。
- 调用确认处理该意图的技能及其是否已安装。
mcp_fusion_skills- 若MCP不可用: 以上述路由表作为唯一参考依据,切勿猜测或虚构技能名称。
- 若已安装: 引导用户直接调用该技能。
- 若未安装但可用(已激活或实验性): 告知技能名称、用一句话说明其功能、标注是否为实验性,并提供安装命令:
npx -y skills add equinor/fusion-skills <skill-name> - 若为实验性技能: 添加备注:“该技能为实验性版本,可能会发生变更。请谨慎安装。”
- 若意图与任何路由条目不匹配: 告知用户这一点,并建议用户换种方式描述目标,或使用的发现功能搜索匹配的技能。
fusion-skills - 若读取请求后仍无法明确意图,提出一个对话式问题:
"你是想要管理技能、创建议题、处理议题还是评审PR?"
Safety
安全规范
- No secrets or credentials.
- No GitHub mutations without confirmation.
- No remote script execution.
- No invented skill names.
- 不处理机密信息或凭证。
- 未经确认,不得对GitHub进行任何修改操作。
- 不执行远程脚本。
- 不虚构技能名称。