@mumulinya167/cc-web 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +61 -0
- package/bin/ccm.js +680 -0
- package/bin/server.js +4428 -0
- package/bin/setup.js +148 -0
- package/configs/config-template.toml +54 -0
- package/mcp-feishu/.env.example +2 -0
- package/mcp-feishu/package-lock.json +1194 -0
- package/mcp-feishu/package.json +23 -0
- package/mcp-feishu/src/cli.ts +239 -0
- package/mcp-feishu/src/feishu-client.ts +209 -0
- package/mcp-feishu/src/index.ts +55 -0
- package/mcp-feishu/src/tools.ts +222 -0
- package/mcp-feishu/tsconfig.json +18 -0
- package/package.json +27 -0
- package/public/index.html +6604 -0
- package/templates/CLAUDE-backend.md +105 -0
- package/templates/CLAUDE-frontend.md +61 -0
package/README.md
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# cc-web
|
|
2
|
+
|
|
3
|
+
cc-connect 的 Web 管理界面,支持多 Agent 协作、任务派发、代码变更查看等。
|
|
4
|
+
|
|
5
|
+
[cc-connect](https://github.com/chenhg5/cc-connect) | [Node.js](https://nodejs.org)
|
|
6
|
+
|
|
7
|
+
## 功能特点
|
|
8
|
+
|
|
9
|
+
- 📂 **项目管理** - 创建、编辑、删除项目,一键启停 Agent
|
|
10
|
+
- 💬 **群聊协作** - 多 Agent 协作,支持 @mention 互相调用
|
|
11
|
+
- 📋 **任务派发** - 优先级队列,自动执行,跨 Agent 协作
|
|
12
|
+
- 🔧 **工具配置** - MCP 服务器、Skills 管理
|
|
13
|
+
- 📝 **代码变更** - Git diff 可视化,一键回滚/提交
|
|
14
|
+
- 📚 **对话模板** - 预设常用开发场景,快速启动
|
|
15
|
+
- 📊 **协作仪表盘** - 任务统计、进度跟踪
|
|
16
|
+
- 🔔 **飞书通知** - 任务完成自动通知
|
|
17
|
+
|
|
18
|
+
## 安装
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npm install -g @mumulinya167/cc-web
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## 使用
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
# 启动 Web 控制台
|
|
28
|
+
cc-web
|
|
29
|
+
|
|
30
|
+
# 访问 http://localhost:3080
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## 首次使用
|
|
34
|
+
|
|
35
|
+
1. 启动 `cc-web`
|
|
36
|
+
2. 访问 http://localhost:3080
|
|
37
|
+
3. 点击"+ 新建项目"创建第一个项目
|
|
38
|
+
4. 配置飞书通知(可选)
|
|
39
|
+
|
|
40
|
+
## 目录结构
|
|
41
|
+
|
|
42
|
+
```
|
|
43
|
+
~/.cc-connect/
|
|
44
|
+
├── configs/ # 项目配置文件
|
|
45
|
+
├── mcp/ # MCP 工具配置
|
|
46
|
+
├── skills/ # Skills 配置
|
|
47
|
+
├── shared/ # 共享文件
|
|
48
|
+
├── templates.json # 对话模板
|
|
49
|
+
├── feishu-config.json # 飞书配置
|
|
50
|
+
├── groups.json # 群聊配置
|
|
51
|
+
└── tasks.json # 任务配置
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## 依赖
|
|
55
|
+
|
|
56
|
+
- Node.js >= 18
|
|
57
|
+
- [cc-connect](https://github.com/chenhg5/cc-connect)
|
|
58
|
+
|
|
59
|
+
## License
|
|
60
|
+
|
|
61
|
+
MIT
|