Anthropic Claude integration. Chat with Claude models via Anthropic API.
Scanned 2/12/2026
Install to Claude Code
npx -y skills add sundial-org/awesome-openclaw-skills --skill claude --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Claude?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/sundial-org-claude)More formats (shields.io, HTML) on the badges page.
---
name: claude
description: Anthropic Claude integration. Chat with Claude models via Anthropic API.
metadata: {"clawdbot":{"emoji":"🧠","always":true,"requires":{"bins":["curl","jq"]},"primaryEnv":"ANTHROPIC_API_KEY"}}
---
# Claude 🧠
Anthropic Claude integration.
## Setup
```bash
export ANTHROPIC_API_KEY="sk-ant-..."
```
## Features
- Chat with Claude (Opus, Sonnet, Haiku)
- Long context support (200K tokens)
- Vision capabilities
- Tool use
## Usage Examples
```
"Ask Claude: Analyze this code"
"Use Claude to summarize this document"
```
## API Reference
```bash
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"}]}'
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!