odin
Installation
SKILL.md
odin
Fast recipe lookup for the Odin language. Each topic is a small self-contained file under references/recipes/. Resolve the query to one file, then read it and print it verbatim — do not summarize, re-derive, or add commentary. This is a lookup, not a synthesis task.
Step 0: Parse query
QUERY="$*" # everything after /odin
Step 1: Route to one recipe and print it
Resolve in this order, then Read references/recipes/{slug}.md and print its contents verbatim:
- Exact topic name. Lowercase
QUERYand replace spaces with hyphens. If it equals a recipe slug (procedures,returns,structs,conversions,defer,allocators,errors,unions,data-structures,math,strings,terminal,polymorphism,cli,resources), use that file. (So/odin defer,/odin cli,/odin data structuresroute directly.) - Keyword match. Otherwise pick the first row whose keyword appears in
QUERYas a whole word/phrase (word-boundary, case-insensitive — never a bare substring, sodefnever matchesdefer).