You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Exact symbol lookup (fast tier) |**`show`** (`name`, optional `in`) — equality index; same rows as lone `query: 'name:Token'` when Token has no `%`/`_` wildcards and no other query fields|`find-symbol-definitions` (`name = ?`) |
34
+
| Exact symbol lookup (fast tier) |**`show`**/ **`snippet`**(`name`, optional `kind`, `in`) — equality index; same rows as lone `query: 'name:Token'` when Token has no `%`/`_` wildcards and no other query fields |`find-symbol-definitions` (`name = ?`) |
35
35
| Field-qualified symbol discovery (slow tier) |**`show`** or **`snippet`** (`query` with `kind:` / `name:` / `path:` / `in:` + free text; `name:%pat%` substring LIKE; `with_fts` for file-body search) |`find-symbol-by-kind` for kind-heavy patterns; CLI `codemap show --query '…' --print-sql` to inspect generated SQL (no MCP `print_sql` arg) |
| Find a symbol (fast tier)|`codemap show <name>` or lone `codemap show --query 'name:Token'` (no `%`/`_` wildcards) — equality index; recipe: `find-symbol-definitions`|
83
+
| Field-qualified search (slow tier) |`codemap show --query 'kind:function name:Auth path:src/'`or `name:%pat%` substring; MCP: `show` / `snippet` with `query` (+ `with_fts` for free text)|
0 commit comments