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:

  1. Exact topic name. Lowercase QUERY and 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 structures route directly.)
  2. Keyword match. Otherwise pick the first row whose keyword appears in QUERY as a whole word/phrase (word-boundary, case-insensitive — never a bare substring, so def never matches defer).
Installs
1
First Seen
Jul 19, 2026
odin — cloudvoyant/codevoyant