anthropic
Anthropic Claude API integration — chat completions, streaming, vision, tool use, and batch processing via the Anthropic Messages API. Generate text with Claude Opus, Sonnet, and Haiku models, process images, use tool calling, and manage conversations. Built for AI agents — Python stdlib only, zero dependencies. Use for AI text generation, multimodal analysis, tool-augmented AI, batch processing, and Claude model interaction.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/aiwithabidi/anthropic🔮 Anthropic
Anthropic Claude API integration — chat completions, streaming, vision, tool use, and batch processing via the Anthropic Messages API.
Features
- Messages API — Claude Opus, Sonnet, Haiku completions
- Streaming — real-time token streaming responses
- Vision — image analysis and understanding
- Tool use — function calling with structured output
- System prompts — custom system instructions
- Multi-turn conversations — context management
- Batch API — bulk message processing
- Token counting — estimate usage before sending
- Extended thinking — deep reasoning mode
- Model listing — available models and capabilities
Requirements
| Variable | Required | Description |
|---|---|---|
ANTHROPIC_API_KEY | ✅ | API key/token for Anthropic |
Quick Start
# Send a message to Claude
python3 {baseDir}/scripts/anthropic.py chat "What is the meaning of life?" --model claude-sonnet-4-20250514
# Chat with system prompt
python3 {baseDir}/scripts/anthropic.py chat-system --system "You are a financial analyst" "Analyze AAPL stock"
# Analyze an image
python3 {baseDir}/scripts/anthropic.py chat-image --image photo.jpg 'What do you see in this image?'
# Stream a response
python3 {baseDir}/scripts/anthropic.py stream "Write a short story about a robot" --model claude-sonnet-4-20250514
Commands
chat
Send a message to Claude.
python3 {baseDir}/scripts/anthropic.py chat "What is the meaning of life?" --model claude-sonnet-4-20250514
chat-system
Chat with system prompt.
python3 {baseDir}/scripts/anthropic.py chat-system --system "You are a financial analyst" "Analyze AAPL stock"
chat-image
Analyze an image.
python3 {baseDir}/scripts/anthropic.py chat-image --image photo.jpg 'What do you see in this image?'
stream
Stream a response.
python3 {baseDir}/scripts/anthropic.py stream "Write a short story about a robot" --model claude-sonnet-4-20250514
batch-create
Create a batch request.
python3 {baseDir}/scripts/anthropic.py batch-create requests.jsonl
batch-list
List batch jobs.
python3 {baseDir}/scripts/anthropic.py batch-list
batch-get
Get batch status.
python3 {baseDir}/scripts/anthropic.py batch-get batch_abc123
batch-results
Get batch results.
python3 {baseDir}/scripts/anthropic.py batch-results batch_abc123
count-tokens
Count tokens in a message.
python3 {baseDir}/scripts/anthropic.py count-tokens "How many tokens is this message?"
models
List available models.
python3 {baseDir}/scripts/anthropic.py models
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-aiwithabidi-anthropic": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
agent-memory
Full AI agent memory stack — Mem0 unified memory engine with vector search (Qdrant) and knowledge graph (Neo4j), plus SQLite for structured data. Complete setup script and tools. Give your OpenClaw agent a real brain with semantic recall, entity relationships, and structured storage.
skill-auditor
Security audit and quarantine system for third-party OpenClaw skills. Use when evaluating, reviewing, or installing any skill from ClawHub or external sources. Automatically triggered before any skill installation.
Model Intel
Live LLM model intelligence and pricing from OpenRouter
deep-search
Multi-tier Perplexity search with Langfuse tracing. Three depth levels: quick (sonar), pro (sonar-pro), deep (sonar-reasoning-pro). Supports focus modes: internet, academic, news, youtube, reddit. Returns AI-synthesized answers with citations. Use for research, comparisons, market analysis, fact-checking. Triggers: search, research, look up, find out, compare, what is, deep search, web research.
amplitude
Amplitude product analytics — track events, analyze user behavior, run cohort analysis, manage user properties, and query funnel/retention data via the Amplitude API. Understand product usage, measure feature adoption, and analyze user journeys. Built for AI agents — Python stdlib only, zero dependencies. Use for product analytics, user behavior tracking, funnel analysis, retention analysis, and cohort segmentation.