Token导航 LogoToken导航TokenDH.com
AI 工具敏感数据github未标认证来源可访问clear审计通过

agent-sdk-developmentAgent SDK 开发

Agent Skill

agent-sdk-development 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

659

周安装

28

GitHub Stars

61

下载量

231
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/melodic-software/claude-code-plugins --skill agent-sdk-development

简介

该技能强制优先调用 docs-management 获取最新官方文档后再回答相关问题。

  • 适用于查询 Agent SDK 会话管理、自定义工具集成或权限配置等主题。
  • 所有回复必须严格基于已加载的官方资料,禁止引用外部知识。
  • 使用前需确认 docs-management 技能已正确安装并能访问 Anthropic 文档源。
  • agent-sdk-development 属于AI 工具类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Agent SDK Meta Skill

🚨 MANDATORY: Invoke docs-management First

STOP - Before providing ANY response about Claude Agent SDK: 1. INVOKE docs-management skill 2. QUERY using keywords: Agent SDK, TypeScript SDK, Python SDK, sessions, custom tools, permissions, or related topics 3. BASE all responses EXCLUSIVELY on official documentation loaded Skipping this step results in outdated or incorrect information.

Verification Checkpoint

Before responding, verify:

  • Did I invoke docs-management skill?
  • Did official documentation load?
  • Is my response based EXCLUSIVELY on official docs?

If ANY checkbox is unchecked, STOP and invoke docs-management first.

Overview

Central authority for Claude Agent SDK (TypeScript and Python SDKs). This skill uses 100% delegation to docs-management - it contains NO duplicated official documentation.

Architecture: Pure delegation with keyword registry. All official documentation is accessed via docs-management skill queries.

Reference Loading Guide

This skill follows a pure delegation architecture with three loading layers:

Layer 1: Always in Context

  • SKILL.md (this file) - Keyword registry, decision trees, delegation patterns

Layer 2: On-Demand via docs-management

All official Agent SDK documentation is accessed through docs-management queries:

doc_idTopic
platform-claude-com-docs-en-agent-sdk-overviewSDK overview and getting started
platform-claude-com-docs-en-agent-sdk-typescriptTypeScript SDK API reference
platform-claude-com-docs-en-agent-sdk-pythonPython SDK API reference
platform-claude-com-docs-en-agent-sdk-sessionsSession management and resumption
platform-claude-com-docs-en-agent-sdk-streaming-vs-single-modeInput mode selection
platform-claude-com-docs-en-agent-sdk-custom-toolsCreating custom tools
platform-claude-com-docs-en-agent-sdk-permissionsPermission configuration
platform-claude-com-docs-en-agent-sdk-modifying-system-promptsSystem prompt customization
platform-claude-com-docs-en-agent-sdk-cost-trackingCost and usage tracking
platform-claude-com-docs-en-agent-sdk-todo-trackingTodo list integration
platform-claude-com-docs-en-agent-sdk-structured-outputsStructured output features
platform-claude-com-docs-en-agent-sdk-hostingProduction hosting patterns
platform-claude-com-docs-en-agent-sdk-mcpMCP server integration
platform-claude-com-docs-en-agent-sdk-pluginsPlugin loading
platform-claude-com-docs-en-agent-sdk-subagentsSubagent usage
platform-claude-com-docs-en-agent-sdk-skillsSkills integration
platform-claude-com-docs-en-agent-sdk-slash-commandsSlash command usage

Layer 3: External Resources (GitHub)

  • TypeScript SDK: anthropics/claude-agent-sdk-typescript
  • Python SDK: anthropics/claude-agent-sdk-python

Loading Strategy

This skill has no local reference files. All documentation is accessed via docs-management queries using the keyword registry below. This ensures:

  • Zero duplication of official documentation
  • Always-current information from canonical sources
  • Zero maintenance overhead for documentation sync

When to Use This Skill

Keywords: Agent SDK, Claude Agent SDK, TypeScript SDK, Python SDK, npm install claude-agent-sdk, pip install claude-agent-sdk, sessions, session resumption, forking sessions, streaming mode, single mode, custom tools, allowedTools, disallowedTools, permissionMode, system prompts, appendSystemPrompt, outputStyle, CLAUDE.md, settingSources, cost tracking, todo tracking, structured outputs, hosting, plugins SDK, MCP SDK, agent branding

Use this skill when:

  • Installing or configuring Claude Agent SDK
  • Setting up authentication (API key, Bedrock, Vertex)
  • Managing sessions and resumption
  • Choosing between streaming and single input modes
  • Creating custom tools
  • Configuring permissions (allowedTools, disallowedTools)
  • Modifying system prompts
  • Tracking costs and usage
  • Working with todo lists in agents
  • Getting structured outputs
  • Hosting agents in production
  • Integrating MCP with SDK
  • Understanding SDK branding requirements

Keyword Registry for docs-management Queries

Use these keywords when querying docs-management skill for official documentation:

