[PR #146] [CLOSED] Feature/agents of empire workspace update #156

Closed
opened 2026-02-16 06:17:18 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/deepagentsjs/pull/146
Author: @DavinciDreams
Created: 1/26/2026
Status: Closed

Base: mainHead: feature/agents-of-empire-workspace-update


📝 Commits (7)

  • e0f444a fix: update workspace config and fix CLI platform test regex
  • 4614072 feat: add landing page and update game UI
  • 192fab1 ts fixes
  • 3029ccc fix(agents-of-empire): resolve infinite loop and crash on game load
  • ef701c3 fix(agents-of-empire): add tiles shallow selector and fix GameHooks
  • a949068 fix(agents-of-empire): resolve infinite loop in useCamera hook
  • 8cf14cc feat(agents-of-empire): update game entities and landing page

📊 Changes

35 files changed (+15041 additions, -31 deletions)

View changed files

.changeset/fix-cli-test-regex.md (+5 -0)
apps/agents-of-empire/LANDING_SUMMARY.md (+182 -0)
apps/agents-of-empire/PRD.md (+422 -0)
apps/agents-of-empire/README.md (+179 -0)
apps/agents-of-empire/index.html (+14 -0)
apps/agents-of-empire/package.json (+40 -0)
apps/agents-of-empire/plan.md (+688 -0)
apps/agents-of-empire/postcss.config.js (+6 -0)
apps/agents-of-empire/src/App.tsx (+292 -0)
apps/agents-of-empire/src/bridge/AgentBridge.tsx (+393 -0)
apps/agents-of-empire/src/core/CameraController.ts (+306 -0)
apps/agents-of-empire/src/core/Game.tsx (+71 -0)
apps/agents-of-empire/src/core/GameHooks.ts (+234 -0)
apps/agents-of-empire/src/core/SelectionSystem.tsx (+272 -0)
apps/agents-of-empire/src/entities/AgentPool.tsx (+162 -0)
apps/agents-of-empire/src/entities/Dragon.tsx (+507 -0)
apps/agents-of-empire/src/entities/GameAgent.tsx (+402 -0)
apps/agents-of-empire/src/entities/Structure.tsx (+285 -0)
apps/agents-of-empire/src/examples/DeepAgentExample.ts (+161 -0)
apps/agents-of-empire/src/index.css (+46 -0)

...and 15 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/146 **Author:** [@DavinciDreams](https://github.com/DavinciDreams) **Created:** 1/26/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feature/agents-of-empire-workspace-update` --- ### 📝 Commits (7) - [`e0f444a`](https://github.com/langchain-ai/deepagentsjs/commit/e0f444a59bfd2335a516ef4c745c914b9a2cda09) fix: update workspace config and fix CLI platform test regex - [`4614072`](https://github.com/langchain-ai/deepagentsjs/commit/461407217f4becdc390ea37885fd0cf4cb4854c3) feat: add landing page and update game UI - [`192fab1`](https://github.com/langchain-ai/deepagentsjs/commit/192fab130bd17a6bbbbf16ea187bd02a01ddbe80) ts fixes - [`3029ccc`](https://github.com/langchain-ai/deepagentsjs/commit/3029cccd068008a7df250281b4ae42d4a89a6c04) fix(agents-of-empire): resolve infinite loop and crash on game load - [`ef701c3`](https://github.com/langchain-ai/deepagentsjs/commit/ef701c39fffa5d968de100f890613852c587de08) fix(agents-of-empire): add tiles shallow selector and fix GameHooks - [`a949068`](https://github.com/langchain-ai/deepagentsjs/commit/a949068af4d7fbcca7cf911caf858248ea98244e) fix(agents-of-empire): resolve infinite loop in useCamera hook - [`8cf14cc`](https://github.com/langchain-ai/deepagentsjs/commit/8cf14ccfb436ef09e00ff0eee30f5fc7b5d096e1) feat(agents-of-empire): update game entities and landing page ### 📊 Changes **35 files changed** (+15041 additions, -31 deletions) <details> <summary>View changed files</summary> ➕ `.changeset/fix-cli-test-regex.md` (+5 -0) ➕ `apps/agents-of-empire/LANDING_SUMMARY.md` (+182 -0) ➕ `apps/agents-of-empire/PRD.md` (+422 -0) ➕ `apps/agents-of-empire/README.md` (+179 -0) ➕ `apps/agents-of-empire/index.html` (+14 -0) ➕ `apps/agents-of-empire/package.json` (+40 -0) ➕ `apps/agents-of-empire/plan.md` (+688 -0) ➕ `apps/agents-of-empire/postcss.config.js` (+6 -0) ➕ `apps/agents-of-empire/src/App.tsx` (+292 -0) ➕ `apps/agents-of-empire/src/bridge/AgentBridge.tsx` (+393 -0) ➕ `apps/agents-of-empire/src/core/CameraController.ts` (+306 -0) ➕ `apps/agents-of-empire/src/core/Game.tsx` (+71 -0) ➕ `apps/agents-of-empire/src/core/GameHooks.ts` (+234 -0) ➕ `apps/agents-of-empire/src/core/SelectionSystem.tsx` (+272 -0) ➕ `apps/agents-of-empire/src/entities/AgentPool.tsx` (+162 -0) ➕ `apps/agents-of-empire/src/entities/Dragon.tsx` (+507 -0) ➕ `apps/agents-of-empire/src/entities/GameAgent.tsx` (+402 -0) ➕ `apps/agents-of-empire/src/entities/Structure.tsx` (+285 -0) ➕ `apps/agents-of-empire/src/examples/DeepAgentExample.ts` (+161 -0) ➕ `apps/agents-of-empire/src/index.css` (+46 -0) _...and 15 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-02-16 06:17:18 -05:00
yindo closed this issue 2026-02-16 06:17:18 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/deepagentsjs#156