| name | model-lookup-basic |
| description | Lookup model-catalogue sessions by nickname or author and return basic model identity details. Use when a user asks to find a model, confirm model identity, or list candidate models by nickname/author before deeper inspection. |
Model Lookup Basic
Use shell scripts in scripts/ for lightweight model discovery.
This skill depends on $model-catalogue-core for shared API helpers.
Overview
This skill provides fast lookups by nickname or author using Model Catalogue API.
Keep output concise and plain text.
Setup
BASE_URL="${BASE_URL:-https://model-catalogue-api.azr.internal.wayve.ai}"
Required commands:
Commands
From this skill folder:
cd /home/borisindelman/.codex/skills/model-lookup-basic
Lookup by nickname/search:
./scripts/lookup_by_nickname.sh <model_nickname_or_search> [limit=5]
Lookup by author:
./scripts/lookup_by_author.sh <author_search> [items_per_page=25]
If model id normalization is needed first:
/home/borisindelman/.codex/skills/model-catalogue-core/scripts/resolve_model.sh <model_ref>
Expected columns
id
nickname
author
ingested_at
console_url
Output rules
- If no matches: report zero results and suggest broader search.
- Prefer plain text over markdown tables.
- Include clickable model link when reporting a chosen model:
[Open model in Console](https://console.sso.wayve.ai/model/<id_or_nickname>)