Deployment Cookbook — Documentation skill for Claude Code
Documentation and examples around deploying LangChain agents.
How to install Deployment Cookbook
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open langchain-ai/deployment-cookbook and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
What Deployment Cookbook does
Documentation and examples around deploying LangChain agents.
Alternatives in Documentation
- Doc Co-authoring — Guide users through structured workflow for co-authoring documentation 94.1k ★
- Context7 — claude-plugins-official Up-to-date library documentation lookup 50.1k ★
- Notion Research Documentation — Research Notion content and synthesize findings into structured briefs 14.6k ★
README
Deployment Cookbook
Reference implementations for running LangChain agents in production. Each example is a full-stack chat app — streaming UI, subagents, thread history — deployed on a different platform using the same [Agent Streaming Protocol](https://github.com/langchain-ai/agent-protocol/tree/main/streaming).
Use these projects as starting points when you need to ship an agent-backed product: copy the stack that matches your hosting environment, swap in your own tools and models, and upgrade persistence when you move beyond a single instance.
What goes into an agent deployment
Every example in this cookbook follows the same shape. The framework and hosting change; the responsibilities do not.
1. Agent runtime
The agent itself, typically a LangGraph graph or [`deepagents`](https://www.npmjs.com/package/deepagents) coordinator, with tools, optional subagents, and middleware. It is compiled with a **checkpointer** so conversation state survives across turns. Examples start with an in-memory `MemorySaver` for simplicity; production deployments swap in Redis ([`@langchain/langgraph-checkpoint-redis`](https://www.npmjs.com/package/@langchain/langgraph-checkpoint-redis)), Postgres ([`@langchain/langgraph-checkpoint-postgres`](https://www.npmjs.com/package/@langchain/langgraph-checkpoint-postgres)), SQLite ([`@langchain/langgraph-checkpoint-sqlite`](https://www.npmjs.com/package/@langchain/langgraph-checkpoint-sqlite)), or platform-specific storage.
2. Protocol server
HTTP route handlers implement the [Agent Streaming Protocol](https://github.com/langchain-ai/agent-protocol/tree/main/streaming) under `/api/threads/...`.
Minimum (streaming chat)
These three endpoints are enough to run a single-threaded streaming chat with `HttpAgentServerAdapter`:
| Method | Path | Purpose |
|---|
Related Skills
Evaluate Examples
You are a documentation auditor for the Agno repo.
Publishing Astro Websites Agentic Skill
A comprehensive Claude Code skill for building and deploying static websites with the Astro framework. Covers
Fec Doc Sync
Sync README, docs, environment variables, scripts, API/routing/component descriptions and deployment instructi
JuiceBox For Unity
JuiceBox for Unity - machine-readable format specs and agent instructions for a node-graph animation tool. The
Examples By Persona
Real-world scenarios showing which skills to use and how to combine them. Each prompt is copy-pasteable. New h
Prefer HTML Output Skill
Claude Code skill: decide when to render output as HTML over Markdown — based on Thariq Shihipar's html-effect
Related Agents
Flutter Android Deployment
Use this agent when deploying Flutter apps to Google Play Store. Specializes in Android app signing, Google Pl
Agentic AI Reviewer
Code reviewer for Agentic AI services (Python 3.14, LangChain v1.2.8, LangGraph v1.0.7, FastAPI 0.135.2). Revi
Deploy To Staging
Use this agent PROACTIVELY when deploying applications to staging or QA environments. This includes running te