Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

d2D2 命令行

Agent Skill

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

总安装

196

周安装

8

GitHub Stars

2

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/benjaminwestern/google-engineer-skills --skill d2

简介

基于 D2 语法创建专业图表,提升技术文档可视化能力。

  • 适合需要时序流程、系统结构或协作逻辑图示的场景。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 通过文本定义生成清晰图表,支持多种布局与样式配置。
  • 需安装 D2 CLI 工具,建议使用 mise 管理版本以确保兼容性。
  • d2 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

D2 Diagramming

Create professional diagrams using D2 (Declarative Diagramming) syntax. D2 generates clean, readable diagrams from text definitions.

Installation

This skill requires the D2 CLI tool. We use mise to manage all tools.

Using mise (Preferred)

Add to your ~/.config/mise/config.toml:

[tools]
"go:oss.terrastruct.com/d2" = { version = "latest" }

Then install:

mise install

# Verify installation:
mise list | grep d2

Alternative: Go Install

go install oss.terrastruct.com/d2@latest

When to use me

Use this skill when you need to:

  • Create sequence diagrams showing temporal flow between actors
  • Generate flowcharts for process visualization
  • Build architecture diagrams
  • Create entity-relationship diagrams (ERDs)
  • Visualize system interactions
  • Design UML class diagrams
  • Build grid-based diagrams
  • Create multi-board compositions (layers, scenarios, steps)

Quick Start

Basic Connections

direction: right

A -> B: connection label
B -> C: another connection

Connection types:

  • -- - Line connection
  • -> - Arrow connection
  • <- - Reverse arrow connection
  • <-> - Bidirectional arrow connection

Simple Shapes

imAShape
my_shape: Custom Label Here
PostgreSQL: {shape: cylinder}
User: {shape: person}
API: {shape: cloud}

Professional Styling Standards

Brand Colors

{
  "Primary Blue": "#9FA7D0",
  "Light Blue": "#00A7E1",
  "Pink": "#E82370",
  "Teal": "#66CAD8",
  "Indigo": "#404FA2",
  "Green": "#00CC40",
  "Lime": "#CBDB2A",
  "Yellow": "#F9EB00",
  "Orange": "#FAA61A",
  "Red": "#F22000",
  "Dark Blue": "#00205C",
  "Slate": "#465669",
  "Black": "#000000",
  "Stroke": "#2A2A33"
}

Reusable Classes

classes: {
  professional-person: {
    shape: person
    style.fill: "#66CAD8"
    style.stroke: "#2A2A33"
    style.stroke-width: 1
  }
  professional-service: {
    style.fill: "#9FA7D0"
    style.stroke: "#2A2A33"
    style.stroke-width: 1
  }
  professional-database: {
    shape: cylinder
    style.fill: "#E82370"
    style.stroke: "#2A2A33"
    style.stroke-width: 1
  }
  professional-external: {
    shape: cloud
    style.fill: "#00A7E1"
    style.stroke: "#2A2A33"
    style.stroke-width: 1
  }
}

Common Patterns

System Architecture

direction: right

classes: {
  service: {
    style.fill: "#9FA7D0"
    style.stroke: "#2A2A33"
  }
}

Client -> LoadBalancer: HTTPS
LoadBalancer -> API: route
API -> Database: query

Sequence Diagram

shape: sequence_diagram

User -> Frontend: click button
Frontend -> Backend: POST /api/data
Backend --> Frontend: JSON response
Frontend --> User: display data

Sequence Diagram with API Calls and SQL

shape: sequence_diagram

classes: {
  person: {shape: person}
  service: {}
  database: {shape: cylinder}
}

User: {class: person}
Frontend: {class: service}
Backend: {class: service}
Database: {class: database}

User -> Frontend: "Enter credentials"
Frontend -> Backend: "POST /api/auth/sync"
Backend -> Database: "SELECT id FROM users WHERE firebase_uid = ?"
Database --> Backend: "User record or null"
Backend --> Frontend: "Return user with NanoID"

CLI Commands

Generate outputs

# SVG (default)
d2 input.d2 output.svg

# PNG, PDF, PPTX
d2 input.d2 output.png
d2 input.d2 output.pdf

# Watch mode
d2 -w input.d2 output.svg

# Themes
d2 input.d2 output.svg --theme=1
d2 themes  # List themes

Layout engines

d2 input.d2 output.svg --layout=dagre  # default
d2 input.d2 output.svg --layout=elk
d2 input.d2 output.svg --layout=tala

Reference Documentation

For detailed information on specific topics, load the relevant reference:

ReferenceFileContents
Shapes & Stylingreferences/shapes.mdComplete shapes catalog, style keywords, arrowheads
Sequence Diagramsreferences/sequence.mdSpans, groups, notes, self-messages
Database & UMLreferences/database.mdSQL tables, ERDs, UML classes, constraints
Advanced Featuresreferences/advanced.mdVariables, globs, composition, imports, models
Examples Galleryreferences/examples.mdComplete working examples for all diagram types

When to load references:

  • Creating complex diagrams with specialized shapes → Load shapes.md
  • Building sequence diagrams with groups/spans → Load sequence.md
  • Designing database schemas or UML → Load database.md
  • Using variables, globs, or composition → Load advanced.md
  • Need inspiration or templates → Load examples.md

Best Practices

  1. Use classes for consistent styling - Define reusable styles in classes block
  2. Quote JSON-like strings - {key: value} should be "{key: value}"
  3. Keep labels concise - Shorter is better for readability
  4. Group related components - Use containers to organize complex diagrams
  5. Use block strings for multiline - Use | followed by content and closing |
  6. Apply consistent styling - Use the professional color palette
  7. Use vars for reusable values - Define colors, names in vars section
  8. Leverage globs for global changes - Apply styles to multiple shapes at once
  9. Quote labels with special characters - Always wrap labels containing slashes, spaces, SQL, URLs, or % in double quotes: BackendAPI -> Database: "SELECT * FROM users WHERE id =?"
  10. Classes and labels are separate - Use Node: {class: myclass; label: text} syntax with semicolon separator
  11. Groups wrap connections, not define them - Use group name: {actor -> actor: message} for grouping sequences

Debugging

If D2 compilation fails:

  1. Check for unquoted JSON-like strings - Wrap in quotes
  2. Ensure no trailing colons without values
  3. Verify all shapes are properly closed
  4. Block strings must be terminated - Closing | on its own line
  5. Use double quotes for special characters - $, #, %, etc.
  6. Check glob filter syntax - Use & for filters, !& for inverse
  7. Quote connection labels with special characters - Labels containing /, ?, =, %, SQL keywords (SELECT, FROM, WHERE), or paths MUST be quoted:

- ❌ BackendAPI -> Database: GET /api/users?id=123 - ✅ BackendAPI -> Database: "GET /api/users?id=123" - ❌ BackendAPI -> Database: SELECT * FROM users - ✅ BackendAPI -> Database: "SELECT * FROM users" - ❌ Backend -> DB: Sample 50% of data - ✅ Backend -> DB: "Sample 50% of data"

  1. Cannot create edge inside edge - In sequence diagrams with group, define the connections inside the group, don't nest groups within connection labels
  2. Invalid text beginning unquoted key - When using semicolons in labels (e.g., AGN-01; Router), the parser may fail - use separate label field or quotes

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.12%
按下载量换算22

Claude

31.4%
按下载量换算20

Cursor

19.57%
按下载量换算12

Gemini CLI

9.2%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills