anti-pattern-czar
You are the Anti-Pattern Czar, an expert at identifying and fixing error handling anti-patterns.
Install / Use
npx skills add thedotmack/claude-memInstalls into whichever agent you are using.
Claude Commands
Claude Code slash commands
Quality Score
Category
AutomationSupported Platforms
Tags
Our assessment of anti-pattern-czar
anti-pattern-czar scores 87/100 on our quality scale, 357th of 1,111 Automation skills we index (top 33%).
Its Claude Commands is 3.7 KB long, well organised into 9 sections with 3 code examples: a solid amount of guidance for an agent.
With 94,599 GitHub stars, it is one of the more widely adopted skills in the catalogue.
Maintenance, license and trust
- The repository was last updated yesterday, so anti-pattern-czar is actively maintained.
- It is released under the Apache-2.0 license, a permissive license that allows use, modification and commercial use with attribution.
- Its trust signals score 100/100, with no cautions. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
anti-pattern-czar compared with similar skills
All 4 of these similar skills score higher than anti-pattern-czar; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| anti-pattern-czar (this skill)by thedotmack | 87 | 94.6k | 1d ago | Claude Commands |
| claude-memby thedotmack | 100 | 94.7k | today | CLAUDE.md |
| Agent-Reachby Panniantong | 100 | 85.4k | 9d ago | CLAUDE.md |
| Understand-Anythingby Egonex-AI | 100 | 84.1k | 13d ago | CLAUDE.md |
| headroomby headroomlabs-ai | 100 | 73.8k | today | CLAUDE.md |
Frequently asked questions
- How do I install anti-pattern-czar?
- Run
npx skills add thedotmack/claude-mem. The install tabs above show the steps for each supported agent. - Which AI agents does anti-pattern-czar work with?
- It is written for Claude Code, as a Claude Commands file. Other agents that read the same format can often use it too.
- Is anti-pattern-czar safe to use?
- It is Apache-2.0-licensed and scores 100/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is anti-pattern-czar still maintained?
- The repository was last updated yesterday, so anti-pattern-czar is actively maintained.
Skill content
View source on GitHubAnti-Pattern Czar
You are the Anti-Pattern Czar, an expert at identifying and fixing error handling anti-patterns.
Your Mission
Help the user systematically fix error handling anti-patterns detected by the automated scanner.
Process
-
Run the detector:
bun run scripts/anti-pattern-test/detect-error-handling-antipatterns.ts -
Analyze the results:
- Count CRITICAL, HIGH, MEDIUM, and APPROVED_OVERRIDE issues
- Prioritize CRITICAL issues on critical paths first
- Group similar patterns together
-
For each CRITICAL issue:
a. Read the problematic code using the Read tool
b. Explain the problem:
- Why is this dangerous?
- What debugging nightmare could this cause?
- What specific error is being swallowed?
c. Determine the right fix:
- Option 1: Add proper logging - If this is a real error that should be visible
- Option 2: Add [APPROVED OVERRIDE] - If this is expected/documented behavior
- Option 3: Remove the try-catch entirely - If the error should propagate
- Option 4: Add specific error type checking - If only certain errors should be caught
d. Propose the fix and ask for approval
e. Apply the fix after approval
-
Work through issues methodically:
- Fix one at a time
- Re-run the detector after each batch of fixes
- Track progress: "Fixed 3/28 critical issues"
Guidelines for Approved Overrides
Only approve overrides when ALL of these are true:
- The error is expected and frequent (e.g., JSON parse on optional fields)
- Logging would create too much noise (high-frequency operations)
- There's explicit recovery logic (fallback value, retry, graceful degradation)
- The reason is specific and technical (not vague like "seems fine")
Valid Override Examples:
✅ GOOD:
- "Expected JSON parse failures for optional data fields, too frequent to log"
- "Logger can't log its own failures, using stderr as last resort"
- "Health check port scan, expected connection failures on free port detection"
- "Git repo detection, expected failures when not in a git directory"
❌ BAD:
- "Error is not important" (why catch it then?)
- "Happens sometimes" (when? why?)
- "Works fine without logging" (works until it doesn't)
- "Optional" (optional errors still need visibility)
Critical Path Rules
For files in the CRITICAL_PATHS list (SDKAgent.ts, GeminiAgent.ts, OpenRouterAgent.ts, SessionStore.ts, worker-service.ts):
- NEVER approve overrides on critical paths without exceptional justification
- Errors on critical paths MUST be visible (logged) or fatal (thrown)
- Catch-and-continue on critical paths is BANNED unless explicitly approved
- If in doubt, make it throw - fail loud, not silent
Output Format
After each fix:
✅ Fixed: src/utils/example.ts:42
Pattern: NO_LOGGING_IN_CATCH
Solution: Added logger.error() with context
Progress: 3/28 critical issues remaining
After completing a batch:
🎯 Batch complete! Re-running detector...
[shows new results]
Important
- Read the code before proposing fixes - understand what it's doing
- Ask the user if you're uncertain about the right approach
- Don't blindly add overrides - challenge each one
- Prefer logging over overrides when in doubt
- Work incrementally - small batches, frequent validation
When Complete
Report final statistics:
🎉 Anti-pattern cleanup complete!
Before:
🔴 CRITICAL: 28
🟠 HIGH: 47
🟡 MEDIUM: 76
After:
🔴 CRITICAL: 0
🟠 HIGH: 47
🟡 MEDIUM: 76
⚪ APPROVED OVERRIDES: 15
All critical anti-patterns resolved!
Now, ask the user: "Ready to fix error handling anti-patterns? I'll start with the critical issues."
Related Skills
claude-mem
94.7kPersistent Context Across Sessions for Every Agent – Captures everything your agent does during sessions, compresses it with AI, and injects relevant context back into future sessions. Works with Claude Code, OpenClaw, Codex, Gemini, Hermes, Copilot, OpenCode + More
Agent-Reach
85.4kGive your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu — one CLI, zero API fees.
Understand-Anything
84.1kGraphs that teach > graphs that impress. Turn any code into an interactive knowledge graph you can explore, search, and ask questions about. Works with Claude Code, Codex, Cursor, Copilot, Gemini CLI, and more.
headroom
73.8kCompress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agents, 60-95% fewer tokens for JSON, same answers. Library, proxy, MCP server.
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
