{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/anthropic",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=anthropic",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/anthropic.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/anthropic",
    "agentPageUrl": "https://openagent3.xyz/skills/anthropic/agent",
    "manifestUrl": "https://openagent3.xyz/skills/anthropic/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/anthropic/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "🔮 Anthropic",
        "body": "Anthropic Claude API integration — chat completions, streaming, vision, tool use, and batch processing via the Anthropic Messages API."
      },
      {
        "title": "Features",
        "body": "Messages API — Claude Opus, Sonnet, Haiku completions\nStreaming — real-time token streaming responses\nVision — image analysis and understanding\nTool use — function calling with structured output\nSystem prompts — custom system instructions\nMulti-turn conversations — context management\nBatch API — bulk message processing\nToken counting — estimate usage before sending\nExtended thinking — deep reasoning mode\nModel listing — available models and capabilities"
      },
      {
        "title": "Requirements",
        "body": "VariableRequiredDescriptionANTHROPIC_API_KEY✅API key/token for Anthropic"
      },
      {
        "title": "Quick Start",
        "body": "# Send a message to Claude\npython3 {baseDir}/scripts/anthropic.py chat \"What is the meaning of life?\" --model claude-sonnet-4-20250514\n\n# Chat with system prompt\npython3 {baseDir}/scripts/anthropic.py chat-system --system \"You are a financial analyst\" \"Analyze AAPL stock\"\n\n# Analyze an image\npython3 {baseDir}/scripts/anthropic.py chat-image --image photo.jpg 'What do you see in this image?'\n\n# Stream a response\npython3 {baseDir}/scripts/anthropic.py stream \"Write a short story about a robot\" --model claude-sonnet-4-20250514"
      },
      {
        "title": "chat",
        "body": "Send a message to Claude.\n\npython3 {baseDir}/scripts/anthropic.py chat \"What is the meaning of life?\" --model claude-sonnet-4-20250514"
      },
      {
        "title": "chat-system",
        "body": "Chat with system prompt.\n\npython3 {baseDir}/scripts/anthropic.py chat-system --system \"You are a financial analyst\" \"Analyze AAPL stock\""
      },
      {
        "title": "chat-image",
        "body": "Analyze an image.\n\npython3 {baseDir}/scripts/anthropic.py chat-image --image photo.jpg 'What do you see in this image?'"
      },
      {
        "title": "stream",
        "body": "Stream a response.\n\npython3 {baseDir}/scripts/anthropic.py stream \"Write a short story about a robot\" --model claude-sonnet-4-20250514"
      },
      {
        "title": "batch-create",
        "body": "Create a batch request.\n\npython3 {baseDir}/scripts/anthropic.py batch-create requests.jsonl"
      },
      {
        "title": "batch-list",
        "body": "List batch jobs.\n\npython3 {baseDir}/scripts/anthropic.py batch-list"
      },
      {
        "title": "batch-get",
        "body": "Get batch status.\n\npython3 {baseDir}/scripts/anthropic.py batch-get batch_abc123"
      },
      {
        "title": "batch-results",
        "body": "Get batch results.\n\npython3 {baseDir}/scripts/anthropic.py batch-results batch_abc123"
      },
      {
        "title": "count-tokens",
        "body": "Count tokens in a message.\n\npython3 {baseDir}/scripts/anthropic.py count-tokens \"How many tokens is this message?\""
      },
      {
        "title": "models",
        "body": "List available models.\n\npython3 {baseDir}/scripts/anthropic.py models"
      },
      {
        "title": "tools",
        "body": "Chat with tool use.\n\npython3 {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?\""
      },
      {
        "title": "thinking",
        "body": "Extended thinking mode.\n\npython3 {baseDir}/scripts/anthropic.py thinking \"Solve this math problem step by step: what is 123 * 456?\" --budget 10000"
      },
      {
        "title": "Output Format",
        "body": "All commands output JSON by default. Add --human for readable formatted output.\n\n# JSON (default, for programmatic use)\npython3 {baseDir}/scripts/anthropic.py chat --limit 5\n\n# Human-readable\npython3 {baseDir}/scripts/anthropic.py chat --limit 5 --human"
      },
      {
        "title": "Script Reference",
        "body": "ScriptDescription{baseDir}/scripts/anthropic.pyMain CLI — all Anthropic operations"
      },
      {
        "title": "Data Policy",
        "body": "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."
      },
      {
        "title": "Credits",
        "body": "Built by M. Abidi | agxntsix.ai\nYouTube | GitHub\nPart of the AgxntSix Skill Suite for OpenClaw agents.\n\n📅 Need help setting up OpenClaw for your business? Book a free consultation"
      }
    ],
    "body": "🔮 Anthropic\n\nAnthropic Claude API integration — chat completions, streaming, vision, tool use, and batch processing via the Anthropic Messages API.\n\nFeatures\nMessages API — Claude Opus, Sonnet, Haiku completions\nStreaming — real-time token streaming responses\nVision — image analysis and understanding\nTool use — function calling with structured output\nSystem prompts — custom system instructions\nMulti-turn conversations — context management\nBatch API — bulk message processing\nToken counting — estimate usage before sending\nExtended thinking — deep reasoning mode\nModel listing — available models and capabilities\nRequirements\nVariable\tRequired\tDescription\nANTHROPIC_API_KEY\t✅\tAPI key/token for Anthropic\nQuick Start\n# Send a message to Claude\npython3 {baseDir}/scripts/anthropic.py chat \"What is the meaning of life?\" --model claude-sonnet-4-20250514\n\n# Chat with system prompt\npython3 {baseDir}/scripts/anthropic.py chat-system --system \"You are a financial analyst\" \"Analyze AAPL stock\"\n\n# Analyze an image\npython3 {baseDir}/scripts/anthropic.py chat-image --image photo.jpg 'What do you see in this image?'\n\n# Stream a response\npython3 {baseDir}/scripts/anthropic.py stream \"Write a short story about a robot\" --model claude-sonnet-4-20250514\n\nCommands\nchat\n\nSend a message to Claude.\n\npython3 {baseDir}/scripts/anthropic.py chat \"What is the meaning of life?\" --model claude-sonnet-4-20250514\n\nchat-system\n\nChat with system prompt.\n\npython3 {baseDir}/scripts/anthropic.py chat-system --system \"You are a financial analyst\" \"Analyze AAPL stock\"\n\nchat-image\n\nAnalyze an image.\n\npython3 {baseDir}/scripts/anthropic.py chat-image --image photo.jpg 'What do you see in this image?'\n\nstream\n\nStream a response.\n\npython3 {baseDir}/scripts/anthropic.py stream \"Write a short story about a robot\" --model claude-sonnet-4-20250514\n\nbatch-create\n\nCreate a batch request.\n\npython3 {baseDir}/scripts/anthropic.py batch-create requests.jsonl\n\nbatch-list\n\nList batch jobs.\n\npython3 {baseDir}/scripts/anthropic.py batch-list\n\nbatch-get\n\nGet batch status.\n\npython3 {baseDir}/scripts/anthropic.py batch-get batch_abc123\n\nbatch-results\n\nGet batch results.\n\npython3 {baseDir}/scripts/anthropic.py batch-results batch_abc123\n\ncount-tokens\n\nCount tokens in a message.\n\npython3 {baseDir}/scripts/anthropic.py count-tokens \"How many tokens is this message?\"\n\nmodels\n\nList available models.\n\npython3 {baseDir}/scripts/anthropic.py models\n\ntools\n\nChat with tool use.\n\npython3 {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?\"\n\nthinking\n\nExtended thinking mode.\n\npython3 {baseDir}/scripts/anthropic.py thinking \"Solve this math problem step by step: what is 123 * 456?\" --budget 10000\n\nOutput Format\n\nAll commands output JSON by default. Add --human for readable formatted output.\n\n# JSON (default, for programmatic use)\npython3 {baseDir}/scripts/anthropic.py chat --limit 5\n\n# Human-readable\npython3 {baseDir}/scripts/anthropic.py chat --limit 5 --human\n\nScript Reference\nScript\tDescription\n{baseDir}/scripts/anthropic.py\tMain CLI — all Anthropic operations\nData Policy\n\nThis 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.\n\nCredits\n\nBuilt by M. Abidi | agxntsix.ai YouTube | GitHub Part of the AgxntSix Skill Suite for OpenClaw agents.\n\n📅 Need help setting up OpenClaw for your business? Book a free consultation"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/aiwithabidi/anthropic",
    "publisherUrl": "https://clawhub.ai/aiwithabidi/anthropic",
    "owner": "aiwithabidi",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}