foliko 1.0.81 → 1.0.83

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.
Files changed (88) hide show
  1. package/cli/bin/foliko.js +12 -12
  2. package/cli/src/commands/chat.js +143 -143
  3. package/cli/src/commands/list.js +93 -93
  4. package/cli/src/index.js +75 -75
  5. package/cli/src/ui/chat-ui.js +201 -201
  6. package/cli/src/utils/ansi.js +40 -40
  7. package/cli/src/utils/markdown.js +292 -292
  8. package/examples/ambient-example.js +194 -194
  9. package/examples/basic.js +115 -115
  10. package/examples/bootstrap.js +121 -121
  11. package/examples/mcp-example.js +56 -56
  12. package/examples/skill-example.js +49 -49
  13. package/examples/test-chat.js +137 -137
  14. package/examples/test-mcp.js +85 -85
  15. package/examples/test-reload.js +59 -59
  16. package/examples/test-telegram.js +50 -50
  17. package/examples/test-tg-bot.js +45 -45
  18. package/examples/test-tg-simple.js +47 -47
  19. package/examples/test-tg.js +62 -62
  20. package/examples/test-think.js +43 -43
  21. package/examples/test-web-plugin.js +103 -103
  22. package/examples/test-weixin-feishu.js +103 -103
  23. package/examples/workflow.js +158 -158
  24. package/package.json +83 -83
  25. package/plugins/ai-plugin.js +102 -102
  26. package/plugins/ambient-agent/EventWatcher.js +113 -113
  27. package/plugins/ambient-agent/ExplorerLoop.js +640 -640
  28. package/plugins/ambient-agent/GoalManager.js +197 -197
  29. package/plugins/ambient-agent/Reflector.js +95 -95
  30. package/plugins/ambient-agent/StateStore.js +90 -90
  31. package/plugins/ambient-agent/constants.js +101 -101
  32. package/plugins/ambient-agent/index.js +579 -579
  33. package/plugins/audit-plugin.js +187 -187
  34. package/plugins/default-plugins.js +548 -548
  35. package/plugins/email/constants.js +64 -64
  36. package/plugins/email/handlers.js +461 -461
  37. package/plugins/email/index.js +278 -278
  38. package/plugins/email/monitor.js +269 -269
  39. package/plugins/email/parser.js +138 -138
  40. package/plugins/email/reply.js +151 -151
  41. package/plugins/email/utils.js +124 -124
  42. package/plugins/extension-executor-plugin.js +326 -326
  43. package/plugins/feishu-plugin.js +481 -481
  44. package/plugins/file-system-plugin.js +920 -920
  45. package/plugins/gate-trading.js +747 -747
  46. package/plugins/install-plugin.js +199 -199
  47. package/plugins/python-executor-plugin.js +367 -367
  48. package/plugins/python-plugin-loader.js +651 -651
  49. package/plugins/rules-plugin.js +294 -294
  50. package/plugins/scheduler-plugin.js +691 -691
  51. package/plugins/session-plugin.js +494 -494
  52. package/plugins/shell-executor-plugin.js +197 -197
  53. package/plugins/storage-plugin.js +263 -263
  54. package/plugins/subagent-plugin.js +845 -845
  55. package/plugins/telegram-plugin.js +482 -482
  56. package/plugins/think-plugin.js +345 -345
  57. package/plugins/tools-plugin.js +196 -196
  58. package/plugins/web-plugin.js +637 -637
  59. package/plugins/weixin-plugin.js +545 -545
  60. package/src/capabilities/index.js +11 -11
  61. package/src/capabilities/skill-manager.js +609 -609
  62. package/src/capabilities/workflow-engine.js +1109 -1109
  63. package/src/core/agent-chat.js +1 -1
  64. package/src/core/agent.js +958 -958
  65. package/src/core/framework.js +465 -465
  66. package/src/core/index.js +19 -19
  67. package/src/core/plugin-base.js +262 -262
  68. package/src/core/plugin-manager.js +863 -863
  69. package/src/core/provider.js +114 -114
  70. package/src/core/sub-agent-config.js +264 -264
  71. package/src/core/system-prompt-builder.js +120 -120
  72. package/src/core/tool-registry.js +517 -517
  73. package/src/core/tool-router.js +297 -297
  74. package/src/executors/executor-base.js +58 -58
  75. package/src/executors/mcp-executor.js +845 -845
  76. package/src/index.js +25 -25
  77. package/src/utils/circuit-breaker.js +301 -301
  78. package/src/utils/error-boundary.js +363 -363
  79. package/src/utils/error.js +374 -374
  80. package/src/utils/event-emitter.js +97 -97
  81. package/src/utils/id.js +133 -133
  82. package/src/utils/index.js +217 -217
  83. package/src/utils/logger.js +181 -181
  84. package/src/utils/plugin-helpers.js +90 -90
  85. package/src/utils/retry.js +122 -122
  86. package/src/utils/sandbox.js +292 -292
  87. package/test/tool-registry-validation.test.js +218 -218
  88. package/website/script.js +136 -136
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
+ };
@@ -1,262 +1,262 @@
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
- * 插件注册的工具集(供 ExtensionExecutor 自动加载)
57
- * 格式: { toolName: { name, description, inputSchema, execute } }
58
- * @type {Object}
59
- */
60
- tools = {};
61
-
62
- /**
63
- * 安装插件 - 注册工具/事件等
64
- * @param {Framework} framework - 框架实例
65
- */
66
- install(framework) {
67
- this._framework = framework;
68
- return this;
69
- }
70
-
71
- /**
72
- * 注册工具到扩展执行器(供 ExtensionExecutor 统一管理)
73
- * 支持三种调用方式:
74
- * this.registerTool('name', { description, inputSchema, execute })
75
- * this.registerTool({ name, description, inputSchema, execute })
76
- * this.registerTool({ name, description, inputSchema, execute, pluginName: 'xxx' })
77
- * @param {string|Object} name - 工具名称或工具定义对象
78
- * @param {Object} [def] - 工具定义 { description, inputSchema, execute }
79
- */
80
- registerTool(name, def) {
81
- if (!this._framework) return;
82
- // 支持 this.registerTool({ name, description, ... }) 形式
83
- if (typeof name === 'object' && name !== null) {
84
- def = name;
85
- name = def.name;
86
- }
87
- if (!name || !def) return;
88
-
89
- // 支持自定义插件名
90
- const pluginName = def.pluginName || this.name;
91
- delete def.pluginName;
92
-
93
- const extExec = this._framework.pluginManager.get('extension-executor');
94
- if (extExec) {
95
- extExec.registerTool(
96
- pluginName,
97
- {
98
- name: pluginName,
99
- description: def.description || this.description,
100
- version: this.version,
101
- },
102
- { name, ...def }
103
- );
104
- }
105
- }
106
-
107
- /**
108
- * 启动插件 - 初始化完成后的启动
109
- * @param {Framework} framework - 框架实例
110
- */
111
- start(framework) {
112
- // 自动注册配置的子Agent
113
- this._autoRegisterSubAgents();
114
- return this;
115
- }
116
-
117
- /**
118
- * 自动注册子Agent(根据 this.agents 配置)
119
- * @private
120
- */
121
- _autoRegisterSubAgents() {
122
- // 确定要注册的agent配置
123
- const agentsToRegister = this._deferredSubAgents || this.agents;
124
- if (!agentsToRegister || !Array.isArray(agentsToRegister) || agentsToRegister.length === 0) {
125
- return;
126
- }
127
-
128
- // 获取父Agent
129
- const parentAgent = this._getParentAgent();
130
-
131
- if (!parentAgent) {
132
- // 没有父Agent,推迟到框架准备好时再注册
133
- if (!this._deferredSubAgents) {
134
- log.debug(` No parent agent found, deferring subagent registration`);
135
- this._deferredSubAgents = agentsToRegister;
136
- // 监听框架准备好事件
137
- if (this._framework) {
138
- this._framework.once('framework:ready', () => {
139
- // 延迟注册,确保主Agent已创建
140
- setTimeout(() => this._autoRegisterSubAgents(), 100);
141
- });
142
- }
143
- }
144
- return;
145
- }
146
-
147
- // 有父Agent了,清除延迟标记
148
- this._deferredSubAgents = null;
149
-
150
- for (const agentConfig of agentsToRegister) {
151
- try {
152
- const plugin = this.registerSubAgent(agentConfig);
153
- this._subAgents.push(plugin);
154
- } catch (err) {
155
- log.error(` Failed to register subagent ${agentConfig.name}:`, err.message);
156
- }
157
- }
158
- }
159
-
160
- /**
161
- * 获取父Agent
162
- * @private
163
- */
164
- _getParentAgent() {
165
- if (!this._framework) return null;
166
- if (this._framework._mainAgent) return this._framework._mainAgent;
167
- const agents = this._framework._agents || [];
168
- return agents.length > 0 ? agents[agents.length - 1] : null;
169
- }
170
-
171
- /**
172
- * 注册子Agent
173
- * @param {Object} config - 子Agent配置
174
- * @param {string} config.name - 子Agent名称
175
- * @param {string} config.role - 子Agent角色
176
- * @param {string} [config.description] - 子Agent描述
177
- * @param {Object} [config.tools] - 自定义工具 { name: toolDef }
178
- * @param {string[]} [config.parentTools] - 从父Agent继承的工具名称
179
- * @returns {SubAgentPlugin} 注册的子Agent插件实例
180
- */
181
- registerSubAgent(config) {
182
- if (!this._framework) {
183
- throw new Error('Plugin not installed, call install(framework) first');
184
- }
185
-
186
- // 动态导入避免循环依赖
187
- const { SubAgentPlugin } = require('../../plugins/subagent-plugin');
188
-
189
- const plugin = new SubAgentPlugin({
190
- ...config,
191
- // 确保子Agent能获取父Agent
192
- _parentAgentGetter: () => {
193
- // 尝试获取主Agent
194
- if (this._framework._mainAgent) {
195
- return this._framework._mainAgent;
196
- }
197
- const agents = this._framework._agents || [];
198
- return agents.length > 0 ? agents[agents.length - 1] : null;
199
- },
200
- });
201
-
202
- plugin.install(this._framework);
203
- plugin.start(this._framework);
204
-
205
- log.debug(` Registered subagent: ${config.name}`);
206
- return plugin;
207
- }
208
-
209
- /**
210
- * 热重载插件 - 手动调用重载时执行
211
- * @param {Framework} framework - 框架实例
212
- */
213
- reload(framework) {
214
- this._framework = framework;
215
- // 清除之前的延迟注册
216
- this._deferredSubAgents = null;
217
- // 重新注册子Agent
218
- this._autoRegisterSubAgents();
219
- }
220
-
221
- /**
222
- * 卸载插件 - 清理资源
223
- * @param {Framework} framework - 框架实例
224
- */
225
- uninstall(framework) {
226
- // 销毁所有子Agent
227
- for (const plugin of this._subAgents) {
228
- try {
229
- plugin.uninstall(framework);
230
- } catch (err) {
231
- log.error(` Failed to uninstall subagent:`, err.message);
232
- }
233
- }
234
- this._subAgents = [];
235
- this._framework = null;
236
- }
237
-
238
- /**
239
- * 获取插件信息
240
- * @returns {Object}
241
- */
242
- getInfo() {
243
- return {
244
- name: this.name,
245
- version: this.version,
246
- description: this.description,
247
- priority: this.priority,
248
- };
249
- }
250
- }
251
-
252
- /**
253
- * 内置插件类型常量
254
- */
255
- const PluginType = {
256
- AI: 'ai',
257
- TOOLS: 'tools',
258
- EXECUTOR: 'executor',
259
- CAPABILITY: 'capability',
260
- };
261
-
262
- 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
+ * 插件注册的工具集(供 ExtensionExecutor 自动加载)
57
+ * 格式: { toolName: { name, description, inputSchema, execute } }
58
+ * @type {Object}
59
+ */
60
+ tools = {};
61
+
62
+ /**
63
+ * 安装插件 - 注册工具/事件等
64
+ * @param {Framework} framework - 框架实例
65
+ */
66
+ install(framework) {
67
+ this._framework = framework;
68
+ return this;
69
+ }
70
+
71
+ /**
72
+ * 注册工具到扩展执行器(供 ExtensionExecutor 统一管理)
73
+ * 支持三种调用方式:
74
+ * this.registerTool('name', { description, inputSchema, execute })
75
+ * this.registerTool({ name, description, inputSchema, execute })
76
+ * this.registerTool({ name, description, inputSchema, execute, pluginName: 'xxx' })
77
+ * @param {string|Object} name - 工具名称或工具定义对象
78
+ * @param {Object} [def] - 工具定义 { description, inputSchema, execute }
79
+ */
80
+ registerTool(name, def) {
81
+ if (!this._framework) return;
82
+ // 支持 this.registerTool({ name, description, ... }) 形式
83
+ if (typeof name === 'object' && name !== null) {
84
+ def = name;
85
+ name = def.name;
86
+ }
87
+ if (!name || !def) return;
88
+
89
+ // 支持自定义插件名
90
+ const pluginName = def.pluginName || this.name;
91
+ delete def.pluginName;
92
+
93
+ const extExec = this._framework.pluginManager.get('extension-executor');
94
+ if (extExec) {
95
+ extExec.registerTool(
96
+ pluginName,
97
+ {
98
+ name: pluginName,
99
+ description: def.description || this.description,
100
+ version: this.version,
101
+ },
102
+ { name, ...def }
103
+ );
104
+ }
105
+ }
106
+
107
+ /**
108
+ * 启动插件 - 初始化完成后的启动
109
+ * @param {Framework} framework - 框架实例
110
+ */
111
+ start(framework) {
112
+ // 自动注册配置的子Agent
113
+ this._autoRegisterSubAgents();
114
+ return this;
115
+ }
116
+
117
+ /**
118
+ * 自动注册子Agent(根据 this.agents 配置)
119
+ * @private
120
+ */
121
+ _autoRegisterSubAgents() {
122
+ // 确定要注册的agent配置
123
+ const agentsToRegister = this._deferredSubAgents || this.agents;
124
+ if (!agentsToRegister || !Array.isArray(agentsToRegister) || agentsToRegister.length === 0) {
125
+ return;
126
+ }
127
+
128
+ // 获取父Agent
129
+ const parentAgent = this._getParentAgent();
130
+
131
+ if (!parentAgent) {
132
+ // 没有父Agent,推迟到框架准备好时再注册
133
+ if (!this._deferredSubAgents) {
134
+ log.debug(` No parent agent found, deferring subagent registration`);
135
+ this._deferredSubAgents = agentsToRegister;
136
+ // 监听框架准备好事件
137
+ if (this._framework) {
138
+ this._framework.once('framework:ready', () => {
139
+ // 延迟注册,确保主Agent已创建
140
+ setTimeout(() => this._autoRegisterSubAgents(), 100);
141
+ });
142
+ }
143
+ }
144
+ return;
145
+ }
146
+
147
+ // 有父Agent了,清除延迟标记
148
+ this._deferredSubAgents = null;
149
+
150
+ for (const agentConfig of agentsToRegister) {
151
+ try {
152
+ const plugin = this.registerSubAgent(agentConfig);
153
+ this._subAgents.push(plugin);
154
+ } catch (err) {
155
+ log.error(` Failed to register subagent ${agentConfig.name}:`, err.message);
156
+ }
157
+ }
158
+ }
159
+
160
+ /**
161
+ * 获取父Agent
162
+ * @private
163
+ */
164
+ _getParentAgent() {
165
+ if (!this._framework) return null;
166
+ if (this._framework._mainAgent) return this._framework._mainAgent;
167
+ const agents = this._framework._agents || [];
168
+ return agents.length > 0 ? agents[agents.length - 1] : null;
169
+ }
170
+
171
+ /**
172
+ * 注册子Agent
173
+ * @param {Object} config - 子Agent配置
174
+ * @param {string} config.name - 子Agent名称
175
+ * @param {string} config.role - 子Agent角色
176
+ * @param {string} [config.description] - 子Agent描述
177
+ * @param {Object} [config.tools] - 自定义工具 { name: toolDef }
178
+ * @param {string[]} [config.parentTools] - 从父Agent继承的工具名称
179
+ * @returns {SubAgentPlugin} 注册的子Agent插件实例
180
+ */
181
+ registerSubAgent(config) {
182
+ if (!this._framework) {
183
+ throw new Error('Plugin not installed, call install(framework) first');
184
+ }
185
+
186
+ // 动态导入避免循环依赖
187
+ const { SubAgentPlugin } = require('../../plugins/subagent-plugin');
188
+
189
+ const plugin = new SubAgentPlugin({
190
+ ...config,
191
+ // 确保子Agent能获取父Agent
192
+ _parentAgentGetter: () => {
193
+ // 尝试获取主Agent
194
+ if (this._framework._mainAgent) {
195
+ return this._framework._mainAgent;
196
+ }
197
+ const agents = this._framework._agents || [];
198
+ return agents.length > 0 ? agents[agents.length - 1] : null;
199
+ },
200
+ });
201
+
202
+ plugin.install(this._framework);
203
+ plugin.start(this._framework);
204
+
205
+ log.debug(` Registered subagent: ${config.name}`);
206
+ return plugin;
207
+ }
208
+
209
+ /**
210
+ * 热重载插件 - 手动调用重载时执行
211
+ * @param {Framework} framework - 框架实例
212
+ */
213
+ reload(framework) {
214
+ this._framework = framework;
215
+ // 清除之前的延迟注册
216
+ this._deferredSubAgents = null;
217
+ // 重新注册子Agent
218
+ this._autoRegisterSubAgents();
219
+ }
220
+
221
+ /**
222
+ * 卸载插件 - 清理资源
223
+ * @param {Framework} framework - 框架实例
224
+ */
225
+ uninstall(framework) {
226
+ // 销毁所有子Agent
227
+ for (const plugin of this._subAgents) {
228
+ try {
229
+ plugin.uninstall(framework);
230
+ } catch (err) {
231
+ log.error(` Failed to uninstall subagent:`, err.message);
232
+ }
233
+ }
234
+ this._subAgents = [];
235
+ this._framework = null;
236
+ }
237
+
238
+ /**
239
+ * 获取插件信息
240
+ * @returns {Object}
241
+ */
242
+ getInfo() {
243
+ return {
244
+ name: this.name,
245
+ version: this.version,
246
+ description: this.description,
247
+ priority: this.priority,
248
+ };
249
+ }
250
+ }
251
+
252
+ /**
253
+ * 内置插件类型常量
254
+ */
255
+ const PluginType = {
256
+ AI: 'ai',
257
+ TOOLS: 'tools',
258
+ EXECUTOR: 'executor',
259
+ CAPABILITY: 'capability',
260
+ };
261
+
262
+ module.exports = { Plugin, PluginType };