with one click
arch-make-svg
Export all Structurizr views to SVG files
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Export all Structurizr views to SVG files
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Generate a solution architecture document (SAD) and update Structurizr DSL based on input documents from the input folder
Collect all containers from Structurizr DSL and generate a resource table in resources.md
Merge two workspace.json commits, resolving merge conflicts while preserving element coordinates
Conduct an architecture review of a solution (SAD) from 5 role perspectives and generate a findings report
| name | arch-make-svg |
| description | Export all Structurizr views to SVG files |
| allowed-tools | Read, Edit, Bash, AskUserQuestion, TodoWrite |
| user-invocable | true |
Export all Structurizr views to SVG files in the structurizr/export/ folder.
Mandatory ask the user via AskUserQuestion. Do not use answers from memory or previous sessions โ always ask explicitly:
Comment out the contents of the NotInProd style in structurizr/workspace.dsl so that elements not deployed to production are not highlighted on diagrams:
// Before:
element "NotInProd" {
border dashed
stroke "#666666"
strokeWidth 4
opacity 60
}
// After (contents commented out):
element "NotInProd" {
// border dashed
// stroke "#666666"
// strokeWidth 4
// opacity 60
}
Run the diagram export:
scripts/export-svg.sh
Uncomment the NotInProd style contents back to the original state (remove // before each line inside the block).
Inform the user that SVG files are saved in structurizr/export/, and list the exported files.