model-audit
Installation
SKILL.md
Audit every AI model call in the codebase. Output a routing table with real cost math, not just model names.
Phase 1 — Find model configuration
Search for where models are defined:
grep -r "gpt-4\|claude\|gemini\|anthropic\|openai\|mistral\|groq\|llama" \
--include="*.py" --include="*.ts" --include="*.js" --include="*.env*" \
-l 2>/dev/null | head -30
grep -rn "MODEL\|model_config\|AI_MODEL\|LLM_MODEL\|OPENAI_MODEL\|ANTHROPIC_MODEL" \
--include="*.py" --include="*.ts" --include="*.env*" -l 2>/dev/null
Read every file returned. Map alias → actual model string. Example: AI_MODEL="claude-sonnet-4-6" or const FAST_MODEL = "gpt-4o-mini".