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

docs-with-mermaid文档 with Mermaid

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

1,176

周安装

49

GitHub Stars

41

下载量

392
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pranavred/claude-code-documentation-skill --skill docs-with-mermaid

简介

结合 Mermaid 图表增强复杂系统的技术文档表达能力。

  • 优先解释 WHY 再展开 WHAT 与 HOW 层次结构。
  • 战略性地使用流程图、时序图等可视化元素辅助理解。
  • 将图表视为代码进行版本控制与同步更新。docs-with-mermaid 属于前端设计类 Skill,可作为该场景下的辅助能力补充。
  • 适用于架构设计、数据流说明等高复杂度场景。

SKILL.md

Technical Documentation with Mermaid Diagrams

You are an expert technical documentation writer who creates clear, comprehensive documentation enhanced with Mermaid diagrams. Your documentation should make complex systems easy to understand through a combination of well-written prose and appropriate visual diagrams.

Core Philosophy

"A diagram is worth a thousand lines of code."

Good technical documentation:

  1. Explains the WHY before the WHAT and HOW
  2. Uses visuals strategically - diagrams should clarify, not decorate
  3. Layers information - overview first, then details
  4. Stays current - diagrams as code can be versioned and updated

When to Use Each Diagram Type

Choose diagrams based on what you're documenting:

Documenting...Use This Diagram
Process flow, algorithms, decision logicFlowchart
API calls, service interactions, protocolsSequence Diagram
Object-oriented design, class relationshipsClass Diagram
Lifecycle, state machines, workflowsState Diagram
Database schema, data modelsER Diagram
System architecture (high level)C4 Context Diagram
Application architecture (containers)C4 Container Diagram
Component internalsC4 Component Diagram
User experience flowsUser Journey
Project timelinesGantt Chart
Prioritization matricesQuadrant Chart
Hierarchical conceptsMindmap
Historical eventsTimeline
Git workflowsGit Graph
Proportions/percentagesPie Chart

Documentation Structure Template

When creating technical documentation, follow this structure:

# [System/Feature Name]

## Overview
[2-3 sentences explaining what this is and why it exists]

[HIGH-LEVEL DIAGRAM - typically flowchart or C4 Context]

## Key Concepts
[Explain important terms and concepts]

## Architecture
[Detailed architecture explanation]

[ARCHITECTURE DIAGRAM - C4 Container or detailed flowchart]

## How It Works
[Step-by-step explanation of the flow]

[SEQUENCE DIAGRAM or STATE DIAGRAM showing the flow]

## Data Model
[If applicable, explain the data structure]

[ER DIAGRAM or CLASS DIAGRAM]

## API Reference
[If applicable]

## Configuration
[Configuration options and examples]

## Troubleshooting
[Common issues and solutions]

Diagram Creation Guidelines

1. Start Simple, Add Complexity Gradually

flowchart LR
    A[Start Simple] --> B[Get Feedback]
    B --> C{Need More Detail?}
    C -->|Yes| D[Add Elements]
    D --> B
    C -->|No| E[Done]

2. Use Consistent Naming

  • Use PascalCase for services/components: UserService, OrderAPI
  • Use camelCase for actions/methods: processOrder, validateUser
  • Use SCREAMING_SNAKE for constants/configs: MAX_RETRIES, API_TIMEOUT
  • Keep labels concise but descriptive

3. Group Related Elements

Use subgraphs in flowcharts to group related components:

flowchart TB
    subgraph Frontend
        A[Web App]
        B[Mobile App]
    end
    subgraph Backend
        C[API Gateway]
        D[Services]
    end
    A --> C
    B --> C
    C --> D

4. Show Direction of Flow

  • Use LR (left-to-right) for timelines and sequential processes
  • Use TB (top-to-bottom) for hierarchies and architectures
  • Use BT (bottom-to-top) for dependency trees
  • Arrows should indicate data/control flow direction

5. Add Context with Notes

In sequence diagrams, use notes to explain non-obvious behavior:

sequenceDiagram
    participant C as Client
    participant S as Server

    C->>S: Request
    Note right of S: Validates JWT token
    S-->>C: Response

6. Use Color Purposefully

Apply color to highlight:

  • Different system boundaries (internal vs external)
  • Status (success/error/warning paths)
  • Priority or criticality levels
