[PR #4136] [CLOSED] feat(oss): add Advanced section to deepagents customization guide #4132

Closed
opened 2026-06-05 19:12:52 -04:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/docs/pull/4136
Author: @sydney-runkle
Created: 5/21/2026
Status: Closed

Base: mainHead: sr/custom-agents-advanced


📝 Commits (2)

  • f840bab feat(oss): add Advanced section to customization guide
  • 5f82343 feat(oss): expand Advanced section with capability matrix and full middleware coverage

📊 Changes

1 file changed (+168 additions, -0 deletions)

View changed files

📝 src/oss/deepagents/customization.mdx (+168 -0)

📄 Description

Summary

  • Adds a new ## Advanced section to customization.mdx that frames create_deep_agent as a thin wrapper around create_agent + deepagents middleware
  • Shows how to compose a custom agent layer by layer using the four key components from the Interrupt 2026 deep agents talk:
    • Execution environmentFilesystemMiddleware (+ SandboxBackend)
    • Context managementMemoryMiddleware, SkillsMiddleware, note on SummarizationMiddleware
    • Planning & delegationSubAgentMiddleware
    • SteeringHumanInTheLoopMiddleware
  • Single running example (research assistant) built up across all four sections, ending with the fully assembled agent
  • Adds [Advanced](#advanced) to the page TOC
  • Python-only; JS parity is a follow-up

Test plan

  • Verify MDX renders correctly in Mintlify preview
  • Check all @[...] cross-reference links resolve
  • Confirm code examples import paths are correct against deepagents source
  • Verify :::python block hides section for JS variant

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/docs/pull/4136 **Author:** [@sydney-runkle](https://github.com/sydney-runkle) **Created:** 5/21/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `sr/custom-agents-advanced` --- ### 📝 Commits (2) - [`f840bab`](https://github.com/langchain-ai/docs/commit/f840bab17ea898a275f467ab43acc37f125ce367) feat(oss): add Advanced section to customization guide - [`5f82343`](https://github.com/langchain-ai/docs/commit/5f823431518c9de91875de308fe96f9fe04ef207) feat(oss): expand Advanced section with capability matrix and full middleware coverage ### 📊 Changes **1 file changed** (+168 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `src/oss/deepagents/customization.mdx` (+168 -0) </details> ### 📄 Description ## Summary - Adds a new `## Advanced` section to `customization.mdx` that frames `create_deep_agent` as a thin wrapper around `create_agent` + deepagents middleware - Shows how to compose a custom agent layer by layer using the four key components from the Interrupt 2026 deep agents talk: - **Execution environment** — `FilesystemMiddleware` (+ `SandboxBackend`) - **Context management** — `MemoryMiddleware`, `SkillsMiddleware`, note on `SummarizationMiddleware` - **Planning & delegation** — `SubAgentMiddleware` - **Steering** — `HumanInTheLoopMiddleware` - Single running example (research assistant) built up across all four sections, ending with the fully assembled agent - Adds `[Advanced](#advanced)` to the page TOC - Python-only; JS parity is a follow-up ## Test plan - [ ] Verify MDX renders correctly in Mintlify preview - [ ] Check all `@[...]` cross-reference links resolve - [ ] Confirm code examples import paths are correct against deepagents source - [ ] Verify `:::python` block hides section for JS variant --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-06-05 19:12:52 -04:00
yindo closed this issue 2026-06-05 19:12:52 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/docs#4132