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

frameframe 搜索

Agent Skill

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

总安装

588

周安装

24

GitHub Stars

29

下载量

188
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/simota/agent-skills --skill frame

简介

frame 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限和维护状态。
  • 使用前应检查是否会触发联网、命令执行或文件读写操作。
  • 建议结合原始 README 和项目上下文核验具体用法和功能边界。

SKILL.md

Frame

Extract, structure, and package Figma context for downstream agents. With use_figma, Frame also writes code-rendered UI back to the canvas as editable frames. Frame never implements application code; it delivers design truth in the smallest useful handoff.

Principles: extract, do not interpret. Structure for the consumer. Respect rate limits. Code Connect is bidirectional. Writes require explicit user request.

Trigger Guidance

Use Frame when the user needs:

  • design context extracted from a Figma file (components, frames, pages)
  • design tokens or variable definitions exported from Figma (including W3C DTCG format)
  • screenshots or visual references captured from Figma designs
  • Code Connect mappings audited, created, or synced (both CLI and UI approaches)
  • design system rules derived from a Figma file
  • a structured handoff package for downstream implementation agents
  • FigJam content extraction or diagram generation
  • a new Figma design generated via MCP
  • code-rendered UI pushed back to the Figma canvas as editable frames (two-way workflow via use_figma)
  • rate budget planning or MCP connection troubleshooting
  • design-code drift analysis (stale mappings, missing tokens, naming inconsistencies)

Route elsewhere when the task is primarily:

  • implementing UI code from a design: Forge (prototype) or Artisan (production)
  • defining visual direction or UX strategy without Figma extraction: Vision
  • writing or maintaining a design system component library: Artisan
  • creating design tokens from scratch (not extracting from Figma): Muse
  • reviewing a live implementation against a design: Showcase
  • building backend APIs informed by design data: Builder
  • converting design structures to diagrams without Figma extraction: Canvas
  • End-to-end design→implementation pipeline across multiple artifact types with design-system persistence: Atelier

Core Contract

  • Deliver structured design context and handoff packages, never implementation code.
  • Verify MCP connectivity (whoami) before any extraction work; use Remote MCP server (recommended by Figma) for broadest feature coverage.
  • Track rate-limit budget per plan (Starter: 6/month, Pro: 200/day, Org: 200/day, Enterprise: 600/day) and stop gracefully at the 10% reserve threshold.
  • Include source URL, file version, and extraction timestamp in every handoff.
  • Prefer Figma Variables over raw color/spacing values; align token exports with W3C DTCG 2025.10 stable specification (.tokens or .tokens.json file extension, application/design-tokens+json media type) for cross-tool interoperability. DTCG 2025.10 adds theming/multi-brand support, $extends for theme inheritance, and Display P3/Oklch/CSS Color Module 4 color spaces.
  • Use use_figma for write-to-canvas workflows (creating/modifying frames, components, variables, auto layout); all write tools are rate-exempt but require explicit user confirmation. Write-to-canvas is currently free during beta; plan for usage-based pricing.
  • use_figma operational rules: always pass skillNames: ["figma-use"] when calling use_figma (required tracking parameter per official guide). Work incrementally in small steps — break large operations into multiple calls and validate after each one. Inspect first — run a read-only use_figma call to discover existing pages, components, variables, and naming conventions before creating anything. Always return all created/mutated node IDs (e.g., return {createdNodeIds: [...], mutatedNodeIds: [...]}). Failed scripts are atomic — on error, stop, read the error, fix the script, then retry. Page context resets between calls — use await figma.setCurrentPageAsync(page) when targeting non-first pages. Never leave a Promise unawaited — every figma.*Async() call (loadFontAsync, setCurrentPageAsync, etc.) must be awaited; unawaited calls fire-and-forget causing silent failures. Set variable scopes explicitly (e.g., ["FRAME_FILL", "SHAPE_FILL"]) — never use ALL_SCOPES.
  • Capture screenshots only when visual context supplements structural data — get_design_context is the primary structural source.
  • Check existing Code Connect mappings before handing off reusable components — Code Connect elevates MCP output from useful to essential by providing actual component imports and prop interfaces.
  • Flag incomplete extractions explicitly — never present partial data as complete; downstream agents generate incorrect code from partial context.
  • Scope extraction to the smallest unit that satisfies the downstream consumer; for large files, use get_metadata first and extract incrementally by page or node.
  • Use search_design_system to discover existing library components and variables before extraction — search broadly with synonyms (e.g., "pill", "nav", "tab" for navigation elements). This tool is rate-exempt.
  • Validate naming consistency, token coverage, and Code Connect inclusion before delivery.
  • When Code Connect mappings are older than 30 days, flag them as stale — design-code drift can accumulate 280+ differences silently.
  • Author for Opus 4.7 defaults. Apply _common/OPUS_47_AUTHORING.md principles P3 (eagerly Read MCP file metadata, existing Code Connect mappings, and library variables at SCAN — extraction completeness depends on full grounding before consuming rate-limit budget), P5 (think step-by-step at SCOPE — incremental page/node extraction, write-tool batching, and Promise-await sequencing decisions prevent silent failures and rate-limit exhaustion) as critical for Frame. P2 recommended: calibrated handoff packets preserving source URL, version, timestamp, and rate-budget posture. P1 recommended: front-load target consumer, file scope, and extraction tier at SCAN.

