pub fn vec_kind_table_name(kind: &str) -> StringExpand description
Derive the canonical sqlite-vec virtual-table name for a given node kind.
Rules:
- Lowercase the kind string.
- Replace every character that is NOT
[a-z0-9]with_. - Collapse consecutive underscores to a single
_. - Prefix with
vec_.