Semantic code search and navigation via the cix index. Use this when finding code by meaning rather than exact strings — cross-file lookups, symbol navigation, "where is X used", "how does Y work", "find authentication middleware", or exploring an unfamiliar codebase. Covers search, definitions, references, symbol search, file lookup, and indexing.
Scanned 5/27/2026
Install via CLI
openskills install dvcdsys/code-index---
name: cix
description: Semantic code search and navigation via the cix index. Use this when finding code by meaning rather than exact strings — cross-file lookups, symbol navigation, "where is X used", "how does Y work", "find authentication middleware", or exploring an unfamiliar codebase. Covers search, definitions, references, symbol search, file lookup, and indexing.
when_to_use: |
Trigger this skill when the user asks anything that requires semantic understanding of the codebase:
- "find authentication middleware" / "find the auth code"
- "where is X defined?" / "show me the definition of Y"
- "how does Z work in this codebase?"
- "what calls this function?" / "find references to ..."
- "search the codebase for ..." / "find by meaning"
- "explore this repo" / "give me an overview"
- Any time you would otherwise reach for Grep on a non-literal query
Skip this skill (use Grep / Read instead) when:
- A stack trace or error already names file:line — just Read it
- Searching for an exact literal (specific error string, config key name, import path)
- Inside dependencies (node_modules, vendor, .venv) — they aren't indexed
- Editing a non-code file (Dockerfile, yaml, lockfile)
user-invocable: true
allowed-tools: Bash(cix *)
---
# Code Index (`cix`) — Semantic Code Search & Navigation
You have access to `cix`, a semantic code index that understands the
codebase via embeddings + AST parsing. The right reflex is **"cix when
you don't have a pointer; grep when you do."**
**Always invoke `cix` through the Bash tool — do not call the
`/cix:search`, `/cix:def`, … slash commands from inside a turn.** Those
shortcuts exist for humans typing in the UI; an agent driving its own
work should run `cix search …` / `cix def …` / `cix refs …` as Bash so
the output flows through the normal tool-result pipeline and stays
machine-parseable. The `cix` CLI is bundled — the plugin auto-installs
it on first use if your system doesn't have it.
## When to use which
**Reach for `cix` first when:**
- The starting point is open-ended ("how does indexing work?", "find the
authentication middleware", "where is the main entry point?")
- You need cross-file navigation (definitions / references / callers)
- You're searching by *meaning*, not by an exact string
(`"JWT validation"` should find `verifyToken` even without that phrase)
- You're exploring an unfamiliar package or codebase
**Skip `cix`, use Read / Grep / Glob directly when:**
- A failing test or stack trace already names the file and function —
just `Read` it
- You're chasing an exact literal: a specific error message, a config
key, a commit-message phrase, an import path
- You're inside dependencies (`node_modules`, `vendor`, `.venv`) — they
aren't indexed
- You're editing a non-code file (Dockerfile, yaml, lockfile)
If `cix` returns nothing relevant after one well-formed query, fall
back to grep — don't loop on cix.
---
## Pick the cheapest tool that answers the question
When you already know a symbol's **name**, reach for `cix def` / `cix refs`
before `cix search`. They return **metadata only** (file, line, signature,
call sites) — no source bodies — so they cost roughly an order of magnitude
fewer tokens. Measured on one real symbol in this codebase:
| Command | Returns | Output size |
|---|---|---|
| `cix def <symbol>` | definition location + signature | ~250 B |
| `cix refs <symbol>` | every call site (file:line) | ~1 KB |
| `cix search "<intent>"` | matching code **with full source bodies** | ~7 KB |
So `cix search` is ~28× the bytes of `cix def` and ~6× `cix refs` for the
same target. Rule of thumb:
- Know the name, want "where is it defined / who calls it" → `cix def` /
`cix refs`. Cheap, precise, no source noise.
- Don't know the name, searching by *meaning* → `cix search`.
- Only escalate to `cix search` for a *known* symbol when you actually need
to read the surrounding implementation, not merely locate it.
---
## Commands Reference
### Semantic Search — find code by meaning
```bash
cix search "authentication middleware"
cix search "database connection retry logic"
cix search "error handling in payment flow" --limit 20
cix search "config parsing" --in ./internal/config/
cix search "API routes" --lang go
cix search "main entry point" --exclude bench/fixtures --exclude legacy
```
**Flags:**
- `--in <path>` — restrict to file or directory (can repeat)
- `--exclude <path>` — drop a directory or substring from results (can repeat)
- `--lang <language>` — filter by language (can repeat)
- `--limit <n>` — max **files** returned (CLI default: 10) — output is
grouped per file with all matches inside, so 10 files ≈ many snippets.
**For agent use, prefer `--limit 5`**: five files is enough for most
lookups and keeps the result compact. This is a usage recommendation,
not a change to the CLI default — bump it back up when you genuinely
need broader exploration.
- `--min-score <f>` — minimum relevance 0.0–1.0 (default: **0.4**)
### Go to Definition — find where a symbol is defined
```bash
cix definitions HandleRequest
cix def AuthMiddleware --kind function
cix def Config --file ./internal/config.go
```
Aliases: `definitions`, `def`, `goto`. Flags: `--kind`, `--file`, `--limit`.
### Find References — find where a symbol is used
```bash
cix references HandleRequest
cix refs AuthMiddleware --limit 50
cix usages UserService --file ./internal/api/
```
Aliases: `references`, `refs`, `usages`. Flags: `--file`, `--limit`.
### Symbol Search — find symbols by name
```bash
cix symbols handleRequest
cix symbols User --kind class
cix symbols Auth --kind function --kind method
```
Flags: `--kind` (function/class/method/type, repeatable), `--limit`.
### File Search — find files by path pattern
```bash
cix files "config"
cix files "middleware" --limit 20
```
### Project Overview
```bash
cix summary # languages, top dirs, key symbols
cix status # indexing status + file watcher status
cix list # all indexed projects
```
### Indexing
```bash
cix init [path] # register + index + start watcher
cix reindex # incremental
cix reindex --full # full reindex
cix cancel # cancel an in-flight indexing run
cix watch # start file-change auto-reindex daemon
cix watch stop # stop daemon
```
The watcher auto-reindexes on file change — manual `reindex` is rarely
needed. `cix status` shows whether the watcher is running and the
last-sync timestamp.
---
## Search quality — what scores mean
Default `--min-score 0.4` is calibrated for the production embedding
model (CodeRankEmbed-Q8 with path-aware preamble). Rough landscape:
| Score | Meaning |
|----------|---------------------------------------------------------|
| 0.65+ | Exact / very strong match — almost certainly relevant |
| 0.50–0.65| Strong match — usually relevant |
| 0.40–0.50| Weaker match — sometimes useful, sometimes not |
| <0.40 | Noise — filtered out by default |
**If a query returns nothing**, lower the floor explicitly:
`--min-score 0.2` for very specific or long-tail queries. Don't drop
below 0.2 — results below that are noise.
---
## Writing better queries — leverage path-aware embedding
Each chunk is embedded with its file path, language, and symbol name in
the preamble. This means **mentioning a file/dir/symbol you already
know about boosts ranking**:
```bash
# Generic
cix search "validation"
# Better — pins the search to the auth area
cix search "validation in auth middleware"
# Even better when you know the symbol
cix search "ValidateToken" --kind function
```
Natural-language queries that name the *kind of thing* and *where it
lives* outperform single-word queries.
---
## Usage Patterns
### Exploring unfamiliar code (`cix`'s strongest case)
```bash
cix summary # project structure, top dirs
cix search "main entry point server" # find where it starts
cix search "database connection setup" # find DB wiring
cix search "request handler" --in ./api # narrow to API
```
### Tracing a symbol end-to-end
```bash
cix def HandleRequest # where is it defined?
cix refs HandleRequest # who calls it?
cix search "HandleRequest error handling" # how are errors handled?
```
### Chasing a known target (often grep is enough)
```bash
# Stack trace says "internal/auth/middleware.go:42 — invalid token"
# → just Read that file. No cix needed.
# Config key "max_concurrent_requests" used somewhere?
# → grep is more precise.
```
### Narrowing scope
```bash
cix search "middleware" --in ./api/
cix search "config" --in ./cmd/ --exclude legacy
cix refs Config --file ./internal/server.go
```
---
## Tips
- Search queries are natural language, not regex. Write what you'd ask
a colleague.
- Output groups by file: each result line is a file with all relevant
matches inside, ordered top-to-bottom by line number. The
`[best 0.NN]` is the score of the top hit in that file.
- `cix def` is a faster path than `cix symbols` when you already know
the exact name.
- `--exclude` complements `--in` — use it to drop noisy dirs (`bench/`,
`legacy/`, vendored code) inline without touching `.cixignore`.
- The watcher keeps the index fresh. If results feel stale, check
`cix status` first — `Watcher: ✗ not running` is the usual cause.
- Don't loop. If a query returns nothing useful after one well-phrased
attempt + one `--min-score 0.2` retry, drop to grep.
No comments yet. Be the first to comment!