Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

fusion-help-apifusion help API 搜索

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

3,854

周安装

159

GitHub Stars

公开资料未说明

下载量

1,259
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/equinor/fusion-skills --skill fusion-help-api

简介

用于辅助 API 设计与接口文档编写工作。

  • 适合梳理 endpoint 结构、生成 OpenAPI 草稿或检查字段命名。
  • 需结合实际业务语义确认鉴权方式与分页规则。
  • 避免凭空补全字段,优先从现有 schema 或样例提取事实。
  • fusion-help-api 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Fusion Help API

Use this skill when a developer or admin needs to interact directly with the Fusion Help REST API — whether to read help content in their own app, build custom tooling, or automate content management.

When to use

  • App developer wants to display help articles, FAQs, or release notes inside their Fusion app
  • Developer building a custom CLI or automation script to manage help content
  • Admin wants to programmatically create, update, or delete help documentation
  • Developer needs to search or suggest help content from their application
  • Someone wants to understand the Help API endpoints, authentication, or data models
  • Building an integration that reads help content for another system

When not to use

  • Using the fhelp CLI tool to sync markdown docs (use the fusion-help-docs skill instead)
  • Modifying the Fusion.Services.Help backend service code
  • General REST API questions unrelated to Help

Required inputs

InputRequiredDescription
Use caseYesReading content, managing content, or searching
App keyFor scoped queriesThe Fusion app key to read/manage help for
Target environmentYesci, fqa, tr, or fprd
Auth contextYesUser token (interactive) or service principal (automation)

Instructions

1. Discover the Help API base URL

The Help API is registered in the Fusion service discovery. Resolve the URL dynamically or use the known patterns:

EnvironmentBase URL
cihttps://help.ci.api.fusion-dev.net
fqahttps://help.fqa.api.fusion-dev.net
fprdhttps://help.api.fusion.equinor.com

Dynamic discovery (recommended for production tooling):

GET https://discovery.fusion.equinor.com/service-registry/environments/{env}/services

Look for the service with key: "help" in the response. Use the uri field as the base URL.

2. Authentication

All endpoints require a valid Azure AD bearer token. Token audiences and code samples for frontend, backend, and CLI are in references/authentication.md.

Quick reference — token audiences:

EnvironmentResource ID (audience)
ci, fqa, tr5a842df8-3238-415d-b168-9f16a6a6031b/.default
fprd97978493-9777-4d48-b38a-67b0b9cd88d2/.default

3. Authorization levels

ActionWho can do it
Read articles, FAQs, release notes, searchAny authenticated Fusion user
Create / Update / Delete articles, FAQs, release notesApp admin, trusted app, or Fusion.Help.FullControl
Upload assets (images)App admin, trusted app, or Fusion.Help.FullControl
View changelog (global)Fusion.Help.FullControl only
View changelog (per app)App admin or Fusion.Help.FullControl

4. Call the API

Endpoints are versioned — include ?api-version=1.0 in requests. Resources: Articles, FAQs, Release Notes, Assets, Search/Suggest, Changelog.

For full CRUD details, request/response bodies, OData filters, and validation rules see references/api-endpoints.md.

For a compact endpoint matrix and OData cheat sheet see references/api-quick-reference.md.

For detailed response model schemas see references/response-models.md.

5. Integration patterns

Ready-to-use code samples for common scenarios (React component, release notes banner, FAQ search, C# backend automation, Python scripting) are in references/integration-patterns.md.

Expected output

When this skill completes, the user should have:

  • Working code to authenticate and call the Help API
  • Correct endpoint URLs and query parameters for their use case
  • Understanding of the response models and OData query options
  • For admin use cases: correct request bodies for create/update/delete operations
  • For integration patterns: sample code in the relevant language/framework

Safety & constraints

  • Read-only endpoints are safe for any authenticated user — no admin permissions needed
  • Write operations require app admin, trusted application, or Fusion.Help.FullControl
  • Deleted articles/FAQs/release notes are soft-deleted — their slugs cannot be reused
  • The sourceSystem field tracks which tool created a record — mixing source systems for the same slug will cause the fhelp CLI to refuse updates (unless --no-validation is used)
  • Always test against ci environment before targeting fprd (production)
  • Do not hardcode bearer tokens — always use DefaultAzureCredential or equivalent token providers
  • Image uploads must be PNG format; the API processes them into WebP for serving

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.72%
按下载量换算462

Claude

27.44%
按下载量换算345

Cursor

19.23%
按下载量换算242

Gemini CLI

8.29%
按下载量换算104

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills