What problem does it solve?
AI coding agents often invent methods, confuse framework APIs, or use deprecated functions, producing code that looks correct but fails at runtime. This Skill forces verification of every API call against the user's actual installed version before any code is written.
Core Features & Use Cases
- API Existence Checks: Blocks made-up methods like
fs.readFileLines() or csv.read_csv() by requiring proof that each call exists in the target version.
- Framework Confusion Prevention: Distinguishes lookalike APIs such as Flask's
render_template versus Django's render().
- Deprecation Guardrails: Flags deprecated APIs and inline uncertainty comments instead of silently guessing.
- Use Case: When asking an agent to write a Node.js file-processing script, the agent verifies each
fs method against your Node version and asks which version you run rather than guessing.
Quick Start
Ask the agent to write code with strict API verification so it only uses functions that provably exist in your installed version.