SDK Fundamentals

TopicKeywords
Overview"Agent SDK", "Claude Agent SDK overview", "why use Agent SDK"
Installation"Agent SDK installation", "npm install claude-agent-sdk", "pip install claude-agent-sdk"
SDK Options"SDK options", "TypeScript SDK", "Python SDK"
Migration"Claude Code SDK migration", "migration guide"

Authentication

TopicKeywords
API Key"Agent SDK authentication", "ANTHROPIC_API_KEY"
Bedrock"CLAUDE_CODE_USE_BEDROCK", "Bedrock SDK"
Vertex"CLAUDE_CODE_USE_VERTEX", "Vertex SDK"

Sessions

TopicKeywords
Session Management"session management SDK", "session ID", "getting session ID"
Resumption"session resumption", "resume option", "continuing sessions"
Forking"forking sessions", "forkSession", "session branching"

Input Modes

TopicKeywords
Overview"streaming vs single mode", "input modes SDK"
Streaming Mode"streaming input mode", "recommended mode"
Single Mode"single input mode", "non-streaming"

Custom Tools

TopicKeywords
Creating Tools"custom tools SDK", "creating custom tools"
Tool Schema"tool schema", "tool definition SDK"
Tool Handlers"tool handlers", "tool execution SDK"

Permissions

TopicKeywords
Tool Permissions"allowedTools", "disallowedTools", "tool permissions SDK"
Permission Mode"permissionMode SDK", "permission strategy"
Handling Permissions"handling permissions SDK", "permission callbacks"

System Prompts

TopicKeywords
Overview"modifying system prompts", "system prompts SDK"
CLAUDE.md"CLAUDE.md SDK", "settingSources", "project instructions"
Append System Prompt"appendSystemPrompt", "custom instructions"
Output Style"outputStyle SDK", "agent persona"

Cost and Tracking

TopicKeywords
Cost Tracking"cost tracking SDK", "token usage", "billing SDK"
Todo Tracking"todo tracking SDK", "todo lists SDK", "task management"

Structured Outputs

TopicKeywords
Structured Outputs"structured outputs SDK", "JSON results", "validated outputs"
Schema Definition"output schema SDK", "result validation"

Hosting and Deployment

TopicKeywords
Hosting Overview"hosting Agent SDK", "production deployment"
Ephemeral Sessions"ephemeral sessions", "pattern 1 hosting"
Persistent Sessions"persistent sessions", "pattern 2 hosting"

Plugins and MCP

TopicKeywords
Plugins"plugins SDK", "loading plugins", "programmatic plugins"
MCP Integration"MCP SDK", "MCP servers SDK", "extending with MCP"

Branding

TopicKeywords
Branding Guidelines"agent branding", "Claude Agent naming", "SDK branding"

SDK Feature Integration

TopicKeywords
Subagents"subagents SDK", "SDK subagents", "subagent integration"
Skills"skills SDK", "SDK skills", "agent skills SDK"

API Reference

TopicKeywords
TypeScript Reference"TypeScript SDK reference", "TypeScript API"
Python Reference"Python SDK reference", "Python API"
Changelog"SDK changelog", "SDK updates"

Quick Decision Tree

What do you want to do?

  1. Install the SDK -> Query docs-management: "Agent SDK installation"
  2. Set up authentication -> Query docs-management: "Agent SDK authentication"
  3. Manage sessions -> Query docs-management: "session management SDK", "resume option"
  4. Fork a session -> Query docs-management: "forking sessions", "forkSession"
  5. Choose input mode -> Query docs-management: "streaming vs single mode"
  6. Create custom tools -> Query docs-management: "custom tools SDK"
  7. Configure permissions -> Query docs-management: "allowedTools", "permissionMode SDK"
  8. Modify system prompts -> Query docs-management: "modifying system prompts"
  9. Use CLAUDE.md files -> Query docs-management: "CLAUDE.md SDK", "settingSources"
  10. Track costs -> Query docs-management: "cost tracking SDK"
  11. Add todo tracking -> Query docs-management: "todo tracking SDK"
  12. Get structured outputs -> Query docs-management: "structured outputs SDK"
  13. Host in production -> Query docs-management: "hosting Agent SDK"
  14. Use subagents -> Query docs-management: "subagents SDK"
  15. Integrate skills -> Query docs-management: "skills SDK", "agent skills SDK"
  16. Add skills (commands) -> Query docs-management: "skills SDK", "SDK commands"
  17. Load plugins -> Query docs-management: "plugins SDK"

Topic Coverage

SDK Installation and Setup

  • npm package: @anthropic-ai/claude-agent-sdk
  • pip package: claude-agent-sdk
  • TypeScript and Python SDK options
  • Migration from Claude Code SDK

Authentication Methods

  • ANTHROPIC_API_KEY environment variable
  • Amazon Bedrock integration (CLAUDE_CODE_USE_BEDROCK)
  • Google Vertex AI integration (CLAUDE_CODE_USE_VERTEX)
  • Third-party provider configuration

