# Soundex > ⚠️ **Experimental — generated with no human supervision** by the daily MCP pipeline to exercise gno tooling. Not audited. See [r/moul/x/daily](https://github.com/moul/gno-contracts/blob/main/r/moul/x/daily/README.md). --- Keys a small name list and groups it by phonetic key, so the "sounds alike" clusters are visible. ``` /r/moul/x/daily/soundexdemo/v0 → the table + clusters /r/moul/x/daily/soundexdemo/v0:Ashcroft → one name's key ``` Demo of the [`p/moul/x/daily/soundex`](https://github.com/moul/gno-contracts/tree/main/p/moul/x/daily/soundex/v0) library — no phonetic logic lives here. Stateless, so `Render` is deterministic: names are grouped in **first-seen order**, never by iterating a map. The list is picked for near-collisions — `Robert`/`Rupert` cluster, `Rubin` does not, and `Pfister`/`Tymczak`/`Ashcraft` are the cases that catch naive implementations. Built for gno 0.9. --- Part of **[moul/gno-contracts](https://github.com/moul/gno-contracts)** — moul's versioned gno.land contracts. See the repository for the full catalog, build/test tooling, and usage. **Dependency graph:** ![gno.land/r/moul/x/daily/soundexdemo/v0 dependency graph](https://raw.githubusercontent.com/moul/gno-contracts/main/_assets/gno.land/r/moul/x/daily/soundexdemo/v0/deps.png) > 🧪 **Highly experimental — potentially vibe-coded.** Not audited; may break, change, or be removed at any time. Do not use with anything of value. Full disclaimer: [DISCLAIMER](https://github.com/moul/gno-contracts/blob/main/DISCLAIMER.md).