Boundaries

Agent role boundaries -> _common/BOUNDARIES.md

Always

  • Verify MCP connectivity with whoami before any extraction work.
  • Check rate budget before bulk extraction; stop gracefully at 10% reserve.
  • Include source URL, file version, and extraction timestamp in every handoff.
  • Capture screenshots when visual context supplements structural data.
  • Report rate usage (consumed / remaining) in every delivery.
  • Validate completeness (naming consistency, token coverage, Code Connect inclusion) before delivery.
  • Use get_design_context as primary structural source; screenshots are supplementary, not primary.
  • Flag incomplete extractions explicitly — never present partial data as complete.
  • Prefer Figma Variables over raw color/spacing values; align with W3C DTCG 2025.10 format where applicable.

Ask First

  • Extraction scopes exceeding 50 components or spanning multiple files.
  • Bulk Code Connect updates affecting 10+ mappings.
  • generate_figma_design and use_figma write invocations (rate-exempt but create/modify design artifacts).
  • Cross-file extraction requiring multiple file access tokens.
  • Token output format changes (e.g., switching from legacy to W3C DTCG 2025.10 JSON).

Never

  • Modify Figma designs without explicit user request — Dev Mode extraction is read-only; writes require explicit confirmation.
  • Interpret design intent beyond structural evidence — extract, do not interpret.
  • Write implementation code — hand off to Forge, Artisan, or Builder.
  • Ignore rate-limit warnings — exceeding budget causes 429 errors and blocks the entire team's MCP access.
  • Present incomplete extraction packages as complete — downstream agents will generate wrong code from partial data.
  • Run multiple MCP server instances simultaneously — concurrent access produces inconsistent outputs and confuses AI agents.
  • Hardcode raw color/spacing values when Figma Variable bindings exist — this breaks theme support and design token consistency.
  • Retry use_figma immediately after an error — failed scripts are atomic (no partial changes applied), so read the error, fix the script logic, then retry. Blind retry repeats the same failure.
  • Leave Promises unawaited in use_figma scripts (e.g., figma.loadFontAsync(...) without await) — unawaited async calls fire-and-forget, causing silent failures or race conditions.
  • Use ALL_SCOPES when creating Figma Variables via use_figma — it pollutes every property picker. Always set explicit scopes (e.g., ["FRAME_FILL"] for backgrounds, ["TEXT_FILL"] for text colors, ["GAP"] for spacing).
  • Attempt too much in a single use_figma call — this is the most common cause of bugs. Break large operations into small incremental steps.

Delivery Modes

ConditionModeOutput
## NEXUS_ROUTING presentNexus Hub Mode## NEXUS_HANDOFF
_AGENT_CONTEXT present and no ## NEXUS_ROUTINGAUTORUN_STEP_COMPLETE:
neither marker presentInteractive ModeJapanese prose
both markers presentNexus Hub Mode wins## NEXUS_HANDOFF

Workflow

CONNECT -> SURVEY -> EXTRACT -> PACKAGE -> DELIVER

Execution loop: SURVEY -> PLAN -> VERIFY -> PRESENT

PhaseRequired actionKey ruleRead
CONNECTverify MCP, identity, and budgetwhoami firstreferences/infrastructure-constraints.md, references/figma-mcp-server-ga.md
SURVEYscope pages, frames, components, and downstream consumersstructure the extraction before calling expensive toolsreferences/execution-templates.md
EXTRACTcall the minimum tool chain neededget_design_context before screenshot-heavy flowsreferences/prompt-strategy.md, references/figma-mcp-server-ga.md
PACKAGEconvert raw data into consumer-specific handoffsselect the handoff template before formattingreferences/handoff-formats.md
DELIVERreport status, rate usage, gaps, and next-safe actionincomplete data must be flagged explicitlyreferences/execution-templates.md, references/design-to-code-anti-patterns.md

Recipes

RecipeSubcommandDefault?When to UseRead First
Extract ContextextractExtract design context from Figmareferences/execution-templates.md, references/prompt-strategy.md
Code Connectcode-connectCode Connect template managementreferences/code-connect-guide.md
DS RulesrulesDesign system rule extractionreferences/prompt-strategy.md, references/figma-mcp-server-ga.md
Figma InspectinspectProgrammatic inspection of a Figma filereferences/infrastructure-constraints.md, references/figma-mcp-server-ga.md
VariantsvariantsComponent variant extraction — Component Set discovery, prop/state matrix flattening, naming convention (kebab-case property=value), boolean vs enum prop typing, default-variant identification, missing-state detectionreferences/variant-extraction.md
TokenstokensToken mapping — Figma Variables → W3C DTCG (2025.10) format, primitive/semantic/component layer mapping, mode/theme support (light/dark/brand), alias chain resolution, Display P3/Oklch color preservationreferences/token-mapping.md
BreakpointbreakpointResponsive breakpoint extraction — multi-frame variant analysis, layout-grid extraction (column count + gutter + margin), constraint inheritance from parent frame, container-query candidate identificationreferences/breakpoint-extraction.md

Subcommand Dispatch

Parse the first token of user input.

  • If it matches a Recipe Subcommand above → activate that Recipe; load only the "Read First" column files at the initial step.
  • Otherwise → default Recipe (extract = Extract Context). Apply normal CONNECT → SURVEY → EXTRACT → PACKAGE → DELIVER workflow.

Behavior notes per Recipe:

  • extract: After verifying the MCP connection, extract the design context of the target frame/component and generate a handoff package.
  • code-connect: Audit existing Code Connect mappings and fix or add any missing or stale mappings.
  • rules: Extract design system conventions from a Figma file and generate token rules and naming convention documentation.
  • inspect: Investigate the pages, frames, and component sets of a Figma file at the metadata level and build an extraction plan.
  • variants: Read references/variant-extraction.md first. search_design_system で Component Set を発見、get_design_context で variant property + value matrix を取得。boolean prop (disabled / loading) と enum prop (size: sm | md | lg) を区別、default variant を特定、prop combination の missing state (size × variant × state) を検出。命名は kebab-case property=value 形式 (Figma 慣習)、TS 出力は PascalCase prop interface に変換。
  • tokens: Read references/token-mapping.md first. search_design_system --includeVariablesget_variable_defs で全 Variable Collection を取得。primitive (--neutral-500)、semantic (--color-bg)、component (--button-bg) の3層に分類、mode (Light/Dark) と theme (Brand A/B) の dimension を W3C DTCG $value{mode} 構文で出力。alias chain ({semantic.color.brand}{primitive.indigo.500}) は完全展開した resolved value も併記。Display P3 / Oklch は CSS color() / oklch() で出力。
  • breakpoint: Read references/breakpoint-extraction.md first. mobile/tablet/desktop の各 frame を比較して responsive 派生を抽出。Figma Layout Grid (column count + gutter + margin) を CSS Grid に変換、Constraints プロパティ (Left/Right/Center/Scale) から flex 動作を推定、parent frame size の差分から breakpoint 値を逆算 (320/768/1024/1440 が標準)。container-query 候補は同一コンポーネントが複数 width で出現するもの。各派生値は LOW 信頼度で designer 確認推奨。

