Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计通过

anthropic-expertAnthropic expert 搜索

Agent Skill

anthropic-expert 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,187

周安装

51

GitHub Stars

74

下载量

416
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:anthropic-expert(Anthropic expert 搜索)
来源仓库:https://github.com/raintree-technology/claude-starter
仓库路径:skills/anthropic-expert
安装命令:
npx skills add https://github.com/raintree-technology/claude-starter --skill anthropic-expert
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/raintree-technology/claude-starter --skill anthropic-expert

简介

anthropic-expert 提供 Anthropic 全产品线的综合知识库,覆盖 6 大产品与 100+ 功能点。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中查询 Claude API、Agent SDK、Claude Code 等主题。
  • 包含完整文档、代码示例与跨产品集成模式,支持快速定位技术细节与最佳实践。
  • 安装前请核实是否需要联网获取最新资料,注意是否会缓存大量数据占用存储。
  • 适用于开发者、研究员与面试准备,提供结构化检索与深度技术参考。

SKILL.md

Anthropic Expert

Overview

anthropic-expert provides comprehensive expertise on all Anthropic products, features, and integrations. It covers 6 major product areas with complete documentation, 100+ features, code examples, and cross-product integration patterns.

Purpose: One-stop knowledge base for all Anthropic products and capabilities

Coverage (100% of Anthropic ecosystem):

  • 6 Products: Claude Models, Claude API, Python SDK, Agent SDK, Claude Code, MCP
  • 100+ Features: All API features, SDK capabilities, Agent concepts, Claude Code topics
  • 44 Claude Code Topics: Complete CLI documentation
  • All SDKs: Python + TypeScript SDKs for API and Agent development
  • All Tools: 10+ built-in tools + custom tool creation
  • Administration: Workspaces, usage tracking, costs, security, compliance

What's Included:

  • Complete feature documentation with examples
  • Code snippets for all major features (50+ examples)
  • Cross-product integration patterns
  • Best practices from official docs
  • Searchable references (search-docs.py)
  • Update tracking (maintained by anthropic-docs-updater)

The 6 Capabilities

Capability 1: Claude Models & API Expertise

What It Covers:

  • All Claude models (Sonnet 4.5, Opus 4.1, Haiku 4.5, legacy models)
  • Complete Messages API (endpoints, parameters, streaming)
  • All API features: Prompt Caching, Extended Thinking, Citations, Memory, Vision, PDF, Context Editing
  • Tools ecosystem: Bash, Code execution, Computer use, Web search, MCP connector, Memory tool
  • Files API: Upload, manage, reference documents
  • Skills API: Anthropic-managed skills (Office suite) + custom skills
  • Message Batches: Async processing with 50% cost reduction
  • Admin API: Organization, workspaces, members, API keys, usage, costs

When to Use This Capability:

  • Building applications with Claude API
  • Implementing API features (streaming, caching, tool use)
  • Using advanced features (Extended Thinking, Citations, Memory)
  • Processing images or PDFs
  • Managing costs and usage
  • Building RAG applications
  • Integrating external tools

Quick Navigation:

  • Models overview: See references/claude-api-complete.md - Models section
  • Streaming: See references/claude-api-complete.md - Streaming section
  • Prompt Caching: See references/claude-api-complete.md - Prompt Caching section
  • Tools: See references/claude-api-complete.md - Tools section
  • Admin API: See references/claude-api-complete.md - Admin API section

Key Features Quick Reference:

FeatureWhat It DoesBenefitAvailability
Prompt CachingCache frequent prompts90% cost, 85% latency reductionAll models
Extended ThinkingVisible reasoning processBetter complex reasoningOpus 4.1, Sonnet 4.5
CitationsGround in sourcesTrustworthy responsesAll models
MemoryPersistent contextLong-term task awarenessAll models
VisionProcess imagesMultimodal applicationsAll models
PDF SupportParse PDFsDocument processingAll models
Message BatchesAsync processing50% cost reductionAll models
Files APIUpload once, use multiple timesEfficient document handlingBeta
Skills APIExtend capabilitiesOffice docs, custom skillsBeta

Capability 2: Python SDK Usage

What It Covers:

  • Installation and setup (pip install anthropic)
  • Sync client usage (basic patterns)
  • Async client usage (asyncio integration)
  • Streaming responses (server-sent events)
  • Tool use integration (function calling)
  • Prompt caching SDK integration
  • Batch processing (async requests)
  • File management (Files API via SDK)
  • Error handling (exceptions, retries, timeouts)
  • Configuration (API keys, settings)
  • Type safety (typing support)
  • 30+ code examples

