Files
zclaw_openfang/CHANGELOG.md
iven c3996573aa
Some checks failed
CI / Lint & TypeCheck (push) Has been cancelled
CI / Unit Tests (push) Has been cancelled
CI / Build Frontend (push) Has been cancelled
CI / Rust Check (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled
refactor: 移除 Team 和 Swarm 协作功能
功能论证结论:Team(团队)和 Swarm(协作)为零后端支持的
纯前端 localStorage 空壳,Pipeline 系统已完全覆盖其全部能力。

删除 16 个文件,约 7,950 行代码:
- 5 个组件:TeamCollaborationView, TeamOrchestrator, TeamList, DevQALoop, SwarmDashboard
- 1 个 Store:teamStore.ts
- 3 个 Client/库:team-client.ts, useTeamEvents.ts, agent-swarm.ts
- 1 个类型文件:team.ts
- 4 个测试文件
- 1 个文档(归档 swarm-coordination.md)

修改 4 个文件:
- Sidebar.tsx:移除"团队"和"协作"导航项
- App.tsx:移除 team/swarm 视图路由
- types/index.ts:移除 team 类型导出
- chatStore.ts:移除 dispatchSwarmTask 方法

更新 CHANGELOG.md 和功能文档 README.md
2026-03-26 20:27:19 +08:00

68 lines
2.1 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Changelog
All notable changes to ZCLAW will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [0.1.0] - 2026-03-26
### Added
#### 核心功能
- 多模型 AI 对话支持流式响应Anthropic、OpenAI 兼容)
- Agent 分身管理(创建、配置、切换)
- Hands 自主能力Browser、Collector、Researcher、Predictor、Lead、Clip、Twitter、Whiteboard、Slideshow、Speech、Quiz
- 可视化工作流编辑器React Flow
- 技能系统SKILL.md 定义)
- Agent Growth 记忆系统(语义提取、检索、注入)
- Pipeline 执行引擎(条件分支、并行执行)
- MCP 协议支持
- A2A 进程内通信
- OS Keyring 安全存储
- 加密聊天存储
- 离线消息队列
- 浏览器自动化
#### 安全
- Content Security Policy 启用
- Web fetch SSRF 防护
- 路径验证default-deny 策略)
- Shell 命令白名单和危险命令黑名单
- API Key 通过 secrecy crate 保护
#### 基础设施
- GitHub Actions CI 流水线lint、test、build
- GitHub Actions Release 流水线tag 触发、NSIS 安装包)
- Workspace 统一版本管理
### Removed
- Valtio/XState 双轨状态管理层(未完成的迁移)
- Stub Channel 适配器Telegram、Discord、Slack
- 未使用的 StoremeshStore、personaStore
- 不完整的 ActiveLearningPanel 和 skillMarketStore
- 未使用的 Feedback 组件目录
- Team团队和 Swarm协作功能~8,100 行前端代码零后端支持Pipeline 系统已覆盖其全部能力)
- 调试日志清理(~310 处 console/println 语句)
---
## 版本说明
### 版本号格式
- **主版本号**: 重大架构变更或不兼容的 API 修改
- **次版本号**: 向后兼容的功能新增
- **修订号**: 向后兼容的问题修复
### 变更类型
- `Added`: 新增功能
- `Changed`: 功能变更
- `Deprecated`: 即将废弃的功能
- `Removed`: 已移除的功能
- `Fixed`: 问题修复
- `Security`: 安全相关修复