azure-diagrams

azure-diagrams is a skill for Claude Code, Codex from cmb211087/azure-diagrams-skill. It costs 85 tokens per session (3,901 once invoked), scanned B, original, MIT.

A diagramming toolkit for Azure architecture, business processes, database schemas, timelines, wireframes, and network layouts. Azure is Microsoft's cloud-computing platform, and the toolkit includes its service icons for architecture diagrams.

In plain words
What is it for?
Use it to create Azure infrastructure diagrams, swimlane process flows, entity-relationship diagrams, project timelines, UI wireframes, and network topology diagrams.
Why use it?
It gives developers and architects a consistent way to turn system designs and workflows into diagrams for documentation, proposals, and reviews.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Claude Code; mentions AGENTS.md.

Good fit Use it to create Azure infrastructure diagrams, swimlane process flows, entity-relationship diagrams, project timelines, UI wireframes, and network topology diagrams.

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

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 azure-diagrams

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/cmb211087/azure-diagrams-skill/azure-diagrams"><img src="https://agentmods.dev/badge/skills/cmb211087/azure-diagrams-skill/azure-diagrams.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,901 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.00085 $0.03901
Opus 5 $0.00043 $0.01951
Sonnet 5 $0.00017 $0.00780
Haiku 4.5 $0.00009 $0.00390

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

Security

Grade B, and why

azure-diagrams scanned grade B with 1 finding 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.

The scan reads SKILL.md. This mod also ships 8 executable files (scripts/ascii_to_diagram.py, scripts/check_imports.py, scripts/generate_diagram.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

sudo apt-get install -y graphviz # Linux (Debian/Ubuntu)
skills/azure-diagrams/SKILL.md · 434 lines

How it starts

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

Azure Architecture Diagrams Skill

A comprehensive technical diagramming toolkit for solutions architects, presales engineers, and developers. Generate professional diagrams for proposals, documentation, and architecture reviews.

⚡ Execution Method

Run the Python directly to generate the image, and keep the image but do not leave a throwaway .py script behind. The generated file is the deliverable.

Output location (portable). Write to a diagrams/ folder in the current working directory - this works in every tool and on every OS. If you are running in a sandbox that provides /mnt/user-data/outputs (e.g. Claude Code on the web), prefer that. Create the folder first.

POSIX shells (Claude Code, Cursor, Linux/macOS - bash/zsh):

mkdir -p diagrams
python3 << 'EOF'
from diagrams import Diagram
from diagrams.azure.compute import AKS
from diagrams.azure.database import CosmosDb

with Diagram("My Architecture", filename="diagrams/architecture", show=False, outformat="png"):
    AKS("aks-prod") >> CosmosDb("cosmos-prod")
EOF

Windows PowerShell (e.g. GitHub Copilot on Windows - no heredoc): write a short script, run it, then delete it so nothing is left behind:

New-Item -ItemType Directory -Force diagrams > $null
@'
from diagrams import Diagram
from diagrams.azure.compute import AKS
from diagrams.azure.database import CosmosDb
with Diagram("My Architecture", filename="diagrams/architecture", show=False, outformat="png"):
    AKS("aks-prod") >> CosmosDb("cosmos-prod")
'@ | Set-Content _diagram.py; python _diagram.py; Remove-Item _diagram.py

Canned patterns (cross-platform) - use the bundled generator instead of writing code:

python scripts/generate_diagram.py --list                       # list available patterns
python scripts/generate_diagram.py --pattern <name> --output diagrams/arch

📊 Diagram Types

Type Reference File Example Prompt
Azure Architecture references/azure-components.md "Design a microservices architecture with AKS and Cosmos DB"
Business Process Flow references/business-process-flows.md "Create a swimlane for invoice approval workflow"
Entity Relationship (ERD) references/entity-relationship-diagrams.md "Generate an ERD for customer and order entities"
Timeline / Gantt references/timeline-gantt-diagrams.md "Create a 6-month migration roadmap"
UI Wireframe references/ui-wireframe-diagrams.md "Design a KPI dashboard layout"
Common Patterns references/common-patterns.md "Show a hub-spoke network topology"

Read the full file on GitHub · 434 lines

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 · 434 lines · 85 tokens per session scan B 7808fba45dc1

Subscribe to this mod's changes

azure-diagrams is a skill published in the GitHub repository cmb211087/azure-diagrams-skill (147 stars, last pushed 2mo ago), licensed MIT. It adds 85 tokens to every session and 3,901 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). 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

architecture-diagrams

Turn a natural-language cloud architecture description into an editable diagram whose nodes are official vendor service icons (Azure, AWS, GCP, Kubernetes), exported as PDF, draw.io, or VSDX (Lucid-importable). Use when the user asks to draw, diagram, or visualize a cloud/system architecture, or to produce a…

bharathgnana/archdiagram · 85 tokens

architecture-diagram

Dark-themed SVG architecture/cloud/infra diagrams as HTML.

mateaix/mateclaw · 15 tokens

drawio-aws

Use when the user asks for an AWS architecture diagram — VPC/networking, event-driven, landing zone, multi-AZ, serverless pipeline, or any diagram built with AWS service icons. Builds with the declarative layout engine using ground-truth mxgraph.aws4 stencils, validates (stencils/colors/nesting/geometry), runs a…

sparklabx/drawio-ai-kit · 94 tokens

aws-architecture-diagram

AWS architecture diagrams — generate visual network topology diagrams from live AWS infrastructure. Use when drawing AWS network diagrams, visualizing VPCs, mapping Transit Gateway topology, or generating architecture documentation.

automateyournetwork/netclaw · 43 tokens

drawio

WORKFLOW SKILL — Generate Azure architecture diagrams in .drawio via simonkurtz-MSFT MCP server (full Azure icon set, batch creation, transactional mode). Covers architecture, dependency, runtime-flow, and as-built diagrams. WHEN: 'draw.io diagram', 'Azure architecture diagram', 'as-built diagram', 'runtime flow…

jonathan-vella/apex-accelerator · 99 tokens

azure-integrations

Azure deployment for web apps — Static Web Apps, App Service, Blob Storage, Bicep/ARM, GitHub Actions CI/CD. Use when deploying Next.js/Vite to Azure or configuring Azure resources for full-stack apps.

PracticalSwan/agent-skills · 50 tokens