hyacinth-ai 0.9.6 → 0.9.8
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 +0 -31
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -148,37 +148,6 @@ hyacinth tool enable/disable # 工具管理
|
|
|
148
148
|
hyacinth update # 自更新
|
|
149
149
|
```
|
|
150
150
|
|
|
151
|
-
## 项目结构
|
|
152
|
-
|
|
153
|
-
```
|
|
154
|
-
src/
|
|
155
|
-
├── gateway/ # CLI/TUI/HTTP 入口,Agent 工厂装配
|
|
156
|
-
├── channels/ # 多渠道消息处理(Feishu, Webhook)
|
|
157
|
-
├── orchestrator/ # AgentLoop 主循环,LLM 编排
|
|
158
|
-
├── agents/ # 子 Agent 系统(委托/对抗/并行)
|
|
159
|
-
├── machine/ # 状态机 + Flow 工作流(Todo/Spec/Bootstrap)
|
|
160
|
-
├── provider/ # 14+ LLM Provider 适配层
|
|
161
|
-
├── context/ # 5-Zone 上下文组合器 + 压缩编排器
|
|
162
|
-
├── prompts/ # 提示词模板管理
|
|
163
|
-
├── tools/ # 内置工具 + 运行时控制 + 工具执行器
|
|
164
|
-
├── registry/ # 泛型注册表基类(Tool/Skill/Agent/Plugin...)
|
|
165
|
-
├── mcp/ # MCP 协议集成(Client/Bridge/ServerManager)
|
|
166
|
-
├── knowledge/ # 知识库(FTS5 + Tag 检索)
|
|
167
|
-
├── plugins/ # 插件系统
|
|
168
|
-
├── skills/ # Skill 系统
|
|
169
|
-
├── schedule/ # 调度任务系统
|
|
170
|
-
├── memory/ # 会话/对话持久化(SQLite)
|
|
171
|
-
├── hot-reload/ # 8 个热重载 Watcher
|
|
172
|
-
├── rollback/ # 回合回滚系统
|
|
173
|
-
├── repair/ # 自修复(死循环检测、风暴抑制)
|
|
174
|
-
├── update/ # 自更新
|
|
175
|
-
├── setup/ # 配置管理 + 安装向导
|
|
176
|
-
├── ui/ # 命令注册表
|
|
177
|
-
├── bypass/ # 旁路 Agent
|
|
178
|
-
├── multimodal/ # 多模态(图片处理)
|
|
179
|
-
└── local-model/ # 本地模型管理
|
|
180
|
-
```
|
|
181
|
-
|
|
182
151
|
## 开发
|
|
183
152
|
|
|
184
153
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hyacinth-ai",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.8",
|
|
4
4
|
"description": "Hyacinth 🪻 — multi-provider AI agent with tool system and context management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -27,7 +27,6 @@
|
|
|
27
27
|
"@google/genai": "^2.6.0",
|
|
28
28
|
"@larksuiteoapi/node-sdk": "^1.66.1",
|
|
29
29
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
30
|
-
"better-sqlite3": "^12.10.0",
|
|
31
30
|
"chalk": "^5.6.2",
|
|
32
31
|
"chokidar": "^5.0.0",
|
|
33
32
|
"chrome-devtools-mcp": "^1.2.0",
|
|
@@ -43,6 +42,9 @@
|
|
|
43
42
|
"ws": "^8.21.0",
|
|
44
43
|
"xlsx": "^0.18.5"
|
|
45
44
|
},
|
|
45
|
+
"optionalDependencies": {
|
|
46
|
+
"better-sqlite3": "^12.10.0"
|
|
47
|
+
},
|
|
46
48
|
"devDependencies": {
|
|
47
49
|
"@types/better-sqlite3": "^7.6.13",
|
|
48
50
|
"@types/node": "^25.9.1",
|