foliko 1.1.92 → 1.1.93
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/package.json +1 -1
- package/src/core/constants.js +3 -0
package/package.json
CHANGED
package/src/core/constants.js
CHANGED
|
@@ -117,6 +117,9 @@ const DEFAULT_PLUGIN_PRIORITY = 100;
|
|
|
117
117
|
const SYSTEM_PLUGINS = new Set([
|
|
118
118
|
'ai', 'defaults', 'tools', 'skill-manager', 'session',
|
|
119
119
|
'storage', 'audit', 'rules', 'file-system',
|
|
120
|
+
// extension-executor 也是 system:true,必须保留以保证 rescanProject 后
|
|
121
|
+
// 用户持有的 extExec 引用始终有效,否则该实例会被卸载重建导致引用悬空
|
|
122
|
+
'extension-executor',
|
|
120
123
|
]);
|
|
121
124
|
|
|
122
125
|
/** Agent 配置目录名 */
|