AWS Diagram
Generates AWS architecture/security/network/data-flow diagrams from an infrastructure JSON snapshot.
Test report
- Verdict
- Tested · Works
- Score
- Tested
- Jul 16, 2026
- Environment
- Claude Code 2.x (agent harness)
- Upstream re-checked
- Aug 10, 2026 · 3606574
Ran both a naive baseline and the skill-guided script for real against the repo's own example infra JSON: the baseline crashed on `ImportError: cannot import name 'DynamoDB'` because the diagrams library actually exports `Dynamodb` — exactly the gotcha the SKILL.md's icon reference calls out — while the skill-guided version, using the documented exact import names, ran clean on the first try and produced a real 174KB PNG.
Scored on four weighted criteria — install, triggering, output vs. baseline, docs. How scoring works
- Installs cleanly 5/5
- Triggers reliably 5/5
- Output vs. baseline 9/10
- Docs & honesty 5/5
What AWS Diagram does
Reads an aws_infrastructure.json file and writes+runs Python `diagrams`-library code to render architecture, security, network, or data-flow PNG/SVG/PDF diagrams, including the library's non-obvious exact import names (Dynamodb, Eventbridge). Triggers on "generate diagram", "create AWS diagram", "visualize infrastructure", or "draw architecture"; the JSON is normally produced by the sibling aws-discover skill or hand-written.
How to install AWS Diagram
git clone https://github.com/mpuig/claude-cloud-diagrams
mkdir -p ~/.claude/skills
cp -r claude-cloud-diagrams/skills/aws-diagram ~/.claude/skills/aws-diagram
Skills live in ~/.claude/skills/ (global) or .claude/skills/
(per-project). Restart Claude Code after installing.
Commands — how to trigger AWS Diagram
-
/aws-diagramGenerates AWS architecture/security/network/data-flow diagrams from an infrastructure JSON snapshot.
It also activates on plain-language prompts like these:
-
Generate an architecture diagram from my aws_infrastructure.json file. -
Draw a network diagram showing how my AWS resources connect together. -
Visualize my infrastructure's security groups as a diagram I can share.
Frequently asked questions
- Is the AWS Diagram skill free?
- Yes. The skill itself is free from mpuig/claude-cloud-diagrams. SkillProof publishes the install command and an independent test verdict at no cost.
- Does AWS Diagram work with Claude Code?
- We tested it with Claude Code 2.x (agent harness) on Jul 16, 2026. Verdict: Tested · Works. Ran both a naive baseline and the skill-guided script for real against the repo's own example infra JSON: the baseline crashed on `ImportError: cannot import name 'DynamoDB'` because the diagrams library actually exports `Dynamodb` — exactly the gotcha the SKILL.md's icon reference calls out — while the skill-guided version, using the documented exact import names, ran clean on the first try and produced a real 174KB PNG.
- What is the AWS Diagram SkillProof Score?
- 9.6/10 — installs cleanly 5/5, triggers reliably 5/5, output vs. baseline 9/10, docs & honesty 5/5.
- How do I install AWS Diagram?
- Copy the install command from this page, run it in your terminal, and restart Claude Code. Skills live in ~/.claude/skills/ (global) or .claude/skills/ inside a project.
- Can I use AWS Diagram with Cursor, Copilot, Gemini CLI, Codex or other AI tools?
- The SKILL.md format is native to Claude (Claude Code, Desktop, claude.ai). The instructions inside adapt to other assistants: Cursor rules, GitHub Copilot instructions, Windsurf rules, Custom GPTs, AGENTS.md for OpenAI Codex, and GEMINI.md for Google Gemini CLI — our conversion guides cover each, and the free converter on the tools page does the wrapping for you.