anth-known-pitfalls

Installation
SKILL.md

Anthropic Known Pitfalls

Pitfall 1: Wrong Import / Class Name

# WRONG — common mistake from OpenAI muscle memory
from anthropic import AnthropicClient  # Does not exist

# CORRECT
import anthropic
client = anthropic.Anthropic()
// WRONG
import { Anthropic } from '@anthropic-ai/sdk';

// CORRECT
import Anthropic from '@anthropic-ai/sdk';  // Default export
Installs
1
GitHub Stars
2.3K
First Seen
May 19, 2026
anth-known-pitfalls — jeremylongshore/claude-code-plugins-plus-skills