@super-pocock-ai/suite 2.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 +72 -0
- package/package.json +14 -0
package/README.md
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# @super-pocock-ai/suite
|
|
2
|
+
|
|
3
|
+
Superpocock 完整套件,包含记忆系统和工作流。
|
|
4
|
+
|
|
5
|
+
## 安装
|
|
6
|
+
|
|
7
|
+
```json
|
|
8
|
+
{
|
|
9
|
+
"plugin": ["@super-pocock-ai/suite"]
|
|
10
|
+
}
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## 包含组件
|
|
14
|
+
|
|
15
|
+
- **@super-pocock-ai/memory-core** - 持久化记忆系统
|
|
16
|
+
- **@super-pocock-ai/memory-agents** - 记忆代理(checkpoint-writer、dream、distill)
|
|
17
|
+
- **@super-pocock-ai/compose-workflow** - Compose 工作流技能
|
|
18
|
+
- **@super-pocock-ai/compose-agents** - Compose 代理
|
|
19
|
+
|
|
20
|
+
## 功能特性
|
|
21
|
+
|
|
22
|
+
### 记忆系统
|
|
23
|
+
|
|
24
|
+
- SQLite FTS5 全文搜索
|
|
25
|
+
- BM25 相关性排序
|
|
26
|
+
- 跨会话持久化记忆
|
|
27
|
+
- 自动检查点保存
|
|
28
|
+
|
|
29
|
+
### 工作流
|
|
30
|
+
|
|
31
|
+
- 结构化用户交互
|
|
32
|
+
- 并行代理调度
|
|
33
|
+
- Git worktree 隔离
|
|
34
|
+
- 两阶段代码审查
|
|
35
|
+
|
|
36
|
+
## 配置
|
|
37
|
+
|
|
38
|
+
创建 `.super-pocock/config.json`:
|
|
39
|
+
|
|
40
|
+
```json
|
|
41
|
+
{
|
|
42
|
+
"memory": {
|
|
43
|
+
"injection": {
|
|
44
|
+
"total_budget": 2000,
|
|
45
|
+
"allocation": {
|
|
46
|
+
"checkpoint": 0.30,
|
|
47
|
+
"memory": 0.25,
|
|
48
|
+
"notes": 0.20,
|
|
49
|
+
"progress": 0.15,
|
|
50
|
+
"buffer": 0.10
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"checkpoint": {
|
|
54
|
+
"thresholds": ["40%", "60%", "80%"],
|
|
55
|
+
"drain_timeout_ms": 120000,
|
|
56
|
+
"idle_timeout_ms": 300000
|
|
57
|
+
},
|
|
58
|
+
"dream": {
|
|
59
|
+
"auto": true,
|
|
60
|
+
"interval_days": 7
|
|
61
|
+
},
|
|
62
|
+
"distill": {
|
|
63
|
+
"auto": true,
|
|
64
|
+
"interval_days": 30
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
## 许可证
|
|
71
|
+
|
|
72
|
+
MIT
|
package/package.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@super-pocock-ai/suite",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "Superpocock 完整套件,包含记忆系统和工作流",
|
|
5
|
+
"files": ["README.md"],
|
|
6
|
+
"dependencies": {
|
|
7
|
+
"@super-pocock-ai/memory-core": "2.0.0",
|
|
8
|
+
"@super-pocock-ai/memory-agents": "2.0.0",
|
|
9
|
+
"@super-pocock-ai/compose-workflow": "2.0.0",
|
|
10
|
+
"@super-pocock-ai/compose-agents": "2.0.0"
|
|
11
|
+
},
|
|
12
|
+
"keywords": ["opencode", "suite", "memory", "compose", "workflow"],
|
|
13
|
+
"license": "MIT"
|
|
14
|
+
}
|