From 489e801ce5d68cc032b17d7202fb270435199871 Mon Sep 17 00:00:00 2001 From: Evan Tahler Date: Tue, 17 Feb 2026 16:28:26 -0800 Subject: [PATCH] Remove unused USER_ID environment variable USER_ID was removed from config.ts but stale references remained in CLAUDE.md and test setup. Clean these up to keep documentation and tests in sync with the actual implementation. Co-Authored-By: Claude Haiku 4.5 --- CLAUDE.md | 2 +- tests/logger.test.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 1946734..020882d 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -19,7 +19,7 @@ CLI agent template built with Bun + TypeScript. Provides an interactive chat int - `agent.ts` — CLI entry point (Commander.js). Single `chat` command with `-t, --toolkits` option - `classes/wrappedAgent.ts` — Abstract base agent with streaming, conversation history, interactive REPL -- `classes/config.ts` — Loads required env vars: `OPENAI_API_KEY`, `OPENAI_MODEL`, `LOG_LEVEL`, `ARCADE_API_KEY`, `USER_ID` +- `classes/config.ts` — Loads required env vars: `OPENAI_API_KEY`, `OPENAI_MODEL`, `LOG_LEVEL` - `classes/logger.ts` — Logging with levels, colors (chalk), spinners (ora), tool call tracking - `agents/general.ts` — Main agent implementation extending WrappedAgent - `utils/tools.ts` — Arcade.dev toolkit → OpenAI agent tool conversion diff --git a/tests/logger.test.ts b/tests/logger.test.ts index 05281a0..34c2424 100644 --- a/tests/logger.test.ts +++ b/tests/logger.test.ts @@ -13,7 +13,6 @@ describe("Logger", () => { process.env.OPENAI_MODEL = "gpt-4-turbo"; process.env.LOG_LEVEL = "info"; process.env.ARCADE_API_KEY = "test-arcade-key"; - process.env.USER_ID = "test-user-id"; // Mock console methods to capture output console.log = () => {};