Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion tests/logger.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = () => {};
Expand Down