[PR #453] [CLOSED] swarm refactor #480

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

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/deepagentsjs/pull/453
Author: @colifran
Created: 4/12/2026
Status: Closed

Base: mainHead: colifran/swarm-refactor


📝 Commits (2)

  • da86868 swarm refactor
  • f26e3d3 poc for state and store execution prop

📊 Changes

15 files changed (+1477 additions, -3 deletions)

View changed files

📝 libs/deepagents/src/agent.ts (+22 -0)
📝 libs/deepagents/src/backends/protocol.ts (+33 -0)
📝 libs/deepagents/src/backends/state.ts (+25 -0)
📝 libs/deepagents/src/backends/store.ts (+24 -0)
📝 libs/deepagents/src/index.ts (+6 -0)
📝 libs/deepagents/src/middleware/index.ts (+8 -0)
📝 libs/deepagents/src/middleware/subagents.ts (+19 -3)
libs/deepagents/src/middleware/swarm.test.ts (+170 -0)
libs/deepagents/src/middleware/swarm.ts (+260 -0)
📝 libs/deepagents/src/middleware/test.ts (+21 -0)
libs/deepagents/src/swarm/executor.test.ts (+419 -0)
libs/deepagents/src/swarm/executor.ts (+283 -0)
libs/deepagents/src/swarm/index.ts (+14 -0)
libs/deepagents/src/swarm/parse.ts (+79 -0)
libs/deepagents/src/swarm/types.ts (+94 -0)

📄 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/453 **Author:** [@colifran](https://github.com/colifran) **Created:** 4/12/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `colifran/swarm-refactor` --- ### 📝 Commits (2) - [`da86868`](https://github.com/langchain-ai/deepagentsjs/commit/da86868cf5682f4473ab5313b2a7e12168c0f8cf) swarm refactor - [`f26e3d3`](https://github.com/langchain-ai/deepagentsjs/commit/f26e3d348b7349f750523b14fda4a48cceae2a97) poc for state and store execution prop ### 📊 Changes **15 files changed** (+1477 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `libs/deepagents/src/agent.ts` (+22 -0) 📝 `libs/deepagents/src/backends/protocol.ts` (+33 -0) 📝 `libs/deepagents/src/backends/state.ts` (+25 -0) 📝 `libs/deepagents/src/backends/store.ts` (+24 -0) 📝 `libs/deepagents/src/index.ts` (+6 -0) 📝 `libs/deepagents/src/middleware/index.ts` (+8 -0) 📝 `libs/deepagents/src/middleware/subagents.ts` (+19 -3) ➕ `libs/deepagents/src/middleware/swarm.test.ts` (+170 -0) ➕ `libs/deepagents/src/middleware/swarm.ts` (+260 -0) 📝 `libs/deepagents/src/middleware/test.ts` (+21 -0) ➕ `libs/deepagents/src/swarm/executor.test.ts` (+419 -0) ➕ `libs/deepagents/src/swarm/executor.ts` (+283 -0) ➕ `libs/deepagents/src/swarm/index.ts` (+14 -0) ➕ `libs/deepagents/src/swarm/parse.ts` (+79 -0) ➕ `libs/deepagents/src/swarm/types.ts` (+94 -0) </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:20 -04:00
yindo closed this issue 2026-06-05 17:23:20 -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#480