Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

fusion-backend-dev融合后端开发

Agent Skill

fusion-backend-dev 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

816

周安装

33

GitHub Stars

公开资料未说明

下载量

256
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:fusion-backend-dev(融合后端开发)
来源仓库:https://github.com/equinor/fusion-skills
仓库路径:skills/fusion-backend-dev
安装命令:
npx skills add https://github.com/equinor/fusion-skills --skill fusion-backend-dev
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/equinor/fusion-skills --skill fusion-backend-dev

简介

用于查找融合后端开发相关的架构模式与技术方案。

  • 适合在 API 设计与服务集成时获取参考实现。
  • 可结合 Equinor 技术栈了解特定业务场景适配方式。
  • 建议在使用前确认与现有系统的兼容性要求。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • fusion-backend-dev 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Fusion Backend Consumption

When to use

Use this skill when you need to understand how Fusion backend services work, what APIs are available, how to integrate with them, or understand the architectural patterns behind them.

Typical triggers:

  • "How do I call the People API?"
  • "Show me an example of how the authorization pattern works"
  • "What's the contract for the Org service?"
  • "How do services handle validation errors?"
  • "What async/messaging patterns does Fusion use?"
  • "Can I see a reference implementation of a CQRS handler?"
  • "How do services integrate with external APIs?"
  • "What authentication/authorization requirements do I need to know?"
  • "Show me how events flow through the system"
  • "What's the pattern for cross-service calls?"
  • "How should I structure my API client?"
  • "Where should I call the Context API?"
  • "What's the difference between a command and a query in Fusion?"

Implicit triggers:

  • User is building a frontend/client app and needs to understand backend contracts
  • User is integrating with Fusion APIs and needs patterns
  • User is designing an architecture and wants to understand backend best practices
  • User wants to learn from existing Fusion service implementations

When not to use

Do not use this skill for:

  • Creating or modifying backend services — those are backend service development tasks (use the service-specific repo skill, not this one)
  • Adding new endpoints or API operations — backend service development
  • Database schema changes or migrations — backend development
  • Authorization requirement definitions — backend development (this skill shows what exists, not defining new requirements)
  • Pure architecture discussions without code references — use fusion-research or ADR-focused skills instead
  • Selecting between Fusion Framework alternatives — use fusion-research or fusion-app-react-dev instead

Required inputs

Mandatory

  • What you're trying to do: clear description of the integration point, use case, or pattern you're exploring
  • Your role/context: Are you building a frontend app? Integrating externally? Designing architecture?

Conditional

  • When comparing patterns: which two options you're deciding between
  • When consuming an API: what operation/scenario (CRUD, async, real-time, etc.)
  • When integrating: external system name and direction of flow (calling out vs being called)

Instructions

Step 1 — Clarify consumption context

Before searching for code, understand what you need:

  1. Integration point: Are you calling a backend API? Reading event messages? Implementing a webhook? Integrating with an external system?
  2. Your boundaries: Are you a frontend developer? Backend developer in another service? External integrator? Architect?
  3. Scope of understanding: Do you need a single API contract? A full pattern? A reference implementation? Architectural tradeoffs?

Use assets/follow-up-questions.md if the user's intent is unclear.

Step 2 — Search for reference implementation

Use mcp_fusion_search_backend_code to locate existing patterns:

  1. Call with high-level intent: "How People service exposes authorization" or "Cross-service API integration patterns"
  2. Start with top: 3-5 results
  3. Capture metadata.repository, metadata.service, metadata.filePath
  4. Extract minimal code snippets that show the pattern (method signature, type contract, authorization check)
  5. If results are unclear, refine once:

- Add specific service name or interface - Narrow to specific layer (controller, handler, client interface) - Try a different phrase focusing on the outcome rather than implementation details

Step 3 — Explain the pattern

Use the evidence from Step 2 to build your answer:

  1. State the pattern clearly: What is the service doing? What contract does it expose?
  2. Show the reference code: Quote the relevant snippet with file path and line range
  3. Explain the constraints: What preconditions? Authorization? Error handling? Async behavior?
  4. Relate to your use case: How would you apply this pattern to your problem?
  5. Surface tradeoffs or alternatives if they exist:

- "This service uses direct HttpClient; others use typed clients" - "Authorization is done via requirements; some services use policies" - "Events are published via Service Bus; check if your scenario needs async vs direct"

Step 4 — Verify completeness

Before ending the answer, check:

  • User understands the contract (inputs, outputs, errors)
  • User sees a real code reference (not invented)
  • User knows where the code lives (repository, service, file path)
  • User knows any prerequisites (authentication, configuration, dependencies)
  • User has enough context to implement or integrate

If uncertainty remains, flag it explicitly: *"I found the authorization pattern but not the exact configuration for service-to-service calls; you may want to check the Startup.cs configuration directly."*

Reference guides

See references/ for deeper pattern documentation:

  • api-contracts.md — Fusion service API contracts and versioning
  • authorization-patterns.md — Authentication, authorization requirements, role-based access
  • validation-patterns.md — Input validation, error responses, business rules
  • async-patterns.md — Events, service bus, domain notifications, eventual consistency
  • integration-patterns.md — Cross-service calls, external APIs, webhook handling
  • cqrs-reference.md — CQRS handlers, commands, queries, notifications structure

Assets

  • assets/follow-up-questions.md — Clarifying questions for ambiguous requests
  • references/integration-patterns.md — Common integration scenarios and which patterns apply

Safety & constraints

Never:

  • Describe real backend API behavior or repository-specific implementation details as fact unless you can verify them in retrieved source code or clearly cited repository documentation
  • Claim a pattern exists in a repository when search returns no evidence
  • Present illustrative pseudo-code, C#, JSON, or payload examples as if they were retrieved source code
  • Suggest modifying a backend service — that's out of scope

Always:

  • Clearly label illustrative examples as examples/pseudo-code when they are explanatory rather than retrieved from source
  • Capture and cite repository, file path, and line references when showing real code or summarizing behavior evidenced by MCP search results
  • State explicitly which repository the pattern comes from
  • Note when a pattern exists in one service but not others (services have variation)
  • Offer to escalate to fusion-services-develop skill (available in the fusion-core-services repo) if the user wants to implement changes

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.22%
按下载量换算90

Claude

28.82%
按下载量换算74

Cursor

18.98%
按下载量换算49

Gemini CLI

10.36%
按下载量换算27

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills