Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问许可证需确认审计通过

architecture-diagram架构图

Agent Skill

architecture-diagram 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,384

周安装

56

GitHub Stars

216

下载量

435
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mathews-tom/armory --skill architecture-diagram

简介

architecture-diagram 用于处理 GitHub 仓库、Issue、Pull Request 等协作信息,适合在代码协作场景中整理变更事项。

  • 适用于围绕仓库状态、代码变更进行信息梳理和协作管理。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用该技能。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网或文件读写操作。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

Architecture Diagram Generator

Produces self-contained .html files: inline SVG icons, CSS Grid nested zones, JS-driven SVG connection overlay with color-coded semantic line types and arrowhead markers. Zero external dependencies.

Workflow

  1. Parse user input → extract: components (with descriptions), containment hierarchy (zones/nesting), connections (with semantic types), and any provider context
  2. Read references/icons.md — select or create icons for each component
  3. Read references/layout-patterns.md — choose topology pattern, set grid-template-columns
  4. Read references/connections.md — define connection array with types, side-forcing, routing
  5. Start from assets/template.html — use its CSS/JS structure as the base
  6. Assemble the HTML:

- Set {{DIAGRAM_TITLE}}, {{BG_COLOR}}, {{MAX_WIDTH}} - Populate {{LEGEND_ITEMS}} — one entry per connection type used - Build zone hierarchy as nested div.zone > span.zone-label + div.zone-content - Place nodes with data-node-id, each containing: .node-icon (inline SVG), .node-title, .node-desc - Populate the connections JS array - Apply provider theming if applicable

  1. Output final .html to the working directory or user-specified path

Node construction

Every node must have:

  • Unique data-node-id (semantic: fusion-hcm, edi-adaptor, not node-7)
  • .node-icon with inline SVG from the icon registry (or custom-generated following registry constraints)
  • .node-title — short name (1–3 words, bold)
  • .node-desc — extended description text (protocols, module lists, capabilities). Populate this whenever the user provides detail beyond just a name. This is critical for professional-quality diagrams.

Key structural invariants

  • Every div.zone has exactly one span.zone-label and one div.zone-content
  • Every div.zone-content has explicit style="grid-template-columns:..."
  • Zone depth class (zone-depth-0 to zone-depth-3) matches actual nesting level
  • All SVG icons are inline inside .node-icon — no external image references
  • Connection overlay SVG with <defs> (arrow markers for each color) sits after the diagram div
  • Connection renderer <script> is last before </body>
  • Legend div sits above the diagram div, containing only types actually used

Connection type selection

Match connection semantics to the appropriate type:

  • realtime (blue solid): REST, SOAP, API calls, synchronous requests, real-time data
  • batch (red dashed): SFTP, file transfers, EDI, scheduled batch jobs, bulk data
  • event (green solid): event-driven triggers, pub-sub, webhooks, callbacks, business events
  • control (orange dashed): management plane, monitoring, config push, admin flows
  • default (blue solid): when semantic type is ambiguous or only one flow type exists

When the user doesn't specify flow semantics, default all connections to default type and omit the legend.

Design defaults

  • Background: #f0ece4 (warm neutral) or #e8eef5 (cool blue-gray) — choose based on provider/context
  • Zone borders: dashed, colored by depth (warm browns → reds)
  • Icons: 44×44px, --icon-color: #3a3a3a (or provider-specific)
  • Node title: 12px bold, node desc: 10.5px regular #555
  • Connections: 2px stroke, curved by default
  • Font: Segoe UI / system-ui stack
  • Max-width: 1400px typical, increase for complex diagrams

Handling ambiguity

  • Infer zone nesting from naming conventions (Region > VPC > Subnet, etc.)
  • Default to default connections and no legend if flow types are unspecified
  • Place management/observability services outside the main data-path zones
  • Use generic icon set and warm-neutral background unless provider is specified
  • Ask for clarification only when component list or topology is fundamentally ambiguous

Error Handling

ProblemCauseFix
assets/template.html missingFile deleted or skill directory incompleteRegenerate from skill defaults: reconstruct the CSS/JS skeleton using the structure documented in this SKILL.md and the reference files
Icon reference not found in references/icons.mdComponent type not in the registryFall back to the generic box icon defined in references/icons.md § Generic Fallback; log the missing icon name in a comment
Connection lines overlap or route through nodesDense graph with auto-routing conflictsAdjust zone layout: increase grid-template-columns spacing, add intermediate waypoint nodes, or use side-forcing attributes from references/connections.md
Playwright render failure during HTML-to-image exportChromium not installed or script errorRun playwright install chromium; check browser console via --headed flag; verify no JS syntax errors in the connection renderer script
Zone nesting exceeds depth-3 stylingArchitecture has more than 4 containment levelsFlatten by combining the deepest two levels into a single zone, or split into two separate diagrams linked by description

References

  • references/icons.md — 28+ SVG icon definitions, custom icon rules, provider color table
  • references/layout-patterns.md — node structure, zone nesting, 5 topology patterns, interior grid guidance, sizing table
  • references/connections.md — connection schema, 6 semantic types with colors, side-forcing, route modes, legend markup
  • assets/template.html — complete HTML skeleton: CSS, legend, zone/node styles, marker defs for all colors, connection renderer JS with auto side-detection

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.5%
按下载量换算163

Claude

27.68%
按下载量换算120

Cursor

18.62%
按下载量换算81

Gemini CLI

8.9%
按下载量换算39

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills