# Send Anthropic to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "anthropic",
    "name": "Anthropic",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/aiwithabidi/anthropic",
    "canonicalUrl": "https://clawhub.ai/aiwithabidi/anthropic",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/anthropic",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=anthropic",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/anthropic.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "anthropic",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T00:46:08.245Z",
      "expiresAt": "2026-05-07T00:46:08.245Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=anthropic",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=anthropic",
        "contentDisposition": "attachment; filename=\"anthropic-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "anthropic"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/anthropic"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/anthropic",
    "downloadUrl": "https://openagent3.xyz/downloads/anthropic",
    "agentUrl": "https://openagent3.xyz/skills/anthropic/agent",
    "manifestUrl": "https://openagent3.xyz/skills/anthropic/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/anthropic/agent.md"
  }
}
```
## Documentation

### 🔮 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

VariableRequiredDescriptionANTHROPIC_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

### 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

### tools

Chat with tool use.

python3 {baseDir}/scripts/anthropic.py tools --tools '[{"name":"get_weather","description":"Get weather","input_schema":{"type":"object","properties":{"location":{"type":"string"}}}}]' "What is the weather in NYC?"

### thinking

Extended thinking mode.

python3 {baseDir}/scripts/anthropic.py thinking "Solve this math problem step by step: what is 123 * 456?" --budget 10000

### Output Format

All commands output JSON by default. Add --human for readable formatted output.

# JSON (default, for programmatic use)
python3 {baseDir}/scripts/anthropic.py chat --limit 5

# Human-readable
python3 {baseDir}/scripts/anthropic.py chat --limit 5 --human

### Script Reference

ScriptDescription{baseDir}/scripts/anthropic.pyMain CLI — all Anthropic operations

### Data Policy

This skill never stores data locally. All requests go directly to the Anthropic API and results are returned to stdout. Your data stays on Anthropic servers.

### Credits

Built by M. Abidi | agxntsix.ai
YouTube | GitHub
Part of the AgxntSix Skill Suite for OpenClaw agents.

📅 Need help setting up OpenClaw for your business? Book a free consultation
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: aiwithabidi
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T00:46:08.245Z
- Expires at: 2026-05-07T00:46:08.245Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/anthropic)
- [Send to Agent page](https://openagent3.xyz/skills/anthropic/agent)
- [JSON manifest](https://openagent3.xyz/skills/anthropic/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/anthropic/agent.md)
- [Download page](https://openagent3.xyz/downloads/anthropic)