When to Use This Capability:

  • Python application development
  • Integrating Claude into Python projects
  • Async/await patterns needed
  • Type-safe Claude integration
  • Production Python applications

Quick Navigation:

  • Installation: references/python-sdk-reference.md - Installation section
  • Basic usage: references/python-sdk-reference.md - Basic Usage
  • Streaming: references/python-sdk-reference.md - Streaming section
  • Tool use: references/python-sdk-reference.md - Tool Use section

Quick Start Example:

import anthropic

# Initialize client
client = anthropic.Anthropic(api_key="your_api_key")

# Create message
message = client.messages.create(
    model="claude-sonnet-4-5-20250929",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Hello, Claude!"}]
)

print(message.content)

Capability 3: Agent SDK Expertise

What It Covers:

  • Agent SDK overview (Python + TypeScript)
  • Installation (claude-agent-sdk)
  • Agents (creation, configuration, deployment)
  • Subagents (.claude/agents/, composition patterns)
  • Agent Skills (.claude/skills/, reusable capabilities)
  • Tools (built-in ecosystem + custom tool creation)
  • Sessions (multi-turn conversations, state management)
  • Permissions (fine-grained access control)
  • Streaming modes (single vs streaming)
  • Hooks (.claude/settings.json, event-driven automation)
  • Slash Commands (built-in + custom commands)
  • Plugins (programmable extensions, Beta)
  • System prompts (agent instructions)
  • MCP integration (protocol support in agents)
  • Cost tracking (expense monitoring)
  • Hosting (deployment patterns)
  • Use cases (coding agents, business agents)
  • 25+ code examples

When to Use This Capability:

  • Building AI agents
  • Creating autonomous systems
  • Agent composition (subagents)
  • Reusable agent capabilities (skills)
  • Production agent deployment
  • Custom tool integration
  • Session-based applications

Quick Navigation:

  • Agents: references/agent-sdk-complete.md - Agents section
  • Subagents: references/agent-sdk-complete.md - Subagents section
  • Skills: references/agent-sdk-complete.md - Agent Skills section
  • Tools: references/agent-sdk-complete.md - Tools section
  • Deployment: references/agent-sdk-complete.md - Hosting section

Key Concepts:

