Model Upgrade Audit
SkillAI & modelsUse when a new model is available and you want to detect prompt debt in the workspace.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Model Upgrade Audit skill
What this skill tells your AI
The instructions your AI receives, as published by gonzalezpazmonica/pm-workspace in .claude/skills/model-upgrade-audit/SKILL.md and read by ahel’s review.
Analyzes agents, skills, and prompts for workarounds that newer models handle natively. Proposes token-saving simplifications backed by evidence.
Decision Checklist
- Is a new model available in config? If NO -> abort, nothing to audit.
- Scope defined? (full | list | changed-since) If NO -> default to full.
- Are evals available for target components? If NO -> warn, audit without comparison.
- Is this a major model jump (e.g., Sonnet -> Opus)? If YES -> recommend full scope.
- Has previous audit been run? If YES -> show delta since last audit.
Parameters
| Param | Required | Default | Description |
|---|---|---|---|
| scope | No | full | full, agents, skills, rules, or comma-separated list |
| model_new | No | (auto-detect) | Model to audit against |
| changed_since | No | - | Only audit components changed since Era N |
Workaround Patterns
| Pattern | Signal | Severity |
|---|---|---|
| Emphatic repetition | Same instruction >= 2x | Medium |
| Negative overload | >3 "don't/never/avoid" per prompt | Low |
| Compensatory few-shot | Basic capability examples | Medium |
| Defensive parsing | Regex fallback for bad output | High |
| Coded retries | Retry loops for model failure | High |
| Bloated prompt | >2000 tokens procedural | Medium |
Execution Flow
1. Inventory: glob agents/*.md + skills/*/SKILL.md + rules/domain/*.md
2. For each component:
a. Count tokens (wc -w * 1.3)
b. Scan for workaround patterns (regex)
c. Classify: simplifiable | no_change | review_needed
3. For simplifiable components:
a. Propose simplified version
b. Estimate token reduction
4. Generate YAML report -> output/model-audit/
5. Summary in chat (output-first pattern)
Output
Report: output/model-audit/{date}-audit.yaml
Summary:
Model Audit: {model_old} -> {model_new}
Components: {N} audited | {N} simplifiable | {N} no change
Token savings: ~{N} tokens/session ({pct}% reduction)
Risk: {N} low | {N} medium | {N} high
Application Flow
APPLY(risk: low) -> auto-apply with backupREVIEW(risk: medium) -> Draft PR for human reviewSKIP(risk: high) -> log for manual review
Integration
- Consumes feasibility-probe historical data for comparison
- Feeds into
/agent-efficiencyfor token tracking - Triggers after model config change in pm-config.md
Signals
- GitHub stars
- 50
- Forks
- 12
- Last commit
- Sep 2026
Others that do the same job
Advanced
- Catalog kind
- skill
- Gateway key
model-upgrade-audit- Source
- github.com/gonzalezpazmonica/pm-workspace