Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
cleanexpo avatar

Model Currency Checker

  • 1 installs
  • 1 repo stars
  • Updated June 17, 2026
  • cleanexpo/unite-hub

Helps with ai & agent building tasks.

About

model-currency-checker is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • model-currency-checker
  • AI & Agent Building
  • AI-coding skill

Model Currency Checker by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #14,102 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/cleanexpo/unite-hub --skill model-currency-checker

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
repo stars1
Last updatedJune 17, 2026
Repositorycleanexpo/unite-hub

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

Model Currency Checker Skill

Purpose: Prevent the system from running on stale, deprecated, or unapproved AI models.
Model capability compounds — running on outdated models degrades output quality silently.

When to Use

Use this skill when:

  • Preparing a production deployment (check all model IDs before shipping)
  • After an AI provider announces a model update or deprecation
  • When output quality seems degraded (may indicate a deprecated model)
  • When auditing the codebase for technical debt
  • When pnpm starter:audit is run

Approved Model Policy

Task CategoryProviderApproved Model IDApproved Since
Reasoning / orchestrationAnthropicclaude-sonnet-4-606/03/2026
Complex reasoningGooglegemini-2.5-pro-preview06/03/2026
Fast image gen / editingGooglegemini-2.5-flash-image06/03/2026
Image editing with contextNano Banananano-banana-pro06/03/2026
High-fidelity brandingGoogleimagen-406/03/2026
3D logo rendersGoogleimagen-406/03/2026

Review cycle: Model policy must be reviewed every 90 days. Next review due: 06/06/2026

Procedure

Step 1: Scan codebase for model references

Search these file types for model ID strings:

  • *.ts, *.js — TypeScript/JavaScript source
  • *.py — Python source
  • *.json — Config files (model IDs in env or config)
  • *.yaml, *.yml — CI/CD configs, docker compose
  • *.env, *.env.example — Environment files

Search patterns to find:

  • gemini- prefix
  • imagen- prefix
  • claude- prefix
  • gpt- prefix (should not be present — unapproved)
  • ollama references (check version)

Step 2: Classify each finding

For each model ID found:

ClassificationMeaning
CURRENTModel ID matches approved policy exactly
OUTDATEDModel ID was previously approved but has been superseded
UNAPPROVEDModel ID not in approved policy
REVIEW_NEEDEDModel ID format matches but version cannot be confirmed

Step 3: Generate report

Run pnpm starter:audit to generate reports/model-currency-report.md automatically.

Or manually: grep the codebase and compare against the table above.

Step 4: Remediate

For each OUTDATED or UNAPPROVED model:

1. Find the config file or code that references it 2. Update to the approved model ID 3. Test that the integration still works (prompt compatibility check) 4. Commit the change

Output Format

MODEL CURRENCY REPORT
═══════════════════════════════════════════════════
Date: [DD/MM/YYYY]
Codebase: [root path]

APPROVED POLICY
─────────────────
[table of approved models]

FINDINGS
─────────────────
CURRENT:    [file:line] — [model-id] — [category]
OUTDATED:   [file:line] — [model-id] — Replace with: [approved-id]
UNAPPROVED: [file:line] — [model-id] — Not in approved policy

SUMMARY
─────────────────
Current:    [N]
Outdated:   [N]
Unapproved: [N]

ACTION REQUIRED: Update [N] model reference(s) before shipping.
═══════════════════════════════════════════════════

Validation Gates

Before marking model check complete:

  • [ ] All file types scanned (not just .ts)
  • [ ] Env files checked (model IDs often set there)
  • [ ] CI/CD configs checked (model IDs in workflow env vars)
  • [ ] Report saved to reports/model-currency-report.md

Failure Modes

FailureRecovery
No model references foundVerify scan covered the right file types and directories
Model ID found in env file but not codeCheck if env var is actually used
Model ID in comment onlyMark as informational, not a live reference
Model has been deprecated by providerUpdate to approved replacement immediately

Eval Examples

Good Example

Finding: apps/backend/src/models/anthropic.py:14 — claude-2 — OUTDATED Action: Replace with claude-sonnet-4-6 Verification: Test prompt round-trip after update

Bad Example (rejected)

Finding: "I think the models are up to date." Reason rejected: No scan performed, no evidence, opinion not evidence.

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.