LangChain open-sourced Deep Agents v0.4.11, an MIT agent harness with planning, files, shell access, sub-agents, and auto-summarization. Study it if you want a readable template for building Claude Code-style tools on your own model stack.

Deep Agents v0.4.11 is a batteries-included agent harness rather than a single demo script. In LangChain's post, the stack is described as including task planning, filesystem access for reading and writing code, sandboxed shell execution, delegated sub-agents, and automatic summarization when conversations run long. The repo card in
frames that as an opinionated agent you can run first and customize later.
The linked repository in the Deep Agents repo adds the practical angle: this is meant to be inspectable and modifiable, with the usual production-minded plumbing around agent workflows instead of a black-box interface.
For designers, filmmakers, and musicians who build their own utilities, Deep Agents is useful as a template for multimodal-adjacent production tooling even though the release itself is code-first. The combination of planning, file operations, shell access, and isolated sub-agents maps cleanly to workflows like asset generation pipelines, batch file cleanup, render orchestration, or prompt-to-output automation.
The more important detail in the thread is that the harness is model-agnostic. That makes it easier to study the workflow separately from any one frontier model and adapt the same structure to a custom stack, which is the real creative takeaway here.
LangChain just open-sourced a replica of Claude Code. It’s an MIT-licensed framework that recreates the core workflow behind coding agents like Claude Code but in an open system developers can inspect and modify. It is called Deep Agents. I spent a bit of time looking through Show more
Deep Agents repo : github.com/langchain-ai/d…