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

fusion-developer-app融合开发者应用程序

Agent Skill

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

总安装

3,894

周安装

156

GitHub Stars

公开资料未说明

下载量

1,260
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/equinor/fusion-skills --skill fusion-developer-app

简介

用于查找融合开发者应用的功能特性与使用指南。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适合在集成自定义功能时参考官方 API 文档。
  • 可结合应用内帮助内容了解权限申请与配置流程。
  • 建议在使用敏感操作前完成身份认证与授权设置。
  • fusion-developer-app 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Fusion App Development

When to use

Use this skill when developing features, components, hooks, services, or types for a Fusion Framework React application.

Typical triggers:

  • "Add a component for..."
  • "Create a hook that..."
  • "Wire up the API"
  • "Build a page for..."
  • "Add a service to fetch..."
  • "Configure a Fusion module"
  • "Which Fusion Framework hook should this app use?"
  • "What is the right package or module for this app integration?"
  • "Find the correct Fusion Framework example before implementing this app change"
  • "Persist this preference as an app setting"
  • "Add bookmark support for this view"
  • "Read runtime config or environment variables"
  • "Instrument this page with analytics"
  • "Add a feature flag to this app"
  • "How do I use the useFeature hook in a Fusion app?"
  • "Implement a feature for..."
  • "Add a chart to this page"
  • "How do I use AG Charts in my Fusion app?"
  • "Create a dashboard with charts"

Implicit triggers:

  • The user asks to build something in src/
  • The user references Fusion Framework modules, EDS components, Fusion React components (@equinor/fusion-react-*), or styled-components patterns
  • The user references app settings, bookmarks, analytics, or app.config.ts
  • The user wants to add a new route, page, or data-fetching layer
  • The user references @equinor/fusion-framework-react-ag-charts, chart.js, react-chartjs-2, or charting/visualization in a Fusion app

When not to use

Do not use this skill for:

  • Issue authoring or triage (use fusion-issue-authoring)
  • Skill authoring (use fusion-skill-authoring)
  • Backend/service changes (separate repository)
  • CI/CD pipeline or deployment configuration
  • Architecture documentation (use ADR template)

When the request is primarily about Fusion Framework package ownership, hook behavior, or example discovery rather than app implementation, use the companion skill fusion-research first and then return here for code changes.

Required inputs

Mandatory

  • What to build: a clear description of the feature, component, hook, or service
  • Where it fits: which layer (component, hook, service, type) and any parent/sibling context

If the user's request is ambiguous or missing critical details, consult assets/follow-up-questions.md for domain-specific clarifying questions before implementing.

Conditional

  • API endpoint details when the feature involves data fetching
  • Design/layout specifics when building visual components
  • Fusion module name when extending module configuration
  • Whether state should persist per-user, be shareable via bookmark, or stay runtime-only

Instructions

Step 1 — Discover project conventions

Before writing any code, inspect the target repository to learn its specific setup:

  1. Read package.json to identify the package manager (bun/pnpm/npm), available scripts, and installed dependencies.
  2. Read tsconfig.json to confirm TypeScript settings and path aliases.
  3. Scan src/ to understand the current directory layout and layer structure.
  4. Check for ADRs (docs/adr/) or a contribute/ directory for project-specific code standards.
  5. Check for formatter/linter config (biome.json,.eslintrc, prettier config).
  6. Read app.config.ts and app.manifest.ts to understand existing endpoint and environment setup.
  7. If the implementation depends on uncertain Fusion Framework behavior, exact package ownership, or cookbook examples, delegate that research to fusion-research before writing code.

Adapt all subsequent steps to the conventions discovered here. The patterns in references/ are defaults — defer to project-specific rules when they differ.

Step 2 — Plan the implementation

If scaffolding a new app from scratch, use assets/new-app-checklist.md as a progress tracker.

  1. Break the work into discrete files/changes.
  2. Map each piece to the correct directory. A typical Fusion app uses:

- src/components/ — React components (presentation layer) - src/hooks/ — Custom React hooks (state and side-effect logic) - src/api/ — API clients, data transforms, business logic - src/types/ — TypeScript interfaces, type aliases, enums - src/routes.ts — Route definitions (when using Fusion Router) - src/config.ts — Fusion module configuration - src/App.tsx — Root component, layout shell

  1. Identify shared types early — define them before referencing.
  2. If the project uses routing, follow references/using-router.md for the DSL and page patterns.
  3. If the project uses a different structure, follow it.

Step 3 — Implement following code conventions

Follow the project's code standards (discovered in Step 1). For all convention rules — naming, TSDoc, inline comments, type patterns, code style, and error handling — defer to the fusion-code-conventions skill.

When convention questions arise during implementation, invoke fusion-code-conventions directly. It routes to the correct language agent and returns the authoritative rule with an example.

Step 4 — Style with styled-components, EDS, and Fusion React components

Follow references/styled-components.md, references/styling-with-eds.md, and references/using-fusion-react-components.md:

  • Use styled-components for custom styling — this is the Fusion ecosystem convention.
  • Do not introduce CSS Modules, global CSS files, Tailwind, or alternative CSS-in-JS unless the project explicitly uses them.
  • Use the Styled object pattern for co-located styled components.
  • Prefer EDS components from @equinor/eds-core-react as the base for standard UI elements.
  • Use EDS design tokens (CSS custom properties or @equinor/eds-tokens) for colors, spacing, and typography.
  • Extend EDS components with styled() when customization is needed.
  • Use Fusion React components (@equinor/fusion-react-*) for domain-specific needs not covered by EDS — person display/selection, Fusion side sheets, and progress indicators.
  • Inline style props are acceptable for one-off tweaks only.

