diagramming

diagramming is a skill for Claude Code from joaquimscosta/arkhe-claude-plugins. It costs 69 tokens per session (838 once invoked), scanned A, original, MIT.

A diagram-making tool for producing Mermaid diagrams, which render in web documentation, and ASCII diagrams, which work in terminals and plain text. It covers flows, software architecture, databases, state changes, timelines, and other visual layouts.

In plain words
What is it for?
Use it to document software architecture, API interactions, database relationships, decision trees, project timelines, Git branching, user journeys, and brainstorms.
Why use it?
It turns complex systems and processes into visual explanations without requiring you to draw them manually or choose the diagram syntax yourself.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the doc plugin — 3 skills shipped together

Good fit Use it to document software architecture, API interactions, database relationships, decision trees, project timelines, Git branching, user journeys, and brainstorms.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/joaquimscosta/arkhe-claude-plugins/diagramming
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add joaquimscosta/arkhe-claude-plugins --skill diagramming
Clone the repo
git clone --depth 1 https://github.com/joaquimscosta/arkhe-claude-plugins

Made for: Claude Code.

Or install doc, the plugin that ships this one along with the rest of its 3 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for diagramming

README.md
[![agentmods](https://agentmods.dev/badge/skills/joaquimscosta/arkhe-claude-plugins/diagramming/github.svg)](https://agentmods.dev/skills/joaquimscosta/arkhe-claude-plugins/diagramming)
Your own site
<a href="https://agentmods.dev/skills/joaquimscosta/arkhe-claude-plugins/diagramming"><img src="https://agentmods.dev/badge/skills/joaquimscosta/arkhe-claude-plugins/diagramming/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for diagramming

Your own site · 80×15
<a href="https://agentmods.dev/skills/joaquimscosta/arkhe-claude-plugins/diagramming"><img src="https://agentmods.dev/badge/skills/joaquimscosta/arkhe-claude-plugins/diagramming.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 69 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 838 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00069 $0.00838
Opus 5 $0.00034 $0.00419
Sonnet 5 $0.00014 $0.00168
Haiku 4.5 $0.00007 $0.00084

Measured 12d ago against content hash b66512c79cfb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

diagramming scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/doc/skills/diagramming/SKILL.md · 105 lines

How it starts

The opening of the file, as written. The whole thing — 105 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Diagram Generator

Expert skill for creating clear, professional diagrams in Mermaid or ASCII format.

Supported Formats

Format Best For Trigger Keywords
Mermaid Web docs, GitHub, rich rendering "diagram", "mermaid", "visualize"
ASCII Terminals, plain text, emails "ASCII", "text diagram", "terminal"

Diagram Types

graph/flowchart     - Flowcharts and decision trees
sequenceDiagram     - API interactions and workflows
classDiagram        - Object-oriented structures
stateDiagram-v2     - State machines and transitions
erDiagram           - Database relationships
C4Context/C4Container/C4Component - Architecture views (C4 model)
mindmap             - Brainstorming and idea organization
block-beta          - System block diagrams
gantt               - Project timelines
pie                 - Data distributions
gitGraph            - Git branching strategies
journey             - User experience flows
quadrantChart       - Priority matrices
timeline            - Historical events

Quick Start

  1. Determine format: Mermaid (default) or ASCII (if user explicitly requests)
  2. Select diagram type based on what's being visualized
  3. Choose layout: TB/TD (top-down), LR (left-right) for Mermaid
  4. Keep readable: Max 15-20 nodes per diagram
  5. Apply meaningful styling: Colors/shapes with semantic meaning

Output Format

Mermaid (Default)

```mermaid
graph TD
    A[Start] --> B{Decision}
    B -->|Yes| C[Action 1]
    B -->|No| D[Action 2]

    classDef success fill:#90EE90
    class C success
```

ASCII (When Explicitly Requested)

+-------+     +----------+
| Start | --> | Decision |
+-------+     +----+-----+
                   |
         +---------+---------+
         |                   |
         v                   v
    +----------+       +----------+
    | Action 1 |       | Action 2 |
    +----------+       +----------+

ASCII Conventions:

  • +---+ for boxes, | for vertical lines, --> or --- for connections
  • Use consistent spacing and alignment
  • Label arrows with [text] above the line when needed

Read the full file on GitHub · 105 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 105 lines · 69 tokens per session scan A b66512c79cfb

Subscribe to this mod's changes

diagramming is a skill published in the GitHub repository joaquimscosta/arkhe-claude-plugins (21 stars, last pushed 28d ago), licensed MIT. It adds 69 tokens to every session and 838 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

ux-expert

Use for UX RESEARCH, DEFINITION and EVALUATION work — the reasoning that comes BEFORE a wireframe and the critique that comes AFTER a build. Six modes: research (pick the right research method for the question + product stage), personas (research-grounded personas, 2-4, relevance-tested), storyboard (one persona · one…

endorphin-ai/hasbrains-agent-kit · 280 tokens

excalidraw

Create or extend editable Excalidraw diagrams from descriptions or repository evidence using a local skeleton-to-scene converter.

fakoli/fakoli-plugins · 28 tokens

canvas-design

Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.

composio-community/awesome-claude-plugins · 59 tokens

frontend-design

Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.

composio-community/awesome-claude-plugins · 43 tokens

designer-frontend-contract

The universal, tech-agnostic DESIGNER ↔ FRONTEND contract — how the web designer and the frontend dev help each other, where they store their shared data, how they communicate, and how the contract between them is written and ENFORCED. Three sides: the DESIGNER freezes an approved mockup into a canonical oracle…

endorphin-ai/hasbrains-agent-kit · 294 tokens

theme-factory

Toolkit for styling artifacts with a theme. These artifacts can be slides, docs, reportings, HTML landing pages, etc. There are 10 pre-set themes with colors/fonts that you can apply to any artifact that has been creating, or can generate a new theme on-the-fly.

composio-community/awesome-claude-plugins · 62 tokens