[PR #571] [CLOSED] Caller id for occ and other friends #570

Closed
opened 2026-06-05 17:23:47 -04:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/deepagentsjs/pull/571
Author: @brettshollenberger
Created: 6/2/2026
Status: Closed

Base: mainHead: caller-id-for-occ-and-other-friends


📝 Commits (10+)

  • 3cd3c26 Enable todo propagation from subagents to parent
  • 76a7550 Add enhanced todoListMiddleware with UUID and merge-by-id reducer
  • 26bc0fd Emit incremental todo progress via writer() during parallel subagent execution
  • e5dc1a1 Remove debug logging from writer() todo patch emission
  • 9e7bf22 Subagents
  • ccc2fce Pin zod version
  • bbb25ac Use zod v3 imports instead of zod/v4 for langchain compatibility
  • 21ac6b6 Merge pull request #1 from launch10/fix/zod-v3-imports
  • 735c3e6 Update package.json
  • 526e2d9 Add todos middleware changes on top

📊 Changes

11 files changed (+631 additions, -16 deletions)

View changed files

LAUNCH10.md (+262 -0)
📝 libs/deepagents/package.json (+1 -1)
📝 libs/deepagents/src/agent.test-d.ts (+2 -1)
📝 libs/deepagents/src/agent.ts (+5 -1)
📝 libs/deepagents/src/index.ts (+6 -0)
libs/deepagents/src/middleware/subagentReturnState.test.ts (+49 -0)
📝 libs/deepagents/src/middleware/subagents.ts (+120 -10)
libs/deepagents/src/middleware/todos.ts (+166 -0)
📝 libs/deepagents/src/testing/utils.ts (+1 -1)
📝 libs/deepagents/src/types.ts (+17 -0)
📝 pnpm-lock.yaml (+2 -2)

📄 Description

No description provided


🔄 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/deepagentsjs/pull/571 **Author:** [@brettshollenberger](https://github.com/brettshollenberger) **Created:** 6/2/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `caller-id-for-occ-and-other-friends` --- ### 📝 Commits (10+) - [`3cd3c26`](https://github.com/langchain-ai/deepagentsjs/commit/3cd3c260a5699123d8053d4724a9f4edf6ad650f) Enable todo propagation from subagents to parent - [`76a7550`](https://github.com/langchain-ai/deepagentsjs/commit/76a7550c6e34665a539b2836bf3e26590aab89d8) Add enhanced todoListMiddleware with UUID and merge-by-id reducer - [`26bc0fd`](https://github.com/langchain-ai/deepagentsjs/commit/26bc0fd4daf3be0d1865c12c2281d379efdb5839) Emit incremental todo progress via writer() during parallel subagent execution - [`e5dc1a1`](https://github.com/langchain-ai/deepagentsjs/commit/e5dc1a162ea1f3d2a384bdd273761785c4da3ec3) Remove debug logging from writer() todo patch emission - [`9e7bf22`](https://github.com/langchain-ai/deepagentsjs/commit/9e7bf22fd06b3e6bdca08b16dde1128ab24b3386) Subagents - [`ccc2fce`](https://github.com/langchain-ai/deepagentsjs/commit/ccc2fcedf2d504fc944aabdbdbafc4f35cff9058) Pin zod version - [`bbb25ac`](https://github.com/langchain-ai/deepagentsjs/commit/bbb25ac4980d578e591c3a0d30e45c3da1de9eaa) Use zod v3 imports instead of zod/v4 for langchain compatibility - [`21ac6b6`](https://github.com/langchain-ai/deepagentsjs/commit/21ac6b6f2d5a87ffc058718aa5fdd4ef76dd8f09) Merge pull request #1 from launch10/fix/zod-v3-imports - [`735c3e6`](https://github.com/langchain-ai/deepagentsjs/commit/735c3e629d0f880614b1147c53212aad3154e2ad) Update package.json - [`526e2d9`](https://github.com/langchain-ai/deepagentsjs/commit/526e2d9a2464d5ae160a9bb42ef51dce418694b3) Add todos middleware changes on top ### 📊 Changes **11 files changed** (+631 additions, -16 deletions) <details> <summary>View changed files</summary> ➕ `LAUNCH10.md` (+262 -0) 📝 `libs/deepagents/package.json` (+1 -1) 📝 `libs/deepagents/src/agent.test-d.ts` (+2 -1) 📝 `libs/deepagents/src/agent.ts` (+5 -1) 📝 `libs/deepagents/src/index.ts` (+6 -0) ➕ `libs/deepagents/src/middleware/subagentReturnState.test.ts` (+49 -0) 📝 `libs/deepagents/src/middleware/subagents.ts` (+120 -10) ➕ `libs/deepagents/src/middleware/todos.ts` (+166 -0) 📝 `libs/deepagents/src/testing/utils.ts` (+1 -1) 📝 `libs/deepagents/src/types.ts` (+17 -0) 📝 `pnpm-lock.yaml` (+2 -2) </details> ### 📄 Description _No description provided_ --- <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 17:23:47 -04:00
yindo closed this issue 2026-06-05 17:23:47 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/deepagentsjs#570