Use after generating code, after accepting AI suggestions, or when reviewing AI-written modules. Also use when code works but feels brittle, when error handling seems thin, when orphaned resources or missing cleanup are suspected, or when the agent claims done but hidden debt may exist. Catches the specific failure patterns AI agents produce that humans would not.
How this skill is triggered — by the user, by Claude, or both
Slash command
/skill-forge-essentials:ai-debt-detectorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
AI agents generate code that passes the happy path but hides debt: missing error handling, orphaned resources, ignored failure modes, hallucinated packages, silent architectural drift. This skill forces a targeted audit for the exact patterns AI agents get wrong.
AI agents generate code that passes the happy path but hides debt: missing error handling, orphaned resources, ignored failure modes, hallucinated packages, silent architectural drift. This skill forces a targeted audit for the exact patterns AI agents get wrong.
After code generation, scan for these AI-specific debt patterns:
FAILURE MODES - What happens when this fails?
ORPHANS - What gets created but never cleaned up?
EDGE CASES - What inputs break this?
HALLUCINATED DEPS - Do all imports actually exist?
ARCHITECTURAL DRIFT - Does this match the project's patterns?
catch (e) {} or catch (e) { console.log(e) } - swallowed errorfinally block when resources were opened// TODO: handle error - AI's way of puntingAI agents systematically optimize for "looks correct" and "passes the happy path." They miss failure modes, orphan resources, and hallucinate dependencies at rates significantly higher than manual code. This skill forces an audit for those specific blind spots.
npx claudepluginhub p/tsiakoulias-skill-forge-essentials-plugins-skill-forge-essentialsGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.
3plugins reuse this skill
First indexed Jul 18, 2026