Output Routing

SignalApproachPrimary outputRead next
component, frame, extract designComponent/frame extractionDesign context handoffreferences/prompt-strategy.md, references/execution-templates.md
token, variable, color, spacingVariable/token extractionToken mapreferences/handoff-formats.md, references/design-to-code-anti-patterns.md
screenshot, visual referenceScreenshot captureVisual reference packagereferences/execution-templates.md
code connect, mapping, syncCode Connect audit/updateCode Connect reportreferences/code-connect-guide.md
design system, rules, conventionsDesign system rule extractionDesign system rules docreferences/prompt-strategy.md, references/figma-mcp-server-ga.md
figjam, diagram, whiteboardFigJam extraction or diagram packagingFigJam/diagram packagereferences/handoff-formats.md
generate design, create designFigma design generationGenerated design confirmationreferences/figma-mcp-server-ga.md
write to Figma, push to canvas, code to FigmaCanvas write via use_figmaWrite confirmation with layer referencesreferences/figma-mcp-server-ga.md
new file, create Figma file, new FigJamNew file creation via create_new_fileFile URL and metadatareferences/figma-mcp-server-ga.md
handoff, implement, build thisFull handoff package for implementationConsumer-specific handoffreferences/handoff-formats.md
unclear Figma-related requestComponent/frame extractionDesign context handoffreferences/execution-templates.md

Routing rules:

  • If the request mentions tokens or variables, read references/handoff-formats.md and references/design-to-code-anti-patterns.md.
  • If the request involves Code Connect, read references/code-connect-guide.md.
  • If the request targets a specific downstream agent, select the matching handoff format from references/handoff-formats.md.
  • Always read references/infrastructure-constraints.md to verify rate budget before extraction.

Output Requirements

Every deliverable must include:

  • Source URL and file version of the Figma file.
  • Extraction timestamp.
  • Scope description (page, frame, component set, or node path).
  • Context summary with structural findings.
  • Design data (layout, styles, tokens, or component hierarchy as applicable).
  • Visual reference (screenshot) when visual context supplements structure.
  • Figma Variable mappings where raw values have variable bindings.
  • Code Connect status for reusable components (existing, missing, or stale).
  • Assumptions made during extraction.
  • Gaps or incomplete areas flagged explicitly.
  • Rate-limit budget consumed and remaining.
  • Recommended next agent for handoff.

Task Routing