Step 5 — Wire up data fetching (when applicable)

Follow references/configure-services.md, references/using-react-query.md, and references/configure-mocking.md for data-fetching and local dev mocking patterns:

  • Register HTTP clients via configureHttpClient in config.ts or via app.config.ts endpoints.
  • Access clients in components with useHttpClient(name) from @equinor/fusion-framework-react-app/http.
  • **Always prefer @equinor/fusion-framework-react-app/* hooks** (useHttpClient, useCurrentContext, etc.) over direct module access. Reserve framework.modules.* for non-React contexts like route loaders.
  • When the project uses React Query (@tanstack/react-query), create thin custom hook wrappers around useQuery.
  • Use query keys derived from API path + parameters.
  • Keep client UI state in React state/context, not in server-state libraries.

Step 6 — Configure Fusion modules (when applicable)

Identify which module the user needs, then read only the matching reference:

NeedReference
HTTP clients / API integrationreferences/configure-services.md
Context modulereferences/using-context.md
Router and pagesreferences/using-router.md
AG Gridreferences/using-ag-grid.md
AG Charts (standalone)references/using-ag-charts.md
AG Grid integrated chartsreferences/using-ag-grid-charts.md
EDS + Fusion React componentsreferences/using-fusion-react-components.md
Settingsreferences/using-settings.md
Bookmarksreferences/using-bookmarks.md
Analyticsreferences/using-analytics.md
Runtime config / environmentreferences/using-assets-and-environment.md
Feature flagsreferences/using-feature-flags.md
General framework modulesreferences/using-framework-modules.md
  • Add module setup in config.ts using the AppModuleInitiator callback.
  • Access modules in components via hooks: useAppModule, useHttpClient, useCurrentContext.
  • Register HTTP client endpoints in app.config.ts when adding new API integrations.
  • Enable navigation with enableNavigation in config.ts when the app uses routing.
  • Define routes using the Fusion Router DSL (layout, index, route, prefix) for automatic code splitting.
  • When the right framework API is unclear, use fusion-research to gather a source-backed answer before choosing an implementation pattern.

Step 7 — Validate

Use assets/review-checklist.md as a comprehensive post-generation checklist.

  1. Run the project's typecheck command (e.g. bun run typecheck or pnpm typecheck) — zero errors required.
  2. Run the project's lint/format check — zero violations.
  3. Verify every new exported symbol has TSDoc.
  4. Confirm styling follows the project's conventions.
  5. Confirm no new dependencies unless justified or explicitly approved.

Expected output

  • New or modified source files in src/ following the project's layer structure.
  • All files pass typecheck and lint.
  • Every exported function, component, hook, and type has TSDoc.
  • Styling follows project conventions (typically styled-components + EDS + Fusion React components where applicable).
  • A brief summary of what was created or changed and why.

Helper agents

This skill includes four optional helper agents in agents/. Use them for focused review after implementing changes, or consult them during implementation for specific guidance. If the runtime does not support skill-local agents, apply the same review criteria inline.

This skill also has a companion skill, fusion-research, for source-backed Fusion ecosystem research. Use it when implementation work is blocked by uncertainty about framework behavior, EDS component APIs, or skill catalog questions.

  • agents/framework.md — reviews Fusion Framework integration: module configuration, HTTP clients, bootstrap lifecycle, runtime config, settings, bookmarks, analytics, and hook usage. Prefers mcp_fusion_search_framework for API lookups; falls back to mcp_fusion_search_docs for general platform guidance. Consult when wiring up config.ts, app.config.ts, or any component that accesses framework modules.
  • agents/styling.md — reviews EDS component selection, styled-components patterns, design token usage, and accessibility. Prefers mcp_fusion_search_eds for component docs, props, and examples. Consult when building or modifying visual components.
  • agents/data-display.md — reviews data display implementation: choosing between AG Grid (tabular) and AG Charts (visual), module setup, column definitions, chart options, integrated charting, and combined grid+chart pages. Prefers mcp_fusion_search_framework for AG Grid and AG Charts package lookups and cookbook examples. Consult when building grids, charts, dashboards, or any data presentation view. Use assets/charts-decision-matrix.md for chart library selection guidance.
  • agents/code-quality.md — delegates convention checks (naming, TSDoc, TypeScript strictness, intent comments) to fusion-code-conventions, then aggregates findings in Fusion app context. Run on every new or modified file before finalizing.

Safety & constraints

  • No new dependencies without explicit user approval.
  • No direct DOM manipulation — use React patterns.
  • No any types — TypeScript strict mode is standard for Fusion apps.
  • No secrets or credentials in source files.
  • Conventional commits for all changes (feat:, fix:, refactor:, etc.).
  • Do not modify infrastructure files (docker-compose, CI config) unless explicitly asked.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.2%
按下载量换算444

Claude

27.66%
按下载量换算349

Cursor

18.59%
按下载量换算234

Gemini CLI

10.29%
按下载量换算130

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills