mirror of
https://github.com/anthropics/claude-cookbooks.git
synced 2025-10-06 01:00:28 +03:00
* Add Claude Code SDK tutorials and examples This PR adds comprehensive tutorials and examples for the Claude Code SDK, including: - Research agent implementation with web search capabilities - Chief of Staff agent with multi-agent coordination - Observability agent with Docker configuration - Supporting utilities and documentation The examples demonstrate key SDK features: - Multi-turn conversations with ClaudeSDKClient - Custom output styles and slash commands - Hooks for automated actions and governance - Script execution via Bash tool - Multi-agent orchestration patterns --------- Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: rodrigo olivares <rodrigoolivares@anthropic.com> Co-authored-by: Alex Notov <zh@anthropic.com>
18 lines
492 B
YAML
18 lines
492 B
YAML
services:
|
|
observability-agent:
|
|
build:
|
|
context: ../..
|
|
dockerfile: observability_agent/docker/Dockerfile
|
|
ports:
|
|
- "8001:8000" # Different port to avoid conflict with research agent
|
|
env_file:
|
|
- ../../.env
|
|
environment:
|
|
- DOCKER_HOST=unix:///var/run/docker.sock
|
|
volumes:
|
|
# Mount Docker socket for MCP server containers
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
dns:
|
|
- 8.8.8.8
|
|
- 8.8.4.4
|
|
restart: unless-stopped |