uml-diagramming

uml-diagramming is a skill for Claude Code, Codex from antoinebou12/uml-mcp. It costs 55 tokens per session (2,514 once invoked), scanned A, original, MIT.

A diagram-writing helper that turns a description into Mermaid or PlantUML code. Mermaid and PlantUML are text formats for diagrams such as system designs, processes, and UML models.

In plain words
What is it for?
Use it to create sequence, architecture, flow, and other UML diagram scripts from a written specification.
Why use it?
It removes the need to learn diagram syntax or draw these diagrams by hand. The resulting code can be used in documentation or diagram-rendering tools.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create sequence, architecture, flow, and other UML diagram scripts from a written specification.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/antoinebou12/uml-mcp/uml-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 antoinebou12/uml-mcp --skill uml-diagramming
Clone the repo
git clone --depth 1 https://github.com/antoinebou12/uml-mcp

Made for: Claude Code, Codex.

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 uml-diagramming

README.md
[![agentmods](https://agentmods.dev/badge/skills/antoinebou12/uml-mcp/uml-diagramming/github.svg)](https://agentmods.dev/skills/antoinebou12/uml-mcp/uml-diagramming)
Your own site
<a href="https://agentmods.dev/skills/antoinebou12/uml-mcp/uml-diagramming"><img src="https://agentmods.dev/badge/skills/antoinebou12/uml-mcp/uml-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 uml-diagramming

Your own site · 80×15
<a href="https://agentmods.dev/skills/antoinebou12/uml-mcp/uml-diagramming"><img src="https://agentmods.dev/badge/skills/antoinebou12/uml-mcp/uml-diagramming.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,514 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high System Prompt Leakage · line 37
    Skill contains instructions that could directly expose system prompts, internal rules, or hidden instructions to users or external parties.
    Fix: Remove any instructions that reveal, print, or output system prompts or internal rules. System instructions should never be exposed to end users.
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.00055 $0.02514
Opus 5 $0.00028 $0.01257
Sonnet 5 $0.00011 $0.00503
Haiku 4.5 $0.00006 $0.00251

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

Security

Grade A, and why

uml-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 7d 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.

.skill/skills/uml-diagramming/SKILL.md · 200 lines

How it starts

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

UML Diagramming

Generate a single, correct Mermaid or PlantUML code block from a user's description. Output only the diagram script in one code block; no prose outside it.

Positive vs negative instructions (LLM steering)

These are not “good vs bad diagrams”—they steer the LLM before diagram source is finalized:

Positive Negative
Role What the model must do (DSL shape, notation). What the model must not do (common junk).
Good “Use sequenceDiagram.” “One statement per line.” “Participant names: Client, API, DB.” “No ``` fences.” “No ‘Here is the diagram:’ preamble.” “No semicolon-packed sequenceDiagram.”
Bad Pasting the full user story again (use template / description for that). Repeating the positive list as negatives (“do not omit participants”)—confusing and wasteful.

Keep each side short; when the provider exposes a separate negative or “must not” channel, route negative there instead of duplicating it in the main prompt.

When to Use

  • User asks for a diagram (UML, architecture, flow, process, etc.)
  • User specifies or implies Mermaid or PlantUML (or "diagram code")
  • Task is to produce diagram script for documentation, design, or for the generate_uml / generate_uml_image MCP tools

The generate_uml tool supports all Kroki diagram types via diagram_type (e.g. mermaid, plantuml, d2, graphviz, blockdiag, bpmn, vegalite, wavedrom, goat, umlet, etc.). Use resource uml://types for the full list and uml://templates for starter code. For non-Mermaid/PlantUML types (D2, BlockDiag, BPMN, Bytefield, Vega, WaveDrom, etc.), see references/DIAGRAM-TYPES.md.

For user intent → Kroki diagram_type (including Venn, quadrant, and timeline caveats), see the Intent → diagram_type (Kroki) section in references/DIAGRAM-TYPES.md.

When the user wants the diagram visible in chat, after emitting the code block call generate_uml_image (PNG) if available; otherwise generate_uml.

Read the full file on GitHub · 200 lines

Files

What ships with it

1 file 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. 7d ago Changed · +2 lines · +5 tokens per session 9ac3914865bb
  2. 12d ago First seen · 198 lines · 50 tokens per session scan A 3837a16a3137

Subscribe to this mod's changes

uml-diagramming is a skill published in the GitHub repository antoinebou12/uml-mcp (99 stars, last pushed yesterday), licensed MIT. It adds 55 tokens to every session and 2,514 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

detailed-design

Skill for detailed design — class diagrams, sequence diagrams, API contracts, database schema design, and error handling strategy.

pan94u/forge · 27 tokens

architecture-diagram-creator

Create effective architecture diagrams following established diagramming standards (UML, C4, ArchiMate) with proper visual elements and presentation techniques. Use this skill whenever the user needs to create, review, or improve architecture diagrams, wants guidance on which diagramming standard to use, needs help…

bookforge-ai/bookforge-skills · 128 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

visual-ralph

Visual Ralph orchestration for frontend UI from generated references, static references, or live URL targets, using $ultragoal with built-in visual verdict and pixel-diff evidence until the implementation matches and leaves a reproducible design system.

Yeachan-Heo/oh-my-codex · 52 tokens

accessibility

Consolidated accessibility skill entrypoint for WCAG 2.2, ARIA Authoring Practices, cognitive accessibility, Section 508, EN 301 549, design intent verification, and the Accessibility Planner workflow.

microsoft/hve-core · 47 tokens