LLM Skills
~/catalogue/backend//new-sdk-app
Backendsource GitHub

Créer une app Claude Agent SDK

/new-sdk-app

Vous êtes chargé d'aider l'utilisateur à créer une nouvelle application SDK de l'agent Claude. Suivez attentivement les étapes suivantes :

anthropicsanthropics
36.0k
5 juin 2026
Apache-2.0
// contenu du skill

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
  1. 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
  1. 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
  1. 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
  1. 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
  1. 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
  1. 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
  1. 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
  1. 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
  1. 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/
  1. 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:
// source originale publique
anthropics/claude-plugins-official
/plugins/agent-sdk-dev/commands/new-sdk-app.md
Licence : Apache-2.0
Projet indépendant, non affilié à Anthropic. Ce skill reste la propriété de son auteur original.
// installer ce skill
Collez cette commande dans votre terminal à la racine de votre projet :
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"
Ensuite dans Claude Code, tapez /new-sdk-app pour l'activer.
open_in_newVoir la source originale
// sauvegarder
Sauvegarde disponible après connexion.
loginSe connecter pour sauvegarder
// informations
Créateuranthropics
Étoiles 36.0k
CatégorieBackend
LicenceApache-2.0
Mis à jour5 juin 2026
Format.md
AccèsGratuit
// similaires

Skills Backend

Voir toutarrow_forward