ConceptDescriptionStorageUse Case
AgentsSpecialized AI for tasksCode/configCustom assistants
SubagentsDelegated specialists.claude/agents/*.mdTask delegation
Agent SkillsReusable capabilities.claude/skills/*Capability sharing
ToolsExternal integrationsAgent configAPI/service calls
SessionsMulti-turn conversationsSession statePersistent interactions
HooksEvent automation.claude/settings.jsonValidation, workflows
Slash CommandsCustom commands.md filesQuick actions
PluginsProgrammable extensionsPlugin codeCustom functionality

Capability 4: Claude Code Mastery

What It Covers (All 44 Documentation Pages):

GETTING STARTED:

  • Overview (capabilities, Unix philosophy)
  • Quickstart (8-step setup guide)
  • Common Workflows (codebase analysis, debugging, refactoring, testing, git integration)
  • Claude Code on the Web (cloud execution)

BUILD WITH CLAUDE CODE:

  • Sub-agents (specialized AI agents for delegated tasks)
  • Plugins (extending functionality with custom code)
  • Skills (creating reusable agent capabilities)
  • Output Styles (customizing response formatting)
  • Hooks Guide (event-driven automation and validation)
  • Headless (API-based integration without terminal UI)
  • GitHub Actions (CI/CD workflow automation)

DEPLOYMENT & CI/CD:

  • GitLab CI/CD (pipeline integration)
  • MCP (Model Context Protocol server setup)
  • Migration Guide (version upgrade instructions)
  • Troubleshooting (common issues and solutions)
  • Third-party Integrations (enterprise provider strategies)
  • Amazon Bedrock (AWS model access)
  • Google Vertex AI (GCP model setup)
  • Network Config (proxy, certificate management)

ADMINISTRATION:

  • LLM Gateway (LiteLLM routing configuration)
  • DevContainer (containerized development)
  • Sandboxing (security isolation)
  • Setup (cross-platform installation)
  • IAM (authentication and permissions)
  • Security (threat protection, best practices)
  • Data Usage (privacy policies, telemetry)
  • Monitoring Usage (metrics collection)
  • Costs (expense tracking and optimization)

CONFIGURATION:

  • Analytics (team usage metrics)
  • Plugin Marketplaces (distributing and discovering plugins)
  • Settings (configuration files and precedence)
  • VS Code (extension setup)
  • JetBrains (IntelliJ-based IDE plugin)
  • Terminal Config (shell customization)
  • Model Config (model selection and caching)
  • Memory (persistent context management)

REFERENCE:

  • Statusline (custom status line creation)
  • CLI Reference (command syntax and flags)
  • Interactive Mode (keyboard shortcuts, editing)
  • Slash Commands (built-in and custom commands)
  • Checkpointing (session state management)
  • Hooks (advanced hook configuration)

ADDITIONAL:

  • Plugins Reference (plugin schema and structure)
  • Legal and Compliance (licensing, BAA)

When to Use This Capability:

  • Developing with Claude Code CLI
  • Creating custom skills
  • Building sub-agents
  • Developing plugins
  • CI/CD integration
  • Enterprise deployment
  • Configuring Claude Code
  • Troubleshooting issues

Quick Navigation:

  • All topics: references/claude-code-reference.md (organized by category)
  • Specific feature: Use search: python scripts/search-docs.py "hooks"

Capability 5: MCP Integration

What It Covers:

  • Model Context Protocol specification
  • MCP server development (creating custom servers)
  • MCP client integration (connecting to servers)
  • Tool creation (building MCP tools)
  • Security best practices (securing MCP integrations)
  • Integration across products (API MCP connector, Agent SDK MCP, Claude Code MCP)
  • Common MCP servers (Slack, GitHub, Google Drive, Jira, Asana)
  • Custom MCP server examples

When to Use This Capability:

  • Connecting Claude to external services
  • Building custom MCP servers
  • Integrating with enterprise tools (Slack, Jira, etc.)
  • Creating custom tool ecosystems
  • Extending Claude capabilities

Quick Navigation:

  • MCP overview: references/mcp-integration-guide.md - Protocol Overview
  • Server development: references/mcp-integration-guide.md - Server Development
  • Examples: references/mcp-integration-guide.md - Examples section

MCP in Products:

  • Claude API: MCP connector tool (Beta) - call MCP servers from API
  • Agent SDK: Built-in MCP integration - agents can use MCP servers
  • Claude Code: Native MCP support - connect to servers via config

Capability 6: Administration & Enterprise

What It Covers:

  • Workspaces (create, manage, organize projects)
  • API Key management (create, rotate, secure)
  • Organization members (add, remove, roles, permissions)
  • Usage tracking (token counts, request metrics, analytics)
  • Cost management (expense tracking, optimization, budgets)
  • IAM (authentication methods, permission models)
  • Security (threat protection, data encryption, compliance)
  • Compliance (BAA for healthcare, legal requirements)
  • Admin API (programmatic management)
  • Code examples for all admin operations

When to Use This Capability:

  • Enterprise deployment
  • Team/organization management
  • Cost tracking and optimization
  • Security configuration
  • Compliance requirements (healthcare, financial)
  • Programmatic administration

Quick Navigation:

  • Complete guide: references/administration-reference.md
  • Specific topic: Search: python scripts/search-docs.py "workspaces"

Admin API Quick Reference:

OperationEndpointUse Case
Get Org InfoGET /v1/organizationOrg details
List MembersGET /v1/organization/membersTeam management
Create WorkspacePOST /v1/organization/workspacesProject organization
Get UsageGET /v1/organization/usageToken tracking
Get CostsGET /v1/organization/costsExpense monitoring
Manage KeysPOST /v1/organization/api_keysKey creation

Integration Scenarios

Scenario 1: API Development → Production Deployment

Use Case: Develop with API, deploy as agent

Workflow:

  1. Development (Claude API + Python SDK):

- Use Python SDK for development - Implement with API features (streaming, caching, tools) - Test locally with API client

  1. Agent Creation (Agent SDK):

- Convert API application to agent - Use Agent SDK for deployment - Add session management, permissions

  1. Production (Agent hosting):

- Deploy agent with hosting patterns - Monitor with cost tracking - Manage with Admin API

Products Used: Claude API → Python SDK → Agent SDK See: references/integration-patterns.md - API to Agent Pattern


Scenario 2: Local Development → Cloud Deployment

Use Case: Develop locally with Claude Code, deploy to production

Workflow:

  1. Local Development (Claude Code):

- Use Claude Code CLI for local development - Create skills, sub-agents, plugins - Test workflows locally

  1. Adaptation (Agent SDK):

- Convert Claude Code skills to Agent SDK skills - Adapt sub-agents for production - Add production tooling

  1. Deployment:

- Deploy agent with Agent SDK hosting - Use MCP for external integrations - Monitor with Admin API

Products Used: Claude Code → Agent SDK → MCP See: references/integration-patterns.md - Claude Code to Production Pattern


Scenario 3: RAG Application

Use Case: Build retrieval-augmented generation system

Workflow:

  1. Document Management (Files API):

- Upload documents via Files API - Manage document library

  1. Search Integration (Search Results + Citations):

- Provide search results to Claude - Enable citations for grounding

  1. Query Processing (Messages API):

- Send queries with document context - Get cited responses

Products Used: Files API + Search Results + Citations See: references/integration-patterns.md - RAG Pipeline Pattern


Scenario 4: MCP Everywhere

Use Case: Integrate external services across all products

MCP in Claude API:

  • Use MCP connector tool (Beta)
  • Call MCP servers from API requests
  • Example: {"type": "mcp_connector", "server": "slack"}

MCP in Agent SDK:

  • Built-in MCP integration
  • Agents access MCP servers directly
  • Configure in agent settings

MCP in Claude Code:

  • Native MCP support
  • Connect via.claude/mcp-servers config
  • Auto-discovered tools

Products Used: MCP across API, Agent SDK, Claude Code See: references/mcp-integration-guide.md - Integration Across Products


Best Practices

1. Choose the Right Product

Use Claude API when:

  • Direct API integration needed
  • Custom application development
  • Maximum flexibility required
  • You manage infrastructure

Use Python SDK when:

  • Python applications
  • Type safety desired
  • Async/await patterns needed
  • Simplified API access

Use Agent SDK when:

  • Building autonomous agents
  • Session-based applications
  • Need subagents or agent composition
  • Production agent deployment

Use Claude Code when:

  • Terminal-based development
  • Local skill/agent creation
  • Quick prototyping
  • Developer productivity

2. Optimize Costs

Prompt Caching (90% cost reduction):

  • Cache system prompts, long documents
  • Standard: 5-min TTL (most use cases)
  • Extended: 1-hour TTL (very frequent access)

Message Batches (50% cost reduction):

  • Use for async/batch processing
  • Ideal for background jobs, bulk operations

Model Selection:

  • Haiku 4.5: Fast, cheap (simple tasks)
  • Sonnet 4.5: Balanced (most use cases)
  • Opus 4.1: Complex reasoning (when needed)

3. Leverage Progressive Features

Start simple, add features as needed:

  1. Basic Messages API
  2. Add Streaming (better UX)
  3. Add Prompt Caching (cost savings)
  4. Add Tool Use (external integration)
  5. Add Extended Thinking (complex reasoning)
  6. Add Citations (trustworthiness)
  7. Add Memory (long-term context)

4. Integrate with MCP

Why MCP: Standardized integration to external services

Use Across Products:

  • API: MCP connector tool
  • Agent SDK: Built-in MCP integration
  • Claude Code: Native MCP support

Common MCP Servers:

  • Slack (team communication)
  • GitHub (code management)
  • Google Drive (documents)
  • Jira (project management)
  • Custom servers (your services)

5. Monitor Usage and Costs

Admin API Tracking:

  • GET /v1/organization/usage (token metrics)
  • GET /v1/organization/costs (expense data)
  • Monitor by workspace for project tracking

Cost Optimization:

  • Use caching aggressively
  • Choose appropriate models
  • Batch async work
  • Monitor with Admin API

See Also

For specialized deep-dives on advanced topics:

  • claude-opus-4-5-guide: Comprehensive guide to Opus 4.5, effort parameter, model selection, and benchmark comparisons
  • claude-context-management: Context editing strategies (server-side clearing, client-side compaction), memory tool integration for infinite conversations
  • claude-advanced-tool-use: Tool search (10,000+ tools), programmatic calling, tool use examples for production systems
  • claude-cost-optimization: Cost tracking, ROI measurement, optimization patterns (caching, batching, context editing, effort tuning)

Quick Reference

Product Navigator

Need ToUse ProductSee Reference
Call Claude API directlyClaude APIclaude-api-complete.md
Develop in PythonPython SDKpython-sdk-reference.md
Build autonomous agentsAgent SDKagent-sdk-complete.md
Local CLI developmentClaude Codeclaude-code-reference.md
Connect external servicesMCPmcp-integration-guide.md
Manage organizationAdmin APIadministration-reference.md
Cross-product patternsIntegrationintegration-patterns.md

Feature Finder

Want FeatureProductReference Location
Streaming responsesAPI, SDKsclaude-api-complete.md - Streaming
Prompt CachingAPI, SDKsclaude-api-complete.md - Caching
Extended ThinkingAPI, SDKsclaude-api-complete.md - Extended Thinking
Tool use / Function callingAPI, SDKs, Agentsclaude-api-complete.md - Tools
Advanced tool patternsAPI, SDKsclaude-advanced-tool-use/SKILL.md
Context editing & compactionAPI, SDKsclaude-context-management/SKILL.md
Vision / Image processingAPI, SDKsclaude-api-complete.md - Vision
PDF processingAPI, SDKsclaude-api-complete.md - PDF Support
Opus 4.5 & effort parameterAPI, SDKsclaude-opus-4-5-guide/SKILL.md
SubagentsAgent SDKagent-sdk-complete.md - Subagents
Agent SkillsAgent SDK, Claude Codeagent-sdk-complete.md - Skills
HooksAgent SDK, Claude Codeagent-sdk-complete.md - Hooks
Slash CommandsAgent SDK, Claude Codeagent-sdk-complete.md - Slash Commands
MCP integrationAPI, Agent SDK, Claude Codemcp-integration-guide.md
Cost tracking & ROIAdmin API, Agent SDKclaude-cost-optimization/SKILL.md
Cost optimization strategiesAll productsclaude-cost-optimization/SKILL.md

Search Instructions

Find Anything Quickly:

# Search across all references
python scripts/search-docs.py "prompt caching"

# Search specific product
python scripts/search-docs.py "streaming" --product "Python SDK"

# Find code examples
python scripts/search-docs.py "example" --type code

Search Returns:

  • Reference file name
  • Section location
  • Relevant excerpt
  • Line numbers

Latest Models (2025)

ModelBest ForContextFeatures
Sonnet 4.5General purpose, balanced200k-1MExtended Thinking, all features
Opus 4.1Complex reasoning, analysis200kHybrid thinking, extended reasoning
Haiku 4.5Speed, efficiency, cost200kFast responses, cost-effective

Common Workflows

1. Simple API Call:

import anthropic
client = anthropic.Anthropic()
response = client.messages.create(
    model="claude-sonnet-4-5-20250929",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Your prompt"}]
)

2. Streaming Response:

with client.messages.stream(
    model="claude-sonnet-4-5-20250929",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Your prompt"}]
) as stream:
    for text in stream.text_stream:
        print(text, end="", flush=True)

3. Tool Use:

tools = [{"name": "get_weather", "description": "Get weather for location", ...}]
response = client.messages.create(
    model="claude-sonnet-4-5-20250929",
    max_tokens=1024,
    tools=tools,
    messages=[{"role": "user", "content": "What's the weather in SF?"}]
)

4. Prompt Caching:

messages = [
    {
        "role": "user",
        "content": [
            {"type": "text", "text": "System prompt...",
             "cache_control": {"type": "ephemeral"}}
        ]
    }
]

Documentation Structure

anthropic-expert/
├── SKILL.md - This file (overview, capabilities, quick ref)
├── references/
│   ├── claude-api-complete.md - Models, API, all features
│   ├── python-sdk-reference.md - Python SDK complete guide
│   ├── agent-sdk-complete.md - Agent SDK comprehensive
│   ├── claude-code-reference.md - All 44 Claude Code topics
│   ├── mcp-integration-guide.md - MCP across products
│   ├── administration-reference.md - Admin, costs, security
│   ├── integration-patterns.md - Cross-product usage
│   └── changelog.md - Version history, updates
├── scripts/
│   └── search-docs.py - Search all references
└── README.md - Quick start, navigation guide

Total Coverage: ~8,400 lines of comprehensive Anthropic expertise

Update Tracking

Last Updated: 2025-11-07 (initial build) Next Update: Use anthropic-docs-updater skill to check for and apply updates Changelog: See references/changelog.md for version history


anthropic-expert provides complete, searchable, up-to-date expertise on all Anthropic products, features, and integration patterns - your comprehensive guide to the Anthropic ecosystem.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

31.71%
按下载量换算132

OpenCode

24.33%
按下载量换算101

Antigravity

18.64%
按下载量换算78

Codex

12.12%
按下载量换算50

Gemini CLI

7.78%
按下载量换算32

windsurf

3.46%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/raintree-technology/claude-starter --skill anthropic-expert;npx skills add raintree-technology/claude-starter --skill "anthropic-expert" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills