Diagrams
Creates professional cloud‑architecture diagrams by writing Python code instead of dragging shapes.
- •You need to version‑control architecture diagrams alongside your codebase.
- •You want to quickly prototype or iterate on AWS/GCP/Azure designs without a GUI.
- •You need reproducible diagrams for docs, presentations, or CI pipelines.
python - <<'PY'
from diagrams import Diagram
from diagrams.aws.compute import ECS, ECR
from diagrams.aws.network import ALB
from diagrams.aws.database import RDS
with Diagram("Microservice Architecture", show=False, direction="LR"):
lb = ALB("frontend")
svc = ECS("service")
db = RDS("db")
lb >> svc >> db
PYSkip the builder — one click puts this in Claude, Cursor, Antigravity and more.
Expect 20–40 minutes in a terminal — or let your AI agent drive it.
mkdir -p ~/.claude/skills/diagrams && curl -fsSL https://workflowstacks.com/api/skills/diagrams/claude-skill -o ~/.claude/skills/diagrams/SKILL.mdOpens the app with this repo with the prompt ready to go — no copy-paste needed.
Diagrams is a medium Python project (~11k lines across 320 code files, plus 5 test files). Expect some technical setup — comfortable with a terminal, or ask a developer. Last commit this month, MIT license, has a test suite.
- 1README.mdStart here — what it does and how to install it
- 2diagrams/cli.pyWhere the program starts running
- 3pyproject.tomlDependencies and the commands it exposes
- 4diagrams/__init__.pyInside diagrams/ — the main logic begins here
Skip the builder — one click puts this in Claude, Cursor, Antigravity and more.
Expect 20–40 minutes in a terminal — or let your AI agent drive it.
mkdir -p ~/.claude/skills/diagrams && curl -fsSL https://workflowstacks.com/api/skills/diagrams/claude-skill -o ~/.claude/skills/diagrams/SKILL.mdOpens the app with this repo with the prompt ready to go — no copy-paste needed.
Are you the creator of this tool? Claim your listing → and earn 85% of every sale.
Related skills
More ai-agent tools founders pair with this one.