fusion

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Fusion

Fusion

核心网关

Main gate. Identify intent, route to the right Fusion skill.
Requires
fusion-skills
for skill lifecycle operations. If
fusion-skills
is not installed, suggest:
npx -y skills add equinor/fusion-skills fusion-skills
识别用户意图,路由至对应的Fusion技能。
技能生命周期操作需要依赖
fusion-skills
。若未安装
fusion-skills
,建议执行:
npx -y skills add equinor/fusion-skills fusion-skills

First-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

路由规则

IntentSkillStatus
Find, install, update, remove, sync, or greenkeep skills
fusion-skills
active
Create, author, or improve a skill
fusion-skills
active
Inspect a skill for quality issues or report a skill failure
fusion-skills
active
Create or update a GitHub issue
fusion-issue-authoring
active
Solve / implement a GitHub issue
fusion-issue-solving
experimental
Plan or break down an issue into sub-tasks
fusion-issue-task-planning
experimental
Address PR review comments
fusion-github-review-resolution
experimental
Review a dependency update PR
fusion-dependency-review
experimental
意图技能状态
查找、安装、更新、移除、同步或维护技能
fusion-skills
已激活
创建、编写或改进技能
fusion-skills
已激活
检查技能的质量问题或上报技能故障
fusion-skills
已激活
创建或更新GitHub议题
fusion-issue-authoring
已激活
解决/实现GitHub议题
fusion-issue-solving
实验性
规划或将议题拆解为子任务
fusion-issue-task-planning
实验性
处理PR评审意见
fusion-github-review-resolution
实验性
评审依赖更新PR
fusion-dependency-review
实验性

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

工作流程

  1. Identify intent from the user's request.
  2. Call
    mcp_fusion_skills
    to confirm which skill handles it and whether it is installed.
    • If MCP is unavailable: use the routing table above as the sole source of truth. Do not guess or hallucinate skill names.
  3. If installed: redirect the user to invoke that skill directly.
  4. 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>
  5. If the skill is experimental: add a note: "This skill is experimental and may change. Install at your own risk."
  6. If intent doesn't match any routing entry: say so and suggest the user describe their goal differently, or use
    fusion-skills
    discovery to search for a matching skill.
  7. 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?"
  1. 从用户请求中识别意图。
  2. 调用
    mcp_fusion_skills
    确认处理该意图的技能及其是否已安装。
    • 若MCP不可用: 以上述路由表作为唯一参考依据,切勿猜测或虚构技能名称。
  3. 若已安装: 引导用户直接调用该技能。
  4. 若未安装但可用(已激活或实验性): 告知技能名称、用一句话说明其功能、标注是否为实验性,并提供安装命令:
    npx -y skills add equinor/fusion-skills <skill-name>
  5. 若为实验性技能: 添加备注:“该技能为实验性版本,可能会发生变更。请谨慎安装。”
  6. 若意图与任何路由条目不匹配: 告知用户这一点,并建议用户换种方式描述目标,或使用
    fusion-skills
    的发现功能搜索匹配的技能。
  7. 若读取请求后仍无法明确意图,提出一个对话式问题:
    "你是想要管理技能、创建议题、处理议题还是评审PR?"

Safety

安全规范

  • No secrets or credentials.
  • No GitHub mutations without confirmation.
  • No remote script execution.
  • No invented skill names.
  • 不处理机密信息或凭证。
  • 未经确认,不得对GitHub进行任何修改操作。
  • 不执行远程脚本。
  • 不虚构技能名称。