一键导入
agent-hierarchy-diagram
Generate visual hierarchy diagrams of agent system showing levels and delegation. Use for documentation or onboarding.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate visual hierarchy diagrams of agent system showing levels and delegation. Use for documentation or onboarding.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Query foreign LLM for chat. Use this skill if a foreign LLM like OpenAI ChatGPT, Google Gemini, DeepSeek or xAI Grok should be queried with a single chat message.
Query Multiple AIs for Quorum Answer.
Use when turning a memory-corruption bug into a working PoC — stack/ROP, glibc heap & FSOP, format strings, browser/JIT type confusion & UAF, Linux/Windows kernel LPE against ASLR/DEP/CFG/CET/V8-Sandbox
Tinder for your Claude Code skills. Reviews a sorted deck of every installed skill and lets you swipe keep / delete / skip on each one. Use when the user wants to bulk-clean their skill collection, triage unused skills, or do interactive skill cleanup.
Use when the user wants to report a bug, file an issue, submit a bug report, or report any problem with the mobile-app plugin.
Resolve PR review feedback. Use when addressing review comments, resolving review threads, or fixing code-review feedback.
| name | agent-hierarchy-diagram |
| description | Generate visual hierarchy diagrams of agent system showing levels and delegation. Use for documentation or onboarding. |
| mcp_fallback | none |
| category | agent |
| user-invocable | false |
Generate visual diagrams showing agent system structure and relationships.
# Generate ASCII tree diagram
./scripts/generate_hierarchy_diagram.sh
# Generate Mermaid diagram
./scripts/generate_mermaid_diagram.sh > hierarchy.mmd
# Save to documentation
./scripts/generate_hierarchy_diagram.sh > agents/hierarchy-visual.txt
Chief Architect (L0)
├── Foundation Orchestrator (L1)
│ ├── Repository Design (L2)
│ │ ├── Directory Specialist (L3)
│ │ │ └── Junior Engineer (L5)
│ │ └── Config Specialist (L3)
│ └── Config Design (L2)
├── Shared Library Orchestrator (L1)
│ └── Tensor Module Design (L2)
│ └── Tensor Specialist (L3)
└── Tooling Orchestrator (L1)
graph TD
A[Chief Architect L0] --> B[Foundation Orchestrator L1]
B --> C[Repository Design L2]
C --> D[Directory Specialist L3]
D --> E[Junior Engineer L5]
/agents/hierarchy.md for referenceASCII: Human-readable in terminals, copy-pasteable in docs
Mermaid: Renders in GitHub markdown, editable in Mermaid editor
GraphML: Import into diagram tools (yEd, Graphviz)
/agents/hierarchy.md - Existing hierarchy documentationagent-test-delegation - Validate diagram accuracy.claude/agents/ - Agent configuration source