# Dekc Search

> Full-text search over the DEKC knowledge bundle (AND terms, type filters). Use when finding tables, lineage, or metrics by keyword.

- Skill: `spillwavesolutions/dekc-search` (Agent Skill)
- Install (CLI): `npx skillmds@latest add spillwavesolutions/dekc-search`
- Raw SKILL.md: https://api.skillmd.com/api/skills/spillwavesolutions/dekc-search/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: spillwavesolutions (https://skillmd.com/u/spillwavesolutions)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/spillwavesolutions/dekc-search

---


# Search

```bash
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/dekc_search.py" "revenue" --repo .
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/dekc_search.py" revenue --type Table,Metric --json
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/dekc_search.py" revenue --engine index
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/dekc_search.py" revenue --no-index --rg
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/dekc_search.py" revenue --engine scan
```

AND semantics across terms. Scores title > description > tags > body
(`title×10 / description×5 / tags×4 / min(body,8)`).

Ladder: SQLite index → ripgrep → full scan. Ranking stays in Python, so
`--engine scan` and the index path return the same scores. `--engine fts`
uses FTS5 MATCH (prefix tokens; not score-identical). Missing index or rg
is not an error. See `/dekc-index`.

After hits on a table, offer `/dekc-context` (2-hop pack).

For parent Q&A, do **not** run this skill in the parent. Spawn **data-retriever** via `/dekc-retrieve`. Search + pack stay in that sub-agent; the parent gets a retrieval card only.

