From sundial-org-awesome-openclaw-skills-4
Integrates with Anthropic Claude API to chat with Claude models (Opus, Sonnet, Haiku) with long context, vision, and tool use.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:claudeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Anthropic Claude integration.
Anthropic Claude integration.
export ANTHROPIC_API_KEY="sk-ant-..."
"Ask Claude: Analyze this code"
"Use Claude to summarize this document"
curl -s https://api.anthropic.com/v1/messages \
-H "x-api-key: $ANTHROPIC_API_KEY" \
-H "anthropic-version: 2023-06-01" \
-H "Content-Type: application/json" \
-d '{"model":"claude-sonnet-4-20250514","max_tokens":1024,"messages":[{"role":"user","content":"Hello"}]}'
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4Build applications on the Anthropic API and Claude Agent SDK: tool use, prompt caching, structured outputs, batches, extended thinking, model selection, and agentic loops.
Anthropic Claude API patterns for Python and TypeScript covering Messages API, streaming, tool use, vision, and extended thinking.
Guides building LLM-powered applications with the Claude API and Anthropic SDKs. Includes language detection, model defaults with adaptive thinking, and streaming recommendations.