Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/CleanExpo/Unite-Group --skill model-currency-checkerコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
SOC 職業分類に基づく
| id | model-currency-checker |
| name | model-currency-checker |
| type | Capability Uplift |
| version | 1.0.0 |
| created | 20/03/2026 |
| modified | 20/03/2026 |
| status | active |
| triggers | ["check model versions","are models up to date","model currency","which models are we using","audit ai models","check ai versions","model audit","update models"] |
| description | > |
Purpose: Prevent the system from running on stale, deprecated, or unapproved AI models. Model capability compounds — running on outdated models degrades output quality silently.
Use this skill when:
pnpm starter:audit is run| Task Category | Provider | Approved Model ID | Approved Since |
|---|---|---|---|
| Reasoning / orchestration | Anthropic | claude-sonnet-4-6 | 06/03/2026 |
| Complex reasoning | gemini-2.5-pro-preview | 06/03/2026 | |
| Fast image gen / editing | gemini-2.5-flash-image | 06/03/2026 | |
| Image editing with context | Nano Banana | nano-banana-pro | 06/03/2026 |
| High-fidelity branding | imagen-4 | 06/03/2026 | |
| 3D logo renders | imagen-4 | 06/03/2026 |
Review cycle: Model policy must be reviewed every 90 days. Next review due: 06/06/2026
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 filesSearch patterns to find:
gemini- prefiximagen- prefixclaude- prefixgpt- prefix (should not be present — unapproved)ollama references (check version)For each model ID found:
| Classification | Meaning |
|---|---|
CURRENT | Model ID matches approved policy exactly |
OUTDATED | Model ID was previously approved but has been superseded |
UNAPPROVED | Model ID not in approved policy |
REVIEW_NEEDED | Model ID format matches but version cannot be confirmed |
Run pnpm starter:audit to generate reports/model-currency-report.md automatically.
Or manually: grep the codebase and compare against the table above.
For each OUTDATED or UNAPPROVED model:
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.
═══════════════════════════════════════════════════
Before marking model check complete:
reports/model-currency-report.md| Failure | Recovery |
|---|---|
| No model references found | Verify scan covered the right file types and directories |
| Model ID found in env file but not code | Check if env var is actually used |
| Model ID in comment only | Mark as informational, not a live reference |
| Model has been deprecated by provider | Update to approved replacement immediately |
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
Finding: "I think the models are up to date." Reason rejected: No scan performed, no evidence, opinion not evidence.
The authoritative environment-variable registry for the Unite-Group Nexus. Use whenever adding, reading, renaming, or debugging an env var or secret — new integration config, a `process.env.X` read, an auth/OAuth wiring, a cron secret, a "which variable holds this" question, or a "works locally but not in prod" symptom. Also use before pinning any variable name in code, and when reconciling the two credential planes (Vercel prod vs the local hermes fleet). Prevents the `APIFY_API_KEY` vs `APIFY_API_TOKEN` class of drift.
Create, verify, and promote Supabase schema changes via database branches. Every schema change/migration must be validated on a Supabase database branch before prod (see CLAUDE.md line 44).
Verify production Supabase schema before shipping code that touches it. Use BEFORE writing or reviewing ANY code that reads or writes a Supabase table in the Nexus — new queries, inserts, updates, CHECK-constrained values, RLS-dependent reads, cron data access — even one-line changes and even when the table "obviously" exists. Also use immediately when a query fails with "column does not exist", when inserts appear to succeed but produce no rows, or when generated TypeScript types disagree with runtime behaviour.