From codixing
Deep codebase exploration using Codixing. Generates an architecture overview, identifies key modules, and maps dependencies. Use when starting work on an unfamiliar codebase or when the user asks to understand a project's structure.
How this skill is triggered — by the user, by Claude, or both
Slash command
/codixing:codixing-exploreThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Perform a deep exploration of the current codebase using the Codixing CLI. Present findings in a structured, educational format.
Perform a deep exploration of the current codebase using the Codixing CLI. Present findings in a structured, educational format.
Run a quick health check to verify the index exists and is up to date. If no index exists, tell the user to run /codixing-setup first.
codixing search "test" --limit 1
If stale or index missing, sync first:
codixing sync .
If the user asked to explore in the context of building something new ("I want to add X", "can we build Y"), run the existence scan BEFORE the architecture overview:
codixing search "keyword" for each keywordcodixing symbols keyword for likely struct/function namescodixing search "keyword" --limit 20 for matching filenamesReport findings: "Searched for X, Y, Z — found [existing_file] which already implements [feature]" or "No existing implementation found."
This prevents the most expensive mistake: proposing and designing something that already exists.
codixing graph --map --token-budget 4000
This returns the file structure sorted by PageRank (most important files first).
Present the top 10 files by importance, explaining what each one does based on its symbols.
For the top 3 most important files, run:
codixing callers path/to/file
codixing callees path/to/file
This reveals the architecture's dependency flow.
If the user specified a focus area (e.g., "search", "graph", "auth"), run:
codixing search "query" --limit 10
Then read the key files found and examine key symbols.
codixing symbols EntryPointName
For each key symbol found, briefly describe:
codixing search "test_function_name"
Run for the 3 most important source files to show what test coverage exists.
Present a structured summary:
Use the ★ Insight format to highlight non-obvious architectural decisions.
npx claudepluginhub ferax564/codixing --plugin codixingRead-only codebase exploration for discovering architecture, patterns, tooling, and dependencies. Use before implementing features, fixes, or refactors to understand existing code, trace symbols, and map files.
Answers codebase questions by tracing flows and researching topics. Two modes: autonomous (structured output for subagents) and interactive (narrative with checkpoints).
Performs deep codebase exploration with parallel agents to discover architecture, find files, trace data flows, analyze patterns, and assess code health. Invoke for repo walkthroughs or feature tracing.