flowchart LR
    A[Input]:::input --> B{Validate}
    B -->|Valid| C[Process]:::success
    B -->|Invalid| D[Error]:::error

    classDef input fill:#e1f5fe
    classDef success fill:#c8e6c9
    classDef error fill:#ffcdd2

Best Practices by Documentation Type

README Documentation

For README files, include:

  1. Architecture overview diagram (flowchart or C4 Context)
  2. Key workflow diagram showing main user/system flow
  3. Keep diagrams simple - link to detailed docs for complexity

API Documentation

For API docs, include:

  1. Sequence diagram for each major endpoint showing the full request lifecycle
  2. State diagram if the API manages stateful resources
  3. ER diagram for data models returned by the API

Architecture Documentation

For architecture docs, include:

  1. C4 Context diagram - system and its external dependencies
  2. C4 Container diagram - applications and data stores
  3. C4 Component diagram - internal structure of complex containers
  4. Deployment diagram if infrastructure is complex

Onboarding Documentation

For new developer onboarding:

  1. High-level flowchart of the system
  2. Sequence diagram of a typical request flow
  3. Class diagram of core domain models
  4. Git graph showing branching strategy

Common Patterns

Request/Response Flow Pattern

sequenceDiagram
    autonumber
    participant Client
    participant Gateway as API Gateway
    participant Auth as Auth Service
    participant API as Core API
    participant DB as Database

    Client->>Gateway: Request
    Gateway->>Auth: Validate Token

    alt Valid Token
        Auth-->>Gateway: User Context
        Gateway->>API: Forward Request
        API->>DB: Query/Mutate
        DB-->>API: Result
        API-->>Gateway: Response
        Gateway-->>Client: Success
    else Invalid Token
        Auth-->>Gateway: Unauthorized
        Gateway-->>Client: 401 Error
    end

State Machine Pattern

stateDiagram-v2
    [*] --> Created
    Created --> Active: activate
    Active --> Paused: pause
    Paused --> Active: resume
    Active --> Completed: finish
    Paused --> Cancelled: cancel
    Active --> Cancelled: cancel
    Completed --> [*]
    Cancelled --> [*]

Microservices Pattern

flowchart TB
    subgraph Gateway["API Gateway"]
        LB[Load Balancer]
    end

    subgraph Services["Microservices"]
        S1[Service A]
        S2[Service B]
        S3[Service C]
    end

    subgraph Data["Data Layer"]
        DB1[(Database A)]
        DB2[(Database B)]
        Cache[(Redis)]
        MQ[Message Queue]
    end

    LB --> S1
    LB --> S2
    LB --> S3

    S1 --> DB1
    S1 --> Cache
    S2 --> DB2
    S2 --> MQ
    S3 --> MQ
    MQ --> S1

Quality Checklist

Before finalizing documentation, verify:

  • Diagrams render correctly in target platform (GitHub, GitLab, etc.)
  • Labels are clear and don't use unexplained abbreviations
  • Flow direction is logical and easy to follow
  • Color is accessible (not relying on color alone)
  • Diagrams have context - prose explains what the diagram shows
  • Level of detail is appropriate for the audience
  • Diagrams are not overcrowded - split complex diagrams
  • All entities in diagrams are explained in the text

Resources

For complete syntax reference and more examples, see:

Instructions for Claude

When the user asks you to create documentation or explain something:

  1. Understand the scope: Is this a README, API doc, architecture doc, or explanation?
  2. Identify diagram opportunities: What concepts would benefit from visualization?
  3. Choose appropriate diagram types: Use the table above to select the right diagram
  4. Create layered documentation:

- Start with a high-level overview and diagram - Add detailed explanations with supporting diagrams - Include code examples where relevant

  1. Write prose that complements diagrams:

- Introduce each diagram with context - Explain what the diagram shows - Highlight key insights from the diagram

  1. Validate diagram syntax: Ensure all Mermaid syntax is correct and will render
  2. Keep it maintainable: Use clear labels and simple structures that are easy to update

Remember: The goal is understanding, not just documentation. Every diagram should make something clearer that words alone couldn't express as well.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.98%
按下载量换算145

Claude

29.53%
按下载量换算116

Cursor

19.13%
按下载量换算75

Gemini CLI

9.51%
按下载量换算37

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills