← All skills
Tencent SkillHub · Developer Tools

Anthropic

Anthropic Claude API integration — chat completions, streaming, vision, tool use, and batch processing via the Anthropic Messages API. Generate text with Cla...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Anthropic Claude API integration — chat completions, streaming, vision, tool use, and batch processing via the Anthropic Messages API. Generate text with Cla...

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Known item issue.

This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.

Quick setup
  1. Open the source page and confirm the package flow manually.
  2. Review SKILL.md if you can obtain the files.
  3. Treat this source as manual setup until the download is verified.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Manual review
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/anthropic.py

Validation

  • Open the source listing and confirm there is a real package or setup artifact available.
  • Review SKILL.md before asking your agent to continue.
  • Treat this source as manual setup until the upstream download flow is fixed.

Install with your agent

Agent handoff

Use the source page and any available docs to guide the install because the item currently does not return a direct package file.

  1. Open the source page via Open source listing.
  2. If you can obtain the package, extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the source page and extracted files.
New install

I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required.

Upgrade existing

I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 20 sections Open source page

🔮 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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/anthropic.py Scripts