From e0d2d44f3590fe927b27fbc50212b8ab9ba83986 Mon Sep 17 00:00:00 2001 From: icarus Date: Sun, 14 Sep 2025 00:13:22 +0800 Subject: [PATCH] feat(config): add default agent configuration constants Add DEFAULT_AGENT_CONFIG and DEFAULT_CLAUDE_CODE_CONFIG constants to define base agent configurations. These will serve as templates for future agent configurations. --- src/renderer/src/config/agent.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/renderer/src/config/agent.ts diff --git a/src/renderer/src/config/agent.ts b/src/renderer/src/config/agent.ts new file mode 100644 index 0000000000..711ede4e18 --- /dev/null +++ b/src/renderer/src/config/agent.ts @@ -0,0 +1,9 @@ +import { AgentConfiguration } from '@renderer/types' + +// base agent config. no default config for now. +const DEFAULT_AGENT_CONFIG: Omit = {} as const + +// no default config for now. +export const DEFAULT_CLAUDE_CODE_CONFIG: Omit = { + ...DEFAULT_AGENT_CONFIG +} as const