LLM Skills
~/catalog/backend//new-sdk-app
BackendGitHub source

Build a Claude Agent SDK app

/new-sdk-app

You are tasked with helping the user create a new Claude Agent SDK application. Follow these steps carefully:

anthropicsanthropics
36.0k
June 5, 2026
Apache-2.0
// skill content

--- description: Create and setup a new Claude Agent SDK application argument-hint: [project-name] --- You are tasked with helping the user create a new Claude Agent SDK application. Follow these steps carefully: ## Reference Documentation Before starting, review the official documentation to ensure you provide accurate and up-to-date guidance. Use WebFetch to read these pages: 1. Start with the overview: https://docs.claude.com/en/api/agent-sdk/overview 2. Based on the user's language choice, read the appropriate SDK reference: - TypeScript: https://docs.claude.com/en/api/agent-sdk/typescript - Python: https://docs.claude.com/en/api/agent-sdk/python 3. Read relevant guides mentioned in the overview such as: - Streaming vs Single Mode - Permissions - Custom Tools - MCP integration - Subagents - Sessions - Any other relevant guides based on the user's needs IMPORTANT: Always check for and use the latest versions of packages. Use WebSearch or WebFetch to verify current versions before installation. ## Gather Requirements IMPORTANT: Ask these questions one at a time. Wait for the user's response before asking the next question. This makes it easier for the user to respond. Ask the questions in this order (skip any that the user has already provided via arguments): 1. Language (ask first): "Would you like to use TypeScript or Python?" - Wait for response before continuing 2. Project name (ask second): "What would you like to name your project?" - If $ARGUMENTS is provided, use that as the project name and skip this question - Wait for response before continuing 3. Agent type (ask third, but skip if #2 was sufficiently detailed): "What kind of agent are you building? Some examples: - Coding agent (SRE, security review, code review) - Business agent (customer support, content creation) - Custom agent (describe your use case)" - Wait for response before continuing 4. Starting point (ask fourth): "Would you like: - A minimal 'Hello World' example to start - A basic agent with common features - A specific example based on your use case" - Wait for response before continuing 5. Tooling choice (ask fifth): Let the user know what tools you'll use, and confirm with them that these are the tools they want to use (for example, they may prefer pnpm or bun over npm). Respect the user's preferences when executing on the requirements. After all questions are answered, proceed to create the setup plan. ## Setup Plan Based on the user's answers, create a plan that includes: 1. Project initialization: - Create project directory (if it doesn't exist) - Initialize package manager: - TypeScript: npm init -y and setup package.json with type: "module" and scripts (include a "typecheck" script) - Python: Create requirements.txt or use poetry init - Add necessary configuration files: - TypeScript: Create tsconfig.json with proper settings for the SDK - Python: Optionally create config files if needed 2. Check for Latest Versions: - BEFORE installing, use WebSearch or check npm/PyPI to find the latest version - For TypeScript: Check https://www.npmjs.com/package/@anthropic-ai/claude-agent-sdk - For Python: Check https://pypi.org/project/claude-agent-sdk/ - Inform the user which version you're installing 3. SDK Installation: - TypeScript: npm install @anthropic-ai/claude-agent-sdk@latest (or specify latest version) - Python: pip install claude-agent-sdk (pip installs latest by default) - After installation, verify the installed version: - TypeScript: Check package.json or run npm list @anthropic-ai/claude-agent-sdk - Python: Run pip show claude-agent-sdk 4. Create starter files: - TypeScript: Create an index.ts or src/index.ts with a basic query example - Python: Create a main.py with a basic query example - Include proper imports and basic error handling - Use modern, up-to-date syntax and patterns from the latest SDK version 5. Environment setup: - Create a .env.example file with ANTHROPIC_API_KEY=your_api_key_here - Add .env to .gitignore - Explain how to get an API key from https://console.anthropic.com/ 6. Optional: Create .claude directory structure: - Offer to create .claude/ directory for agents, commands, and settings - Ask if they want any example subagents or slash commands ## Implementation After gathering requirements and getting user confirmation on the plan: 1. Check for latest package versions using WebSearch or WebFetch 2. Execute the setup steps 3. Create all necessary files 4. Install dependencies (always use latest stable versions) 5. Verify installed versions and inform the user 6. Create a working example based on their agent type 7. Add helpful comments in the code explaining what each part does 8. VERIFY THE CODE WORKS BEFORE FINISHING:

// original public source
anthropics/claude-plugins-official
/plugins/agent-sdk-dev/commands/new-sdk-app.md
License: Apache-2.0
Independent project, not affiliated with Anthropic. This skill remains the property of its original author.
// install this skill
Paste this command in your terminal at the root of your project:
mkdir -p .claude/commands && curl -o ".claude/commands/new-sdk-app.md" "https://raw.githubusercontent.com/anthropics/claude-plugins-official/main/plugins/agent-sdk-dev/commands/new-sdk-app.md"
Then in Claude Code, type /new-sdk-app to activate it.
open_in_newOpen original source
// save
Save available after sign in.
loginSign in to save
// information
Creatoranthropics
Stars 36.0k
CategoryBackend
LicenseApache-2.0
UpdatedJune 5, 2026
Format.md
AccessFree
// similar

Skills Backend

View allarrow_forward