Explores codebase structure, architecture, files, directories, and component relationships using OpenTrace knowledge graph. For browsing, searching, and understanding code organization.
From opentrace-ossnpx claudepluginhub opentrace/opentrace --plugin opentrace-ossThis skill is limited to using the following tools:
Guides AI-assisted editing of real video footage: transcribe/plan cuts with Claude, execute via FFmpeg bash scripts, augment with Remotion/ElevenLabs/fal.ai, polish in Descript/CapCut.
Ingests video/audio from files, URLs, RTSP, desktop; indexes/searches moments with timestamps/clips; transcodes/edits timelines (subtitles/overlays/dubbing); generates assets and live alerts.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
The user wants to explore or understand something about the codebase. Use the OpenTrace knowledge graph to answer their question.
$ARGUMENTS
Use the OpenTrace MCP tools to investigate. Follow this approach:
Orient — Call get_stats to see what's indexed (node types and counts). This tells you what's available in the graph.
Search — Use search_graph to find nodes matching the user's query. Use nodeTypes to filter when appropriate:
nodeTypes to search everythingInspect — Use get_node on the best matches to see full details and neighbors.
Trace — Use traverse_graph to follow relationships:
direction: incomingdirection: outgoingdirection: outgoing (CONTAINS relationships)List — Use list_nodes when the user wants to see all items of a type (e.g. all services, all files in a directory).
Read source — If nodes have a path property and the user needs code details, use Read to show the source.
ServiceA --CALLS--> ServiceB --READS--> DatabaseCGlob/Grep/Read