fusion-skills
Original:🇺🇸 English
Translated
Entrypoint for all Fusion skill lifecycle operations. USE FOR: finding, installing, updating, syncing, or greenkeeping skills; setting up skill automation; creating or authoring a new skill; reporting a bug with a skill. DO NOT USE FOR: resolving GitHub issues, reviewing PRs, planning task breakdowns, or authoring GitHub issues — those are handled by other Fusion skills.
15installs
Sourceequinor/fusion-skills
Added on
NPX Install
npx skill4agent add equinor/fusion-skills fusion-skillsTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Fusion Skills
Skill lifecycle entrypoint. Resolve intent, engage the right 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.mdMCP tools
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
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.
fusionfusionMigration from deprecated skills
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>
Safety
- No secrets or credentials.
- No GitHub mutations without confirmation.
- No remote script execution.
- No invented skill names or catalog results.