From ontoindex
Uses OntoIndex to explore codebases, understand architecture, trace execution flows, and navigate unfamiliar projects. Query symbols, find callers/callees, and read process traces.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ontoindex:ontoindex-exploringThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- "How does authentication work?"
1. READ ontoindex://repos → Discover indexed repos
2. READ ontoindex://repo/{name}/context → Codebase overview, check staleness
3. ontoindex_query({query: "<what you want to understand>"}) → Find related execution flows
4. ontoindex_context({name: "<symbol>"}) → Deep dive on specific symbol
5. READ ontoindex://repo/{name}/process/{name} → Trace full execution flow
If step 2 says "Index is stale" → run
npx ontoindex analyzein terminal.
- [ ] READ ontoindex://repo/{name}/context
- [ ] ontoindex_query for the concept you want to understand
- [ ] Review returned processes (execution flows)
- [ ] ontoindex_context on key symbols for callers/callees
- [ ] READ process resource for full execution traces
- [ ] Read source files for implementation details
| Resource | What you get |
|---|---|
ontoindex://repo/{name}/context | Stats, staleness warning (~150 tokens) |
ontoindex://repo/{name}/clusters | All functional areas with cohesion scores (~300 tokens) |
ontoindex://repo/{name}/cluster/{name} | Area members with file paths (~500 tokens) |
ontoindex://repo/{name}/process/{name} | Step-by-step execution trace (~200 tokens) |
ontoindex_query — find execution flows related to a concept:
ontoindex_query({query: "payment processing"})
→ Processes: CheckoutFlow, RefundFlow, WebhookHandler
→ Symbols grouped by flow with file locations
ontoindex_context — 360-degree view of a symbol:
ontoindex_context({name: "validateUser"})
→ Incoming calls: loginHandler, apiMiddleware
→ Outgoing calls: checkToken, getUserById
→ Processes: LoginFlow (step 2/5), TokenRefresh (step 1/3)
1. READ ontoindex://repo/my-app/context → 918 symbols, 45 processes
2. ontoindex_query({query: "payment processing"})
→ CheckoutFlow: processPayment → validateCard → chargeStripe
→ RefundFlow: initiateRefund → calculateRefund → processRefund
3. ontoindex_context({name: "processPayment"})
→ Incoming: checkoutHandler, webhookHandler
→ Outgoing: validateCard, chargeStripe, saveTransaction
4. Read src/payments/processor.ts for implementation details
npx claudepluginhub ontograph/ontoindex --plugin ontoindexExplores codebases via GitNexus: discover repos, query execution flows, trace processes, inspect symbol callers/callees, and review architecture.
Answers codebase questions by tracing flows and researching topics. Two modes: autonomous (structured output for subagents) and interactive (narrative with checkpoints).
Explores codebases with Repowise indexing for architecture understanding, searching, and answering questions without raw source grepping.