From 9738aeabd7993005cce18fc011f46b1dae6cc468 Mon Sep 17 00:00:00 2001 From: Ivorisnoob Date: Sat, 14 Mar 2026 13:49:45 +0530 Subject: [PATCH 1/2] Fixed a Typo in Agents.md --- AGENTS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index ac24c6a2c..1fbe7e4b1 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -21,7 +21,7 @@ If a tradeoff is required, choose correctness and robustness over short-term con ## Maintainability -Long term maintainability is a core priority. If you add new functionality, first check if there are shared logic that can be extracted to a separate module. Duplicate logic across mulitple files is a code smell and should be avoided. Don't be afraid to change existing code. Don't take shortcuts by just adding local logic to solve a problem. +Long term maintainability is a core priority. If you add new functionality, first check if there are shared logic that can be extracted to a separate module. Duplicate logic across multiple files is a code smell and should be avoided. Don't be afraid to change existing code. Don't take shortcuts by just adding local logic to solve a problem. ## Package Roles From 49e8496f7157adb17152292ae446ad4fcb73475a Mon Sep 17 00:00:00 2001 From: Ivorisnoob Date: Sat, 14 Mar 2026 14:00:47 +0530 Subject: [PATCH 2/2] refactor: standardize server logging and fix documentation typos - Migrate console logs to Effect.log in apps/server/src/codexAppServerManager.ts - Fix grammar and typos in AGENTS.md - Standardize on Effect-based logging for better persistence and scoping --- AGENTS.md | 2 +- apps/server/src/codexAppServerManager.ts | 20 ++++++++++++++------ 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 1fbe7e4b1..06e737017 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -21,7 +21,7 @@ If a tradeoff is required, choose correctness and robustness over short-term con ## Maintainability -Long term maintainability is a core priority. If you add new functionality, first check if there are shared logic that can be extracted to a separate module. Duplicate logic across multiple files is a code smell and should be avoided. Don't be afraid to change existing code. Don't take shortcuts by just adding local logic to solve a problem. +Long term maintainability is a core priority. If you add new functionality, first check if there is shared logic that can be extracted to a separate module. Duplicate logic across multiple files is a code smell and should be avoided. Don't be afraid to change existing code. Don't take shortcuts by just adding local logic to solve a problem. ## Package Roles diff --git a/apps/server/src/codexAppServerManager.ts b/apps/server/src/codexAppServerManager.ts index a8a8ce460..57d653846 100644 --- a/apps/server/src/codexAppServerManager.ts +++ b/apps/server/src/codexAppServerManager.ts @@ -585,21 +585,29 @@ export class CodexAppServerManager extends EventEmitter