AIAny
AI Agent2025
Icon for item

Claude Agent SDK Demos

Eight example apps for building with the Claude Agent SDK: an IMAP email assistant, a multi-agent research system, an Excel agent, a React/WebSocket chat UI, a .docx resume generator, and hello-world session demos. Local-only, not production.

Introduction

Most SDK example repos stop at a "hello world" and a link to the docs. This one ships eight self-contained apps that each answer a harder question: what does a real agent built on the Claude Agent SDK actually look like in code? The value here isn't the SDK itself — that's documented elsewhere — it's watching the same primitives (subagents, tool use, sessions, streaming) composed into shapes you'd recognize from production work.

What Sets It Apart
  • Range over depth. The demos span an IMAP email assistant, a multi-agent research system with parallel subagents and web search, an Excel/spreadsheet agent, a React + Express chat UI with WebSocket streaming, and a .docx resume generator — so you can pattern-match to your own use case instead of extrapolating from one toy.
  • Two SDK eras side by side. "Hello World" and "Hello World V2" contrast the original API with the V2 Session API (multi-turn conversation, session persistence), making the migration path concrete rather than abstract.
  • Mostly TypeScript, some Python. Roughly 89% TS and 9% Python means the patterns transfer to the two stacks most teams actually build agents in.
  • First-party, so the patterns track the SDK. Maintained by Anthropic alongside the SDK, the examples tend to reflect current idioms rather than drifting community conventions.
Who It's For

Great fit if you're evaluating the Claude Agent SDK and want working reference implementations to read, fork, and strip down — especially the research and email agents, which show genuine multi-step, multi-tool orchestration. Look elsewhere if you need the SDK API reference (read the docs), or a deployable template: the README is explicit that these are local-development demos, not hardened for production or scale.

Information

  • Websitegithub.com
  • AuthorsAnthropic
  • Published date2025/09/17

Categories

More Items

Hugging Face
AI Model2026

Open-weights LLM fine-tuned for phone-based voice agents that prioritizes low latency and reliable tool/function calling. Based on NVIDIA Nemotron 3 Nano (30B total, 3.5B active), supports very long contexts (262,144 tokens) and recommends temperature=0 with thinking disabled for deployment.

GitHub
AI Agent2026

A curated collection of production-ready Agent Skills that turn tasks—presentation production, image generation, local KB retrieval, article assembly, and web-design—into agent-loadable skill folders. Uses a SKILL.md contract, supports multiple agent runtimes (Claude Code, Cursor, Codex), and offers modular install paths with pinned release zips.

GitHub
AI Agent2026

Provides a ruleset and skills that make AI coding agents prefer the simplest correct implementation: reuse existing code, prefer stdlib/native features, and only write minimal new code. Cuts generated LOC, tokens, cost and time while preserving validation and safety.