foliko 1.0.75 → 1.0.76
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/.claude/settings.local.json +159 -157
- package/cli/bin/foliko.js +12 -12
- package/cli/src/commands/chat.js +143 -143
- package/cli/src/commands/list.js +93 -93
- package/cli/src/index.js +75 -75
- package/cli/src/ui/chat-ui.js +201 -201
- package/cli/src/utils/ansi.js +40 -40
- package/cli/src/utils/markdown.js +292 -292
- package/examples/ambient-example.js +194 -194
- package/examples/basic.js +115 -115
- package/examples/bootstrap.js +121 -121
- package/examples/mcp-example.js +56 -56
- package/examples/skill-example.js +49 -49
- package/examples/test-chat.js +137 -137
- package/examples/test-mcp.js +85 -85
- package/examples/test-reload.js +59 -59
- package/examples/test-telegram.js +50 -50
- package/examples/test-tg-bot.js +45 -45
- package/examples/test-tg-simple.js +47 -47
- package/examples/test-tg.js +62 -62
- package/examples/test-think.js +43 -43
- package/examples/test-web-plugin.js +103 -103
- package/examples/test-weixin-feishu.js +103 -103
- package/examples/workflow.js +158 -158
- package/package.json +1 -1
- package/plugins/ai-plugin.js +102 -102
- package/plugins/ambient-agent/EventWatcher.js +113 -113
- package/plugins/ambient-agent/ExplorerLoop.js +640 -640
- package/plugins/ambient-agent/GoalManager.js +197 -197
- package/plugins/ambient-agent/Reflector.js +95 -95
- package/plugins/ambient-agent/StateStore.js +90 -90
- package/plugins/ambient-agent/constants.js +101 -101
- package/plugins/ambient-agent/index.js +579 -579
- package/plugins/audit-plugin.js +187 -187
- package/plugins/default-plugins.js +662 -662
- package/plugins/email/constants.js +64 -64
- package/plugins/email/handlers.js +461 -461
- package/plugins/email/index.js +278 -278
- package/plugins/email/monitor.js +269 -269
- package/plugins/email/parser.js +138 -138
- package/plugins/email/reply.js +151 -151
- package/plugins/email/utils.js +124 -124
- package/plugins/feishu-plugin.js +481 -481
- package/plugins/file-system-plugin.js +826 -826
- package/plugins/install-plugin.js +199 -199
- package/plugins/python-executor-plugin.js +367 -367
- package/plugins/python-plugin-loader.js +481 -481
- package/plugins/rules-plugin.js +294 -294
- package/plugins/scheduler-plugin.js +691 -691
- package/plugins/session-plugin.js +369 -369
- package/plugins/shell-executor-plugin.js +197 -197
- package/plugins/storage-plugin.js +240 -240
- package/plugins/subagent-plugin.js +845 -845
- package/plugins/telegram-plugin.js +482 -482
- package/plugins/think-plugin.js +345 -345
- package/plugins/tools-plugin.js +196 -196
- package/plugins/web-plugin.js +606 -606
- package/plugins/weixin-plugin.js +545 -545
- package/src/capabilities/index.js +11 -11
- package/src/capabilities/skill-manager.js +609 -609
- package/src/capabilities/workflow-engine.js +1109 -1109
- package/src/core/agent-chat.js +882 -882
- package/src/core/agent.js +892 -892
- package/src/core/framework.js +465 -465
- package/src/core/index.js +19 -19
- package/src/core/plugin-base.js +219 -219
- package/src/core/plugin-manager.js +863 -863
- package/src/core/provider.js +114 -114
- package/src/core/sub-agent-config.js +264 -264
- package/src/core/system-prompt-builder.js +120 -120
- package/src/core/tool-registry.js +517 -517
- package/src/core/tool-router.js +297 -297
- package/src/executors/executor-base.js +58 -58
- package/src/executors/mcp-executor.js +741 -741
- package/src/index.js +25 -25
- package/src/utils/circuit-breaker.js +301 -301
- package/src/utils/error-boundary.js +363 -363
- package/src/utils/error.js +374 -374
- package/src/utils/event-emitter.js +97 -97
- package/src/utils/id.js +133 -133
- package/src/utils/index.js +217 -217
- package/src/utils/logger.js +181 -181
- package/src/utils/plugin-helpers.js +90 -90
- package/src/utils/retry.js +122 -122
- package/src/utils/sandbox.js +292 -292
- package/test/tool-registry-validation.test.js +218 -218
- package/website/script.js +136 -136
- package/foliko-1.0.75.tgz +0 -0
package/src/core/index.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 核心模块统一导出
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
const { Framework } = require('./framework');
|
|
6
|
-
const { Agent } = require('./agent');
|
|
7
|
-
const { Plugin } = require('./plugin-base');
|
|
8
|
-
const { PluginManager } = require('./plugin-manager');
|
|
9
|
-
const { ToolRegistry } = require('./tool-registry');
|
|
10
|
-
const { EventEmitter } = require('../utils/event-emitter');
|
|
11
|
-
|
|
12
|
-
module.exports = {
|
|
13
|
-
Framework,
|
|
14
|
-
Agent,
|
|
15
|
-
Plugin,
|
|
16
|
-
PluginManager,
|
|
17
|
-
ToolRegistry,
|
|
18
|
-
EventEmitter,
|
|
19
|
-
};
|
|
1
|
+
/**
|
|
2
|
+
* 核心模块统一导出
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
const { Framework } = require('./framework');
|
|
6
|
+
const { Agent } = require('./agent');
|
|
7
|
+
const { Plugin } = require('./plugin-base');
|
|
8
|
+
const { PluginManager } = require('./plugin-manager');
|
|
9
|
+
const { ToolRegistry } = require('./tool-registry');
|
|
10
|
+
const { EventEmitter } = require('../utils/event-emitter');
|
|
11
|
+
|
|
12
|
+
module.exports = {
|
|
13
|
+
Framework,
|
|
14
|
+
Agent,
|
|
15
|
+
Plugin,
|
|
16
|
+
PluginManager,
|
|
17
|
+
ToolRegistry,
|
|
18
|
+
EventEmitter,
|
|
19
|
+
};
|
package/src/core/plugin-base.js
CHANGED
|
@@ -1,219 +1,219 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Plugin 基类
|
|
3
|
-
* 所有插件的基类
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
class Plugin {
|
|
7
|
-
/**
|
|
8
|
-
* 插件名称
|
|
9
|
-
* @type {string}
|
|
10
|
-
*/
|
|
11
|
-
name = 'unnamed-plugin';
|
|
12
|
-
|
|
13
|
-
/**
|
|
14
|
-
* 插件版本
|
|
15
|
-
* @type {string}
|
|
16
|
-
*/
|
|
17
|
-
version = '1.0.0';
|
|
18
|
-
|
|
19
|
-
/**
|
|
20
|
-
* 插件描述
|
|
21
|
-
* @type {string}
|
|
22
|
-
*/
|
|
23
|
-
description = '';
|
|
24
|
-
|
|
25
|
-
/**
|
|
26
|
-
* 插件优先级,数值越小越先加载
|
|
27
|
-
* @type {number}
|
|
28
|
-
*/
|
|
29
|
-
priority = 100;
|
|
30
|
-
|
|
31
|
-
/**
|
|
32
|
-
* 子Agent配置数组 - 配置后自动注册子Agent
|
|
33
|
-
* 格式: [{ name: 'xxx', role: '角色', tools: {...}, parentTools: [...] }]
|
|
34
|
-
* @type {Array}
|
|
35
|
-
*/
|
|
36
|
-
agents = [];
|
|
37
|
-
|
|
38
|
-
/**
|
|
39
|
-
* 插件是否启用,默认为 true
|
|
40
|
-
* 设置为 false 时插件不会被加载,但在列表中仍可见
|
|
41
|
-
* @type {boolean}
|
|
42
|
-
*/
|
|
43
|
-
enabled = true;
|
|
44
|
-
|
|
45
|
-
/**
|
|
46
|
-
* 是否为系统插件,默认为 false
|
|
47
|
-
* 系统插件不能被禁用,始终启用
|
|
48
|
-
* @type {boolean}
|
|
49
|
-
*/
|
|
50
|
-
system = false;
|
|
51
|
-
|
|
52
|
-
_framework = null;
|
|
53
|
-
_subAgents = [];
|
|
54
|
-
|
|
55
|
-
/**
|
|
56
|
-
* 安装插件 - 注册工具/事件等
|
|
57
|
-
* @param {Framework} framework - 框架实例
|
|
58
|
-
*/
|
|
59
|
-
install(framework) {
|
|
60
|
-
this._framework = framework;
|
|
61
|
-
return this;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
/**
|
|
65
|
-
* 启动插件 - 初始化完成后的启动
|
|
66
|
-
* @param {Framework} framework - 框架实例
|
|
67
|
-
*/
|
|
68
|
-
start(framework) {
|
|
69
|
-
// 自动注册配置的子Agent
|
|
70
|
-
this._autoRegisterSubAgents();
|
|
71
|
-
return this;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
/**
|
|
75
|
-
* 自动注册子Agent(根据 this.agents 配置)
|
|
76
|
-
* @private
|
|
77
|
-
*/
|
|
78
|
-
_autoRegisterSubAgents() {
|
|
79
|
-
// 确定要注册的agent配置
|
|
80
|
-
const agentsToRegister = this._deferredSubAgents || this.agents;
|
|
81
|
-
if (!agentsToRegister || !Array.isArray(agentsToRegister) || agentsToRegister.length === 0) {
|
|
82
|
-
return;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
// 获取父Agent
|
|
86
|
-
const parentAgent = this._getParentAgent();
|
|
87
|
-
|
|
88
|
-
if (!parentAgent) {
|
|
89
|
-
// 没有父Agent,推迟到框架准备好时再注册
|
|
90
|
-
if (!this._deferredSubAgents) {
|
|
91
|
-
log.debug(` No parent agent found, deferring subagent registration`);
|
|
92
|
-
this._deferredSubAgents = agentsToRegister;
|
|
93
|
-
// 监听框架准备好事件
|
|
94
|
-
if (this._framework) {
|
|
95
|
-
this._framework.once('framework:ready', () => {
|
|
96
|
-
// 延迟注册,确保主Agent已创建
|
|
97
|
-
setTimeout(() => this._autoRegisterSubAgents(), 100);
|
|
98
|
-
});
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
return;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
// 有父Agent了,清除延迟标记
|
|
105
|
-
this._deferredSubAgents = null;
|
|
106
|
-
|
|
107
|
-
for (const agentConfig of agentsToRegister) {
|
|
108
|
-
try {
|
|
109
|
-
const plugin = this.registerSubAgent(agentConfig);
|
|
110
|
-
this._subAgents.push(plugin);
|
|
111
|
-
} catch (err) {
|
|
112
|
-
log.error(` Failed to register subagent ${agentConfig.name}:`, err.message);
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
/**
|
|
118
|
-
* 获取父Agent
|
|
119
|
-
* @private
|
|
120
|
-
*/
|
|
121
|
-
_getParentAgent() {
|
|
122
|
-
if (!this._framework) return null;
|
|
123
|
-
if (this._framework._mainAgent) return this._framework._mainAgent;
|
|
124
|
-
const agents = this._framework._agents || [];
|
|
125
|
-
return agents.length > 0 ? agents[agents.length - 1] : null;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
/**
|
|
129
|
-
* 注册子Agent
|
|
130
|
-
* @param {Object} config - 子Agent配置
|
|
131
|
-
* @param {string} config.name - 子Agent名称
|
|
132
|
-
* @param {string} config.role - 子Agent角色
|
|
133
|
-
* @param {string} [config.description] - 子Agent描述
|
|
134
|
-
* @param {Object} [config.tools] - 自定义工具 { name: toolDef }
|
|
135
|
-
* @param {string[]} [config.parentTools] - 从父Agent继承的工具名称
|
|
136
|
-
* @returns {SubAgentPlugin} 注册的子Agent插件实例
|
|
137
|
-
*/
|
|
138
|
-
registerSubAgent(config) {
|
|
139
|
-
if (!this._framework) {
|
|
140
|
-
throw new Error('Plugin not installed, call install(framework) first');
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
// 动态导入避免循环依赖
|
|
144
|
-
const { SubAgentPlugin } = require('../../plugins/subagent-plugin');
|
|
145
|
-
|
|
146
|
-
const plugin = new SubAgentPlugin({
|
|
147
|
-
...config,
|
|
148
|
-
// 确保子Agent能获取父Agent
|
|
149
|
-
_parentAgentGetter: () => {
|
|
150
|
-
// 尝试获取主Agent
|
|
151
|
-
if (this._framework._mainAgent) {
|
|
152
|
-
return this._framework._mainAgent;
|
|
153
|
-
}
|
|
154
|
-
const agents = this._framework._agents || [];
|
|
155
|
-
return agents.length > 0 ? agents[agents.length - 1] : null;
|
|
156
|
-
},
|
|
157
|
-
});
|
|
158
|
-
|
|
159
|
-
plugin.install(this._framework);
|
|
160
|
-
plugin.start(this._framework);
|
|
161
|
-
|
|
162
|
-
log.debug(` Registered subagent: ${config.name}`);
|
|
163
|
-
return plugin;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
/**
|
|
167
|
-
* 热重载插件 - 手动调用重载时执行
|
|
168
|
-
* @param {Framework} framework - 框架实例
|
|
169
|
-
*/
|
|
170
|
-
reload(framework) {
|
|
171
|
-
this._framework = framework;
|
|
172
|
-
// 清除之前的延迟注册
|
|
173
|
-
this._deferredSubAgents = null;
|
|
174
|
-
// 重新注册子Agent
|
|
175
|
-
this._autoRegisterSubAgents();
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
/**
|
|
179
|
-
* 卸载插件 - 清理资源
|
|
180
|
-
* @param {Framework} framework - 框架实例
|
|
181
|
-
*/
|
|
182
|
-
uninstall(framework) {
|
|
183
|
-
// 销毁所有子Agent
|
|
184
|
-
for (const plugin of this._subAgents) {
|
|
185
|
-
try {
|
|
186
|
-
plugin.uninstall(framework);
|
|
187
|
-
} catch (err) {
|
|
188
|
-
log.error(` Failed to uninstall subagent:`, err.message);
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
this._subAgents = [];
|
|
192
|
-
this._framework = null;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
/**
|
|
196
|
-
* 获取插件信息
|
|
197
|
-
* @returns {Object}
|
|
198
|
-
*/
|
|
199
|
-
getInfo() {
|
|
200
|
-
return {
|
|
201
|
-
name: this.name,
|
|
202
|
-
version: this.version,
|
|
203
|
-
description: this.description,
|
|
204
|
-
priority: this.priority,
|
|
205
|
-
};
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
/**
|
|
210
|
-
* 内置插件类型常量
|
|
211
|
-
*/
|
|
212
|
-
const PluginType = {
|
|
213
|
-
AI: 'ai',
|
|
214
|
-
TOOLS: 'tools',
|
|
215
|
-
EXECUTOR: 'executor',
|
|
216
|
-
CAPABILITY: 'capability',
|
|
217
|
-
};
|
|
218
|
-
|
|
219
|
-
module.exports = { Plugin, PluginType };
|
|
1
|
+
/**
|
|
2
|
+
* Plugin 基类
|
|
3
|
+
* 所有插件的基类
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
class Plugin {
|
|
7
|
+
/**
|
|
8
|
+
* 插件名称
|
|
9
|
+
* @type {string}
|
|
10
|
+
*/
|
|
11
|
+
name = 'unnamed-plugin';
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* 插件版本
|
|
15
|
+
* @type {string}
|
|
16
|
+
*/
|
|
17
|
+
version = '1.0.0';
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* 插件描述
|
|
21
|
+
* @type {string}
|
|
22
|
+
*/
|
|
23
|
+
description = '';
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* 插件优先级,数值越小越先加载
|
|
27
|
+
* @type {number}
|
|
28
|
+
*/
|
|
29
|
+
priority = 100;
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* 子Agent配置数组 - 配置后自动注册子Agent
|
|
33
|
+
* 格式: [{ name: 'xxx', role: '角色', tools: {...}, parentTools: [...] }]
|
|
34
|
+
* @type {Array}
|
|
35
|
+
*/
|
|
36
|
+
agents = [];
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* 插件是否启用,默认为 true
|
|
40
|
+
* 设置为 false 时插件不会被加载,但在列表中仍可见
|
|
41
|
+
* @type {boolean}
|
|
42
|
+
*/
|
|
43
|
+
enabled = true;
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* 是否为系统插件,默认为 false
|
|
47
|
+
* 系统插件不能被禁用,始终启用
|
|
48
|
+
* @type {boolean}
|
|
49
|
+
*/
|
|
50
|
+
system = false;
|
|
51
|
+
|
|
52
|
+
_framework = null;
|
|
53
|
+
_subAgents = [];
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* 安装插件 - 注册工具/事件等
|
|
57
|
+
* @param {Framework} framework - 框架实例
|
|
58
|
+
*/
|
|
59
|
+
install(framework) {
|
|
60
|
+
this._framework = framework;
|
|
61
|
+
return this;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* 启动插件 - 初始化完成后的启动
|
|
66
|
+
* @param {Framework} framework - 框架实例
|
|
67
|
+
*/
|
|
68
|
+
start(framework) {
|
|
69
|
+
// 自动注册配置的子Agent
|
|
70
|
+
this._autoRegisterSubAgents();
|
|
71
|
+
return this;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* 自动注册子Agent(根据 this.agents 配置)
|
|
76
|
+
* @private
|
|
77
|
+
*/
|
|
78
|
+
_autoRegisterSubAgents() {
|
|
79
|
+
// 确定要注册的agent配置
|
|
80
|
+
const agentsToRegister = this._deferredSubAgents || this.agents;
|
|
81
|
+
if (!agentsToRegister || !Array.isArray(agentsToRegister) || agentsToRegister.length === 0) {
|
|
82
|
+
return;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
// 获取父Agent
|
|
86
|
+
const parentAgent = this._getParentAgent();
|
|
87
|
+
|
|
88
|
+
if (!parentAgent) {
|
|
89
|
+
// 没有父Agent,推迟到框架准备好时再注册
|
|
90
|
+
if (!this._deferredSubAgents) {
|
|
91
|
+
log.debug(` No parent agent found, deferring subagent registration`);
|
|
92
|
+
this._deferredSubAgents = agentsToRegister;
|
|
93
|
+
// 监听框架准备好事件
|
|
94
|
+
if (this._framework) {
|
|
95
|
+
this._framework.once('framework:ready', () => {
|
|
96
|
+
// 延迟注册,确保主Agent已创建
|
|
97
|
+
setTimeout(() => this._autoRegisterSubAgents(), 100);
|
|
98
|
+
});
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
return;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
// 有父Agent了,清除延迟标记
|
|
105
|
+
this._deferredSubAgents = null;
|
|
106
|
+
|
|
107
|
+
for (const agentConfig of agentsToRegister) {
|
|
108
|
+
try {
|
|
109
|
+
const plugin = this.registerSubAgent(agentConfig);
|
|
110
|
+
this._subAgents.push(plugin);
|
|
111
|
+
} catch (err) {
|
|
112
|
+
log.error(` Failed to register subagent ${agentConfig.name}:`, err.message);
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* 获取父Agent
|
|
119
|
+
* @private
|
|
120
|
+
*/
|
|
121
|
+
_getParentAgent() {
|
|
122
|
+
if (!this._framework) return null;
|
|
123
|
+
if (this._framework._mainAgent) return this._framework._mainAgent;
|
|
124
|
+
const agents = this._framework._agents || [];
|
|
125
|
+
return agents.length > 0 ? agents[agents.length - 1] : null;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* 注册子Agent
|
|
130
|
+
* @param {Object} config - 子Agent配置
|
|
131
|
+
* @param {string} config.name - 子Agent名称
|
|
132
|
+
* @param {string} config.role - 子Agent角色
|
|
133
|
+
* @param {string} [config.description] - 子Agent描述
|
|
134
|
+
* @param {Object} [config.tools] - 自定义工具 { name: toolDef }
|
|
135
|
+
* @param {string[]} [config.parentTools] - 从父Agent继承的工具名称
|
|
136
|
+
* @returns {SubAgentPlugin} 注册的子Agent插件实例
|
|
137
|
+
*/
|
|
138
|
+
registerSubAgent(config) {
|
|
139
|
+
if (!this._framework) {
|
|
140
|
+
throw new Error('Plugin not installed, call install(framework) first');
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
// 动态导入避免循环依赖
|
|
144
|
+
const { SubAgentPlugin } = require('../../plugins/subagent-plugin');
|
|
145
|
+
|
|
146
|
+
const plugin = new SubAgentPlugin({
|
|
147
|
+
...config,
|
|
148
|
+
// 确保子Agent能获取父Agent
|
|
149
|
+
_parentAgentGetter: () => {
|
|
150
|
+
// 尝试获取主Agent
|
|
151
|
+
if (this._framework._mainAgent) {
|
|
152
|
+
return this._framework._mainAgent;
|
|
153
|
+
}
|
|
154
|
+
const agents = this._framework._agents || [];
|
|
155
|
+
return agents.length > 0 ? agents[agents.length - 1] : null;
|
|
156
|
+
},
|
|
157
|
+
});
|
|
158
|
+
|
|
159
|
+
plugin.install(this._framework);
|
|
160
|
+
plugin.start(this._framework);
|
|
161
|
+
|
|
162
|
+
log.debug(` Registered subagent: ${config.name}`);
|
|
163
|
+
return plugin;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/**
|
|
167
|
+
* 热重载插件 - 手动调用重载时执行
|
|
168
|
+
* @param {Framework} framework - 框架实例
|
|
169
|
+
*/
|
|
170
|
+
reload(framework) {
|
|
171
|
+
this._framework = framework;
|
|
172
|
+
// 清除之前的延迟注册
|
|
173
|
+
this._deferredSubAgents = null;
|
|
174
|
+
// 重新注册子Agent
|
|
175
|
+
this._autoRegisterSubAgents();
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* 卸载插件 - 清理资源
|
|
180
|
+
* @param {Framework} framework - 框架实例
|
|
181
|
+
*/
|
|
182
|
+
uninstall(framework) {
|
|
183
|
+
// 销毁所有子Agent
|
|
184
|
+
for (const plugin of this._subAgents) {
|
|
185
|
+
try {
|
|
186
|
+
plugin.uninstall(framework);
|
|
187
|
+
} catch (err) {
|
|
188
|
+
log.error(` Failed to uninstall subagent:`, err.message);
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
this._subAgents = [];
|
|
192
|
+
this._framework = null;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
/**
|
|
196
|
+
* 获取插件信息
|
|
197
|
+
* @returns {Object}
|
|
198
|
+
*/
|
|
199
|
+
getInfo() {
|
|
200
|
+
return {
|
|
201
|
+
name: this.name,
|
|
202
|
+
version: this.version,
|
|
203
|
+
description: this.description,
|
|
204
|
+
priority: this.priority,
|
|
205
|
+
};
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
* 内置插件类型常量
|
|
211
|
+
*/
|
|
212
|
+
const PluginType = {
|
|
213
|
+
AI: 'ai',
|
|
214
|
+
TOOLS: 'tools',
|
|
215
|
+
EXECUTOR: 'executor',
|
|
216
|
+
CAPABILITY: 'capability',
|
|
217
|
+
};
|
|
218
|
+
|
|
219
|
+
module.exports = { Plugin, PluginType };
|