From code-analysis-unreal
UE5 Phase 4 documentation generator. Generates Blueprint API reference, RPC function list, and module dependency diagram.
How this skill is triggered — by the user, by Claude, or both
Slash command
/code-analysis-unreal:phase4-docssonnetThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Produces UE5-specific Phase-4 docs. Cross-verifies `ue-deps` declared-dependencies against GitNexus actually-used dependencies.
Produces UE5-specific Phase-4 docs. Cross-verifies ue-deps declared-dependencies against GitNexus actually-used dependencies.
.codeanalyzer/reports/phase4/ue-blueprint-api.mdCypher filter for Blueprint-exposed surface:
MATCH (m:Member)
WHERE m.attribute CONTAINS 'UFUNCTION'
AND (m.attribute CONTAINS 'BlueprintCallable'
OR m.attribute CONTAINS 'BlueprintPure'
OR m.attribute CONTAINS 'BlueprintImplementableEvent'
OR m.attribute CONTAINS 'BlueprintNativeEvent')
RETURN m.class, m.name, m.signature, m.attribute
ORDER BY m.class, m.name
Render as table grouped by class, with Blueprint Use column indicating Callable/Pure/Event.
.codeanalyzer/reports/phase4/ue-rpc-catalog.mdMATCH (m:Method)
WHERE m.attribute CONTAINS 'Server'
OR m.attribute CONTAINS 'Client'
OR m.attribute CONTAINS 'NetMulticast'
RETURN m.class, m.name, m.signature, m.attribute
Group by authority (Server / Client / NetMulticast). Include validation-stub presence column.
.codeanalyzer/reports/phase4/ue-module-diagram.mdCross-verification:
mcp__ue-deps-mcp__get_module_tree.MATCH (a:Module)-[:CALLS*1..]->(b:Module)
WHERE a <> b
RETURN a.name, b.name, count(*) as strength
Guides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.
npx claudepluginhub juyeongyi/jylee_claude_marketplace --plugin code-analysis-unreal