[PR #383] [CLOSED] poc: implement self-hosted async subagent with agent protocol on aws #415

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

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/deepagentsjs/pull/383
Author: @colifran
Created: 3/27/2026
Status: Closed

Base: alphaHead: colifran/agent-protocol-poc


📝 Commits (2)

  • 724ce97 self-host agent protocol aws
  • db60e9b lightweight agent protocol server

📊 Changes

24 files changed (+2758 additions, -37 deletions)

View changed files

examples/agent-protocol-poc/.env.example (+6 -0)
examples/agent-protocol-poc/.gitignore (+3 -0)
examples/agent-protocol-poc/infra/bin/app.ts (+11 -0)
examples/agent-protocol-poc/infra/lib/researcher-stack.ts (+204 -0)
examples/agent-protocol-poc/infra/package-lock.json (+698 -0)
examples/agent-protocol-poc/infra/package.json (+20 -0)
examples/agent-protocol-poc/infra/tsconfig.json (+13 -0)
examples/agent-protocol-poc/langgraph.json (+8 -0)
examples/agent-protocol-poc/package.json (+14 -0)
examples/agent-protocol-poc/researcher.ts (+84 -0)
examples/agent-protocol-poc/supervisor.ts (+57 -0)
examples/agent-protocol-server/Dockerfile (+20 -0)
examples/agent-protocol-server/infra/bin/app.ts (+11 -0)
examples/agent-protocol-server/infra/cdk.context.json (+10 -0)
examples/agent-protocol-server/infra/cdk.json (+7 -0)
examples/agent-protocol-server/infra/lib/stack.ts (+124 -0)
examples/agent-protocol-server/infra/package-lock.json (+1035 -0)
examples/agent-protocol-server/infra/package.json (+20 -0)
examples/agent-protocol-server/infra/tsconfig.json (+13 -0)
examples/agent-protocol-server/package.json (+24 -0)

...and 4 more files

📄 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/383 **Author:** [@colifran](https://github.com/colifran) **Created:** 3/27/2026 **Status:** ❌ Closed **Base:** `alpha` ← **Head:** `colifran/agent-protocol-poc` --- ### 📝 Commits (2) - [`724ce97`](https://github.com/langchain-ai/deepagentsjs/commit/724ce9794946b60d925dd9e226327fcb3afb8c23) self-host agent protocol aws - [`db60e9b`](https://github.com/langchain-ai/deepagentsjs/commit/db60e9b98794f4fae7855ed0a696a0809ce24e21) lightweight agent protocol server ### 📊 Changes **24 files changed** (+2758 additions, -37 deletions) <details> <summary>View changed files</summary> ➕ `examples/agent-protocol-poc/.env.example` (+6 -0) ➕ `examples/agent-protocol-poc/.gitignore` (+3 -0) ➕ `examples/agent-protocol-poc/infra/bin/app.ts` (+11 -0) ➕ `examples/agent-protocol-poc/infra/lib/researcher-stack.ts` (+204 -0) ➕ `examples/agent-protocol-poc/infra/package-lock.json` (+698 -0) ➕ `examples/agent-protocol-poc/infra/package.json` (+20 -0) ➕ `examples/agent-protocol-poc/infra/tsconfig.json` (+13 -0) ➕ `examples/agent-protocol-poc/langgraph.json` (+8 -0) ➕ `examples/agent-protocol-poc/package.json` (+14 -0) ➕ `examples/agent-protocol-poc/researcher.ts` (+84 -0) ➕ `examples/agent-protocol-poc/supervisor.ts` (+57 -0) ➕ `examples/agent-protocol-server/Dockerfile` (+20 -0) ➕ `examples/agent-protocol-server/infra/bin/app.ts` (+11 -0) ➕ `examples/agent-protocol-server/infra/cdk.context.json` (+10 -0) ➕ `examples/agent-protocol-server/infra/cdk.json` (+7 -0) ➕ `examples/agent-protocol-server/infra/lib/stack.ts` (+124 -0) ➕ `examples/agent-protocol-server/infra/package-lock.json` (+1035 -0) ➕ `examples/agent-protocol-server/infra/package.json` (+20 -0) ➕ `examples/agent-protocol-server/infra/tsconfig.json` (+13 -0) ➕ `examples/agent-protocol-server/package.json` (+24 -0) _...and 4 more files_ </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:22:59 -04:00
yindo closed this issue 2026-06-05 17:23:00 -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#415