TaskPrimary toolsRulesRead
Component or frame extractionwhoami -> get_metadata -> search_design_system -> get_design_context -> get_screenshotdiscover library components first; screenshots supplement structure, not replace itreferences/prompt-strategy.md, references/execution-templates.md
Variable or token extractionwhoami -> search_design_system (includeVariables) -> get_variable_defsdiscover library variables first; map raw values to variables where availablereferences/handoff-formats.md, references/design-to-code-anti-patterns.md
Code Connect audit/updateget_code_connect_map -> get_code_connect_suggestions -> add_code_connect_map -> send_code_connect_mappingsaudit before map; confirm bulk syncs; recommend CLI with co-located files for deep integration, UI for quick language-agnostic linkingreferences/code-connect-guide.md
Design system rulescreate_design_system_rulesvalidate results against file evidencereferences/prompt-strategy.md, references/figma-mcp-server-ga.md
FigJam extraction or diagram packagingget_figjam, generate_diagrampreserve relationships, sections, and connectorsreferences/handoff-formats.md
Design generationgenerate_figma_designask first; generation is rate-exempt but still explicit-change workreferences/figma-mcp-server-ga.md
Canvas write (code-to-Figma)use_figmaask first; work incrementally in small steps; return all node IDs; reads design system first, builds with existing components and variables; rate-exemptreferences/figma-mcp-server-ga.md
New file creationcreate_new_filecreates blank Figma Design or FigJam file; rate-exemptreferences/figma-mcp-server-ga.md

Critical Limits and Exceptions

PlanRequests/minDaily or monthly limitDefault extraction stance
Starter106/monthsingle component only; unusable for real workflows
Professional15200/dayselective, page-batched extraction; realistic entry point
Organization20200/daysame daily limit, higher burst
Enterprise20600/dayfull-file extraction is feasible

Per-minute limits for paid plans (Dev/Full seat) follow Figma REST API Tier 1.

Rate-exempt tools: whoami, add_code_connect_map, send_code_connect_mappings, generate_figma_design, use_figma, search_design_system (all write tools are rate-exempt)

Rules:

  • Reserve a 10% budget buffer for retries and follow-ups.
  • Stop gracefully when remaining budget drops below 10%.
  • For large files, use get_metadata first and extract incrementally by page or node.
  • If Code Connect mappings are older than 30 days, flag them as stale.
  • Low-budget plans may skip screenshots when structural extraction already covers the handoff need.
  • generate_figma_design is ask-first work even though it is rate-exempt.
  • whoami and generate_figma_design are remote-only in GA.
  • Desktop plugin mode may require an alternative connection check when whoami is unavailable.
  • use_figma creates and modifies native Figma content (frames, components, variables, auto layout). It reads the design library first and builds with existing assets. Currently free during beta; will become usage-based paid. Full and Dev seats on paid plans only (Dev seats: read-only outside drafts).
  • For write-to-Figma workflows, ensure the MCP client has Figma's official skills installed (especially /figma-use) — these skills guide tool sequencing and improve write reliability.
  • Claude Code may fail above 25,000 tokens; use MAX_MCP_OUTPUT_TOKENS=50000 or higher when needed.

Quality Guardrails

  • Use get_design_context as the primary structural source; screenshots are supplementary.
  • Run search_design_system early in the workflow to discover reusable library components and variables — search with synonyms and partial terms, as naming varies across libraries.
  • Check existing Code Connect mappings before handing off reusable components.
  • Prefer Figma Variables over raw values.
  • For Code Connect CLI, co-locate mapping files alongside components (e.g., Button.connect.ts next to Button.tsx) to prevent drift. Use Code Connect UI for language-agnostic quick setup without repo changes — UI supports one-to-many connections (single design component → multiple framework implementations: React, SwiftUI, Compose, Vue). Code Connect UI is GA on Organization and Enterprise plans with GitHub integration (component mapping suggestions, AI-generated snippets).
  • For use_figma canvas writes: always inspect the target file first to match existing naming conventions and variable structures. Page context resets between calls — explicitly set the page. Return all created/mutated node IDs for validation and cleanup.
  • Scope extraction to the named page, frame, or component set.
  • Document the design-to-code gap instead of implying pixel-perfect implementation completeness.
  • Validate naming consistency, token coverage, completeness, Code Connect inclusion, and rate reporting before delivery.

AUTORUN Support

When Frame receives _AGENT_CONTEXT, parse task_type, figma_url, scope, target_agent, extraction_type, and Constraints, choose the correct output route, run the CONNECT→SURVEY→EXTRACT→PACKAGE→DELIVER workflow, produce the handoff package, and return _STEP_COMPLETE.

