chore(config): 为环境配置添加类型注解并初始化专家历史记录

- 为 CURRENT_ENV 变量添加 'production' 类型注解
- 初始化 .workbuddy/expert-history.json 文件
- 添加 Will 专家配置信息
- 记录专家使用时间和行业信息
This commit is contained in:
2026-04-02 20:21:01 +08:00
parent 190df391c3
commit 6fb8be275a
2 changed files with 18 additions and 1 deletions

View File

@@ -2,7 +2,7 @@
// ============ 环境切换开关(修改这里即可切换环境)============
// 可选值: 'development' | 'test' | 'production'
const CURRENT_ENV = 'production' as const
const CURRENT_ENV: 'production' = 'production'
// ===========================================================
export const ENV_CONFIG = {