ascii-hierarchy-diagra…
Generate a hierarchical ASCII diagram that can be used for representing folder structures, decomposition diagrams, or any other kind of diagrams that might…
Render an ASCII dependency graph from a JSON structure.
$ npx -y skills add rohingosling/claude-skills --skill ascii-dependency-graph --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/ascii-dependency-graphContext preview
The summary Claude sees to decide when to auto-load this skill.
Render an ASCII dependency graph from a JSON structure.
name: ascii-dependency-graph description: Render an ASCII dependency graph from a JSON structure. disable-model-invocation: false
Render an ASCII dependency graph using the Python script at `${CLAUDE_SKILL_DIR}/scripts/render_ascii_dependency_graph.py`.
1. Construct a JSON object describing the dependency tree. Each node has:
2. Write the JSON to a temporary file in the current project's working directory (e.g. `dep_graph.json`).
3. Run (use `python3` on macOS/Linux, `python` on Windows):
python3 "${CLAUDE_SKILL_DIR}/scripts/render_ascii_dependency_graph.py" --file dep_graph.json4. Copy the output into the target markdown file inside a fenced code block.
5. Delete the temporary JSON file.
{
"name": "App",
"right": {
"name": "LibA",
"right": { "name": "LibC" }
},
"bottom": [
{ "name": "LibB" },
{
"name": "LibD",
"right": { "name": "LibC" }
}
]
}Each box has odd character width = RoundUpToNearestOdd( len(name) + 4 ). This ensures the `┬` connector exits exactly from the centre of the bottom border.
$ARGUMENTS
Claude Code plugin marketplace. A curated collection of my publicly-shared Agent Skills, each packaged as an installable plugin.
Generate a hierarchical ASCII diagram that can be used for representing folder structures, decomposition diagrams, or any other kind of diagrams that might…
Render an ASCII box-drawing memory map (an address-space layout diagram) from a JSON description. Use whenever a response needs a memory map, memory layout,…