@comate/zulu 0.8.2 → 0.8.3

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.
@@ -29,7 +29,6 @@
29
29
  "@comate/kernel": "0.9.2",
30
30
  "@comate/kernel-shared": "0.9.2",
31
31
  "@comate/plugin-engine": "^0.9.2",
32
- "@comate/plugin-shared-internals": "^0.9.2",
33
32
  "@mischnic/json-sourcemap": "^0.1.1",
34
33
  "@modelcontextprotocol/sdk": "^1.20.0",
35
34
  "@types/crypto-js": "^4.2.2",
@@ -45,12 +44,10 @@
45
44
  "crypto-js": "^4.2.0",
46
45
  "dayjs": "^1.11.13",
47
46
  "decompress": "^4.2.1",
48
- "dedent": "^1.7.1",
49
47
  "default-shell": "^2.2.0",
50
48
  "diff": "^7.0.0",
51
49
  "exceljs": "^4.4.0",
52
50
  "fast-deep-equal": "^3.1.3",
53
- "fast-glob": "^3.3.2",
54
51
  "fastest-levenshtein": "^1.0.16",
55
52
  "fdir": "^6.4.5",
56
53
  "form-data": "^4.0.0",
@@ -84,23 +81,20 @@
84
81
  "sqlite-vec-linux-arm64": "0.1.7-alpha.2",
85
82
  "sqlite-vec-linux-x64": "0.1.7-alpha.2",
86
83
  "sqlite-vec-windows-x64": "0.1.7-alpha.2",
87
- "string-similarity-js": "^2.1.4",
88
84
  "svn": "^0.4.0",
89
85
  "systeminformation": "^5.23.19",
90
86
  "tar": "^7.4.3",
91
87
  "tildify": "^3.0.0",
92
88
  "tree-kill": "^1.2.2",
93
- "vscode-jsonrpc": "^8.2.1",
94
89
  "vscode-languageserver": "8.0.2",
95
90
  "vscode-languageserver-textdocument": "^1.0.11",
96
91
  "vscode-uri": "^3.0.8",
97
92
  "web-streams-polyfill": "^4.1.0",
98
- "which": "^6.0.0",
99
- "ws": "^8.18.3",
100
- "xdg-basedir": "^5.1.0"
93
+ "ws": "^8.18.3"
101
94
  },
102
95
  "devDependencies": {
103
96
  "@comate/plugin-host": "^0.9.2",
97
+ "@comate/plugin-shared-internals": "^0.9.2",
104
98
  "@comate/preview-proxy": "workspace:^",
105
99
  "@reskript/config-lint": "^6.1.1",
106
100
  "@rollup/plugin-alias": "^5.1.1",
@@ -114,7 +108,6 @@
114
108
  "@types/js-yaml": "^4.0.9",
115
109
  "@types/node": "18.15.3",
116
110
  "@types/picomatch": "^4.0.0",
117
- "@types/which": "^3.0.4",
118
111
  "@types/ws": "^8.18.1",
119
112
  "rollup": "^4.9.2",
120
113
  "rollup-plugin-dts": "^6.1.0",
@@ -616,8 +616,13 @@ var AgentConversationType;
616
616
  /** Debug智能体 */ AgentConversationType["DebugBotConversation"] = "DebugBotConversation";
617
617
  /** 端到端智能体 */ AgentConversationType["E2EBotConversation"] = "E2EBotConversation";
618
618
  /** F2C智能体 */ AgentConversationType["F2cBotConversation"] = "F2cBotConversation";
619
- /** 重构后的新智能体 */ AgentConversationType["AgentConversation"] = "AgentConversation";
620
619
  })(AgentConversationType || (AgentConversationType = {}));
620
+ ({
621
+ [AgentConversationType.SecuBotConversation]: '安全智能体',
622
+ [AgentConversationType.DebugBotConversation]: 'Debug智能体',
623
+ [AgentConversationType.E2EBotConversation]: '端到端智能体',
624
+ [AgentConversationType.F2cBotConversation]: 'F2C智能体'
625
+ });
621
626
  // 定义任务的状态类型
622
627
  var AgentConversationStatus;
623
628
  (function(AgentConversationStatus) {
@@ -62192,12 +62197,7 @@ const util$1 = require$$0$5;
62192
62197
  const braces = braces_1;
62193
62198
  const picomatch = picomatch$2;
62194
62199
  const utils$b = utils$k;
62195
-
62196
- const isEmptyString = v => v === '' || v === './';
62197
- const hasBraces = v => {
62198
- const index = v.indexOf('{');
62199
- return index > -1 && v.indexOf('}', index) > -1;
62200
- };
62200
+ const isEmptyString = val => val === '' || val === './';
62201
62201
 
62202
62202
  /**
62203
62203
  * Returns an array of strings that match one or more glob patterns.
@@ -62638,7 +62638,7 @@ micromatch$1.parse = (patterns, options) => {
62638
62638
 
62639
62639
  micromatch$1.braces = (pattern, options) => {
62640
62640
  if (typeof pattern !== 'string') throw new TypeError('Expected a string');
62641
- if ((options && options.nobrace === true) || !hasBraces(pattern)) {
62641
+ if ((options && options.nobrace === true) || !/\{.*\}/.test(pattern)) {
62642
62642
  return [pattern];
62643
62643
  }
62644
62644
  return braces(pattern, options);
@@ -62657,8 +62657,6 @@ micromatch$1.braceExpand = (pattern, options) => {
62657
62657
  * Expose micromatch
62658
62658
  */
62659
62659
 
62660
- // exposed for tests
62661
- micromatch$1.hasBraces = hasBraces;
62662
62660
  var micromatch_1 = micromatch$1;
62663
62661
 
62664
62662
  Object.defineProperty(pattern$1, "__esModule", { value: true });