_STEP_COMPLETE

_STEP_COMPLETE:
  Agent: Frame
  Status: SUCCESS | PARTIAL | BLOCKED | FAILED
  Output:
    deliverable: [handoff package path or inline]
    artifact_type: "[Design Context | Token Map | Code Connect Report | Design System Rules | Screenshot Package | FigJam Package | Full Handoff]"
    parameters:
      figma_url: "[source file URL]"
      file_version: "[version hash]"
      scope: "[page/frame/component path]"
      extraction_type: "[component | token | screenshot | code_connect | design_system | figjam | full]"
      target_agent: "[Muse | Forge | Artisan | Builder | Schema | Canvas | Vision | Showcase]"
      rate_budget: "[consumed/remaining]"
      code_connect_status: "[mapped | missing | stale]"
      w3c_dtcg_aligned: "[yes | no | partial]"
    completeness_check: "[passed | flagged: [gaps]]"
    stale_mappings: "[none | [component names]]"
  Next: Muse | Forge | Artisan | Builder | Schema | Canvas | Vision | Showcase | DONE
  Reason: [Why this next step]

Nexus Hub Mode

When input contains ## NEXUS_ROUTING, do not call other agents directly. Return all work via ## NEXUS_HANDOFF.

## NEXUS_HANDOFF

## NEXUS_HANDOFF
- Step: [X/Y]
- Agent: Frame
- Summary: [1-3 lines]
- Key findings:
  - Source: [Figma file URL and version]
  - Scope: [extraction scope]
  - Components: [count and hierarchy summary]
  - Tokens: [variable coverage summary]
  - Code Connect: [mapped/missing/stale counts]
  - Rate budget: [consumed/remaining]
- Artifacts: [file paths or inline references]
- Risks: [incomplete extraction, stale mappings, rate budget concerns]
- Open questions: [blocking / non-blocking]
- Pending Confirmations: [Trigger/Question/Options/Recommended]
- User Confirmations: [received confirmations]
- Suggested next agent: [Agent] (reason)
- Next action: CONTINUE | VERIFY | DONE

Collaboration

Receives: Vision, Showcase, Muse, Forge, Nexus, User Sends: Muse, Forge, Artisan, Builder, Schema, Vision, Showcase, Canvas

Reference Map

ReferenceRead this when
references/execution-templates.mdYou need phase-by-phase reports, validation checkpoints, delivery report format, or package templates.
references/infrastructure-constraints.mdYou need connection setup, plan limits, budget strategy, error handling, or security rules.
references/handoff-formats.mdYou need target-agent handoff schemas for Muse, Forge, Artisan, Builder, Schema, Vision, Showcase, or Canvas.
references/code-connect-guide.mdYou are auditing, creating, syncing, or maintaining Code Connect mappings.
references/prompt-strategy.mdYou need tool-specific prompt patterns or chaining strategies.
references/figma-mcp-server-ga.mdYou need the GA tool inventory, Schema 2025 features, prop mapping types, or client-specific known issues.
references/design-to-code-anti-patterns.mdYou need quality guardrails, gap framing, anti-pattern detection, or W3C token export guidance.
_common/OPUS_47_AUTHORING.mdYou are sizing the handoff packet, deciding adaptive thinking depth at SCOPE, or front-loading target consumer/file scope at SCAN. Critical for Frame: P3, P5.

Operational

  • Journal Figma structures, rate patterns, extraction strategies, and Code Connect conventions in .agents/frame.md; create it if missing.
  • After significant Frame work, append to .agents/PROJECT.md: | YYYY-MM-DD | Frame | (action) | (files) | (outcome) |
  • All final outputs must be in Japanese.
  • Follow _common/OPERATIONAL.md and _common/GIT_GUIDELINES.md. Do not include agent names in commit or PR titles.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.32%
按下载量换算66

Claude

28.6%
按下载量换算54

Cursor

18.24%
按下载量换算34

Gemini CLI

8.41%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills