-
v0.4.0 Stable
released this
2025-12-21 07:57:02 +03:00 | 5 commits to master since this release📅 Originally published on GitHub: Sun, 21 Dec 2025 04:58:47 GMT
🏷️ Git tag created: Sun, 21 Dec 2025 04:57:02 GMT🎉 v0.4.0 新功能
🎯 自定义专家
通过环境变量
CLAUDE_TEAM_CUSTOM_EXPERTS定义自己的专家🔗 工作流模板
5 个预定义工作流:code-generation、bug-fix、refactoring、code-review、documentation
📊 可观测性工具
- team_dashboard - 查看团队状态
- cost_estimate - 预估任务成本
- explain_plan - 预览任务分配方案
🔌 项目集成
- read_project_files - 读取项目代码上下文
- analyze_project_structure - 分析技术栈
- generate_commit_message - 生成 commit message
🧪 测试覆盖
155 个测试用例全部通过
📦 安装
npx claude-teamDownloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
-
v0.3.0 Stable
released this
2025-12-21 00:42:49 +03:00 | 6 commits to master since this release📅 Originally published on GitHub: Sat, 20 Dec 2025 21:44:14 GMT
🏷️ Git tag created: Sat, 20 Dec 2025 21:42:49 GMT🎉 v0.3.0 新功能
核心功能
- 🔄 任务中断/恢复 - 长任务中断后可从历史恢复继续执行
- 💬 专家多轮对话 - 支持与特定专家进行多轮对话
- 📊 Token 计数 - 统计 token 使用量和估算 API 成本
- 📋 专家模板 - 6 个内置模板 + 自定义模板管理
- 🔔 Webhook 通知 - 任务完成后发送通知
改进
- ⚡ 指数退避 - 智能重试和 429 速率限制处理
- 🔧 配置热重载 - 支持不重启更新配置
- ✅ validate 命令 - claude-team validate 检查配置
- 🧪 单元测试 - 86 个测试用例全覆盖
安装
npm install -g claude-team@0.3.0Downloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
-
v0.2.3 Stable
released this
2025-12-20 21:24:53 +03:00 | 15 commits to master since this release📅 Originally published on GitHub: Sat, 20 Dec 2025 18:25:38 GMT
🏷️ Git tag created: Sat, 20 Dec 2025 18:24:53 GMT✨ 新功能
🎛️ PROVIDER 配置
支持为每个模型指定响应格式,适配不同中转服务:
{ "CLAUDE_TEAM_MAIN_PROVIDER": "openai", "CLAUDE_TEAM_MODEL1_PROVIDER": "anthropic", "CLAUDE_TEAM_MODEL2_PROVIDER": "gemini" }可选值
openai- OpenAI 格式(默认)anthropic- Claude 格式gemini- Gemini 格式
继承规则
如果 MODEL1/2/3 没有单独配置 PROVIDER,会自动继承 MAIN 的配置。
安装
npx claude-teamDownloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
-
v0.2.2 Stable
released this
2025-12-20 21:19:58 +03:00 | 16 commits to master since this release📅 Originally published on GitHub: Sat, 20 Dec 2025 18:20:42 GMT
🏷️ Git tag created: Sat, 20 Dec 2025 18:19:58 GMT✨ 新功能
🌊 流式输出
所有模型适配器现已支持流式输出:
- OpenAI - GPT 系列及兼容 API
- Claude - Anthropic Claude 系列
- Gemini - Google Gemini 系列
使用方式
适配器提供
stream()方法,返回 AsyncGenerator:for await (const chunk of adapter.stream(messages)) { process.stdout.write(chunk); }安装
npx claude-teamDownloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
-
v0.2.1 Stable
released this
2025-12-20 21:17:01 +03:00 | 17 commits to master since this release📅 Originally published on GitHub: Sat, 20 Dec 2025 18:17:44 GMT
🏷️ Git tag created: Sat, 20 Dec 2025 18:17:01 GMT✨ 新功能
📊 使用统计
新增
usage_stats工具,可查看:- 总调用次数
- 成功/失败次数
- 各模型调用统计
- 平均耗时、最短/最长耗时
使用方法
直接调用
usage_stats工具即可查看统计信息。安装
npx claude-teamDownloads
-
Source code (ZIP)
0 downloads
-
Source code (TAR.GZ)
0 downloads
mirror of
https://github.com/7836246/claude-team-mcp.git
synced 2026-04-25 19:05:59 +03:00