[PR #155] [CLOSED] Fix/agents of empire startup fixes #163

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

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/deepagentsjs/pull/155
Author: @thomasdavis
Created: 1/30/2026
Status: Closed

Base: mainHead: fix/agents-of-empire-startup-fixes


📝 Commits (10+)

  • 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
  • cf5482d Merge pull request #1 from DavinciDreams/feature/agents-of-empire-workspace-update
  • 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
  • f2f9436 feat(agents-of-empire): integrate real email service for waitlist
  • 73fecf3 fix(ci): add vercel.json configuration for monorepo deployment

📊 Changes

51 files changed (+23667 additions, -35 deletions)

View changed files

.changeset/fix-cli-test-regex.md (+5 -0)
📝 .gitignore (+16 -0)
apps/agents-of-empire/.env.example (+28 -0)
apps/agents-of-empire/CAMERA_CONTROLS.md (+71 -0)
apps/agents-of-empire/LANDING_SUMMARY.md (+182 -0)
apps/agents-of-empire/PRD.md (+422 -0)
apps/agents-of-empire/README.md (+206 -0)
apps/agents-of-empire/WAITLIST_SETUP.md (+163 -0)
apps/agents-of-empire/dungeon/exploration_1769773615279.md (+31 -0)
apps/agents-of-empire/dungeon/exploration_1769773687620.md (+31 -0)
apps/agents-of-empire/dungeon/exploration_1769774108781.md (+33 -0)
apps/agents-of-empire/index.html (+14 -0)
apps/agents-of-empire/package-lock.json (+4269 -0)
apps/agents-of-empire/package.json (+46 -0)
apps/agents-of-empire/plan.md (+853 -0)
apps/agents-of-empire/postcss.config.js (+6 -0)
apps/agents-of-empire/server/quest-server.ts (+255 -0)
apps/agents-of-empire/src/App.tsx (+490 -0)
apps/agents-of-empire/src/bridge/AgentBridge.tsx (+445 -0)
apps/agents-of-empire/src/core/CameraController.ts (+440 -0)

...and 31 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/155 **Author:** [@thomasdavis](https://github.com/thomasdavis) **Created:** 1/30/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `fix/agents-of-empire-startup-fixes` --- ### 📝 Commits (10+) - [`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 - [`cf5482d`](https://github.com/langchain-ai/deepagentsjs/commit/cf5482db08f4e8b256e6febde18f684a845b08b1) Merge pull request #1 from DavinciDreams/feature/agents-of-empire-workspace-update - [`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 - [`f2f9436`](https://github.com/langchain-ai/deepagentsjs/commit/f2f94361f32b543281989e01562d08102126e2c7) feat(agents-of-empire): integrate real email service for waitlist - [`73fecf3`](https://github.com/langchain-ai/deepagentsjs/commit/73fecf38bb8fb685dc9d8a5435e9451f59725c40) fix(ci): add vercel.json configuration for monorepo deployment ### 📊 Changes **51 files changed** (+23667 additions, -35 deletions) <details> <summary>View changed files</summary> ➕ `.changeset/fix-cli-test-regex.md` (+5 -0) 📝 `.gitignore` (+16 -0) ➕ `apps/agents-of-empire/.env.example` (+28 -0) ➕ `apps/agents-of-empire/CAMERA_CONTROLS.md` (+71 -0) ➕ `apps/agents-of-empire/LANDING_SUMMARY.md` (+182 -0) ➕ `apps/agents-of-empire/PRD.md` (+422 -0) ➕ `apps/agents-of-empire/README.md` (+206 -0) ➕ `apps/agents-of-empire/WAITLIST_SETUP.md` (+163 -0) ➕ `apps/agents-of-empire/dungeon/exploration_1769773615279.md` (+31 -0) ➕ `apps/agents-of-empire/dungeon/exploration_1769773687620.md` (+31 -0) ➕ `apps/agents-of-empire/dungeon/exploration_1769774108781.md` (+33 -0) ➕ `apps/agents-of-empire/index.html` (+14 -0) ➕ `apps/agents-of-empire/package-lock.json` (+4269 -0) ➕ `apps/agents-of-empire/package.json` (+46 -0) ➕ `apps/agents-of-empire/plan.md` (+853 -0) ➕ `apps/agents-of-empire/postcss.config.js` (+6 -0) ➕ `apps/agents-of-empire/server/quest-server.ts` (+255 -0) ➕ `apps/agents-of-empire/src/App.tsx` (+490 -0) ➕ `apps/agents-of-empire/src/bridge/AgentBridge.tsx` (+445 -0) ➕ `apps/agents-of-empire/src/core/CameraController.ts` (+440 -0) _...and 31 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:19 -05:00
yindo closed this issue 2026-02-16 06:17:19 -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#163