From code-analysis-cpp
C++ Phase 4 documentation generator. Generates C++ API reference and class hierarchy documentation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/code-analysis-cpp:phase4-docssonnetThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Called by `usage-documenter` to supplement Phase-4 output with C++-specific documentation.
Called by usage-documenter to supplement Phase-4 output with C++-specific documentation.
.codeanalyzer/reports/phase4/cpp-class-hierarchy.mdCypher query:
MATCH (c:Class)
OPTIONAL MATCH (c)-[:EXTENDS]->(parent:Class)
OPTIONAL MATCH (c)<-[:EXTENDS]-(child:Class)
RETURN c.name, collect(DISTINCT parent.name) as parents, collect(DISTINCT child.name) as children
Render as a Mermaid classDiagram. If depth > 8, split per root.
.codeanalyzer/reports/phase4/cpp-template-catalog.mdCypher:
MATCH (t:Template)
RETURN t.name, t.kind ('class'|'function'), t.parameters, t.file
List non-trivial templates with usage count (incoming references).
api-reference.mdHook into the core api-reference step by emitting a supplemental cpp-api-supplement.md with:
constexpr / consteval entriesconceptsusing/typedef aliases re-exportednpx claudepluginhub juyeongyi/jylee_claude_marketplace --plugin code-analysis-cppCreates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.