Session Management Features

  • Automatic session creation
  • Session ID capture from init message
  • Session resumption with resume option
  • Forking sessions (forkSession/fork_session)
  • Session branching for experimentation
  • Context preservation across sessions

Input Mode Configuration

  • Streaming input mode (recommended)
  • Single input mode
  • Mode selection criteria
  • Performance considerations

Custom Tool Development

  • Tool schema definition
  • Tool handler implementation
  • Tool registration with SDK
  • Tool execution patterns

Permission Configuration

  • allowedTools list
  • disallowedTools list
  • permissionMode settings
  • Permission callbacks and handling

System Prompt Customization

  • CLAUDE.md file loading (settingSources)
  • appendSystemPrompt option
  • outputStyle for agent persona
  • Project-level vs user-level instructions

Cost and Usage Tracking

  • Token usage monitoring
  • Billing integration patterns
  • Usage reporting
  • Cost estimation

Todo List Integration

  • Todo tracking API
  • Task display and management
  • Progress monitoring
  • Todo state persistence

Structured Output Features

  • Output schema definition
  • JSON result validation
  • Type-safe results
  • TODO tracking agent example

Hosting Patterns

  • Ephemeral sessions pattern
  • Persistent sessions pattern
  • Production deployment strategies
  • Scaling considerations

Full Claude Code Features

  • Subagents (./.claude/agents/)
  • Agent Skills (./.claude/skills/)
  • Hooks (./.claude/settings.json)
  • Plugins (programmatic loading)
  • Memory (CLAUDE.md files)

Branding Requirements

  • Allowed naming (Claude Agent, Claude)
  • Not permitted naming (Claude Code)
  • Product branding guidelines

Delegation Patterns

Standard Query Pattern

User asks: "How do I create a custom tool in the Agent SDK?"

1. Invoke docs-management skill
2. Use keywords: "custom tools SDK", "creating custom tools"
3. Load official documentation
4. Provide guidance based EXCLUSIVELY on official docs

Multi-Topic Query Pattern

User asks: "I want to build an agent with sessions, custom tools, and cost tracking"

1. Invoke docs-management skill with multiple queries:
   - "session management SDK", "session resumption"
   - "custom tools SDK", "creating custom tools"
   - "cost tracking SDK", "token usage"
2. Synthesize guidance from official documentation

Troubleshooting Pattern

User reports: "My session resumption isn't working"

1. Invoke docs-management skill
2. Use keywords: "session management SDK", "resume option", "session ID"
3. Check official docs for session patterns
4. Guide user through proper session handling

Troubleshooting Quick Reference

IssueKeywords for docs-management
Authentication failing"Agent SDK authentication", "ANTHROPIC_API_KEY"
Session not resuming"session resumption", "resume option"
Custom tool not working"custom tools SDK", "tool handlers"
Permissions blocking"allowedTools", "permissionMode SDK"
System prompt not loading"CLAUDE.md SDK", "settingSources"
Cost tracking issues"cost tracking SDK", "token usage"
Structured output invalid"structured outputs SDK", "schema definition"
Streaming not working"streaming input mode", "streaming vs single"

Related Skills

Skills that work well with agent-sdk-development:

  • docs-management - Primary delegation target; provides all official Agent SDK documentation
  • mcp-integration - MCP server configuration; Agent SDK can integrate with MCP servers
  • settings-management - Settings configuration; SDK respects Claude Code settings
  • hook-management - Hook configuration; SDK supports hooks via programmatic loading
  • current-date - Get current UTC date for version history and audit timestamps

Delegation example:

When working with Agent SDK + MCP integration:
1. Use agent-sdk-development for SDK-specific guidance
2. Use mcp-integration for MCP server configuration
3. Both skills delegate to docs-management for official documentation

Additional Resources

For test scenarios, multi-model testing notes, repository-specific guidance, and external references, see:

Version History

  • v1.1.0 (2025-11-27): Comprehensive audit and enhancement

- Added Reference Loading Guide with explicit doc_id table for all 17 official Agent SDK docs - Added Test Scenarios section with 5 common use case scenarios - Added Related Skills section documenting skill composition patterns - Added Multi-Model Testing Notes section - Enhanced Last Verified section with Type B audit metadata - Verified keyword registry covers all official SDK documentation

  • v1.0.0 (2025-11-26): Initial release

- Pure delegation architecture - Comprehensive keyword registry - Quick decision tree - Topic coverage for all Agent SDK features - Troubleshooting quick reference


Last Updated

Date: 2025-11-28 Model: claude-opus-4-5-20251101

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Antigravity

30.38%
按下载量换算70

Claude Code

23.61%
按下载量换算55

OpenCode

18.67%
按下载量换算43

Cursor

14.41%
按下载量换算33

Gemini CLI

7.39%
按下载量换算17

Codex

3.59%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills