@claude-flow/cli 3.0.0-alpha.6 → 3.0.0-alpha.7
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/.agentic-flow/intelligence.json +4 -4
- package/.claude-flow/agents/store.json +16 -0
- package/.claude-flow/daemon-state.json +123 -0
- package/.claude-flow/hive-mind/state.json +51 -0
- package/.claude-flow/metrics/codebase-map.json +11 -0
- package/.claude-flow/metrics/consolidation.json +6 -0
- package/.claude-flow/metrics/performance.json +3 -3
- package/.claude-flow/metrics/security-audit.json +10 -0
- package/.claude-flow/metrics/task-metrics.json +3 -3
- package/.claude-flow/metrics/test-gaps.json +6 -0
- package/agents/architect.yaml +1 -1
- package/agents/coder.yaml +1 -1
- package/agents/reviewer.yaml +1 -1
- package/agents/security-architect.yaml +1 -1
- package/agents/tester.yaml +1 -1
- package/dist/src/commands/agent.d.ts.map +1 -1
- package/dist/src/commands/agent.js +42 -26
- package/dist/src/commands/agent.js.map +1 -1
- package/dist/src/commands/daemon.d.ts +8 -0
- package/dist/src/commands/daemon.d.ts.map +1 -0
- package/dist/src/commands/daemon.js +351 -0
- package/dist/src/commands/daemon.js.map +1 -0
- package/dist/src/commands/hive-mind.d.ts.map +1 -1
- package/dist/src/commands/hive-mind.js +252 -35
- package/dist/src/commands/hive-mind.js.map +1 -1
- package/dist/src/commands/index.d.ts +1 -0
- package/dist/src/commands/index.d.ts.map +1 -1
- package/dist/src/commands/index.js +4 -1
- package/dist/src/commands/index.js.map +1 -1
- package/dist/src/commands/start.js +2 -2
- package/dist/src/commands/start.js.map +1 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +5 -2
- package/dist/src/index.js.map +1 -1
- package/dist/src/init/settings-generator.d.ts.map +1 -1
- package/dist/src/init/settings-generator.js +22 -12
- package/dist/src/init/settings-generator.js.map +1 -1
- package/dist/src/mcp-client.d.ts.map +1 -1
- package/dist/src/mcp-client.js +13 -1
- package/dist/src/mcp-client.js.map +1 -1
- package/dist/src/mcp-tools/agent-tools.d.ts +1 -1
- package/dist/src/mcp-tools/agent-tools.d.ts.map +1 -1
- package/dist/src/mcp-tools/agent-tools.js +350 -14
- package/dist/src/mcp-tools/agent-tools.js.map +1 -1
- package/dist/src/mcp-tools/config-tools.d.ts +1 -1
- package/dist/src/mcp-tools/config-tools.d.ts.map +1 -1
- package/dist/src/mcp-tools/config-tools.js +262 -15
- package/dist/src/mcp-tools/config-tools.js.map +1 -1
- package/dist/src/mcp-tools/hive-mind-tools.d.ts +8 -0
- package/dist/src/mcp-tools/hive-mind-tools.d.ts.map +1 -0
- package/dist/src/mcp-tools/hive-mind-tools.js +447 -0
- package/dist/src/mcp-tools/hive-mind-tools.js.map +1 -0
- package/dist/src/mcp-tools/hooks-tools.d.ts.map +1 -1
- package/dist/src/mcp-tools/hooks-tools.js +46 -7
- package/dist/src/mcp-tools/hooks-tools.js.map +1 -1
- package/dist/src/mcp-tools/index.d.ts +2 -0
- package/dist/src/mcp-tools/index.d.ts.map +1 -1
- package/dist/src/mcp-tools/index.js +2 -0
- package/dist/src/mcp-tools/index.js.map +1 -1
- package/dist/src/mcp-tools/session-tools.d.ts +1 -1
- package/dist/src/mcp-tools/session-tools.d.ts.map +1 -1
- package/dist/src/mcp-tools/session-tools.js +237 -22
- package/dist/src/mcp-tools/session-tools.js.map +1 -1
- package/dist/src/mcp-tools/task-tools.d.ts +1 -1
- package/dist/src/mcp-tools/task-tools.d.ts.map +1 -1
- package/dist/src/mcp-tools/task-tools.js +219 -17
- package/dist/src/mcp-tools/task-tools.js.map +1 -1
- package/dist/src/mcp-tools/workflow-tools.d.ts +8 -0
- package/dist/src/mcp-tools/workflow-tools.d.ts.map +1 -0
- package/dist/src/mcp-tools/workflow-tools.js +481 -0
- package/dist/src/mcp-tools/workflow-tools.js.map +1 -0
- package/dist/src/services/index.d.ts +7 -0
- package/dist/src/services/index.d.ts.map +1 -0
- package/dist/src/services/index.js +6 -0
- package/dist/src/services/index.js.map +1 -0
- package/dist/src/services/worker-daemon.d.ts +126 -0
- package/dist/src/services/worker-daemon.d.ts.map +1 -0
- package/dist/src/services/worker-daemon.js +464 -0
- package/dist/src/services/worker-daemon.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/commands/agent.ts +42 -28
- package/src/commands/daemon.ts +395 -0
- package/src/commands/hive-mind.ts +229 -63
- package/src/commands/index.ts +4 -1
- package/src/commands/start.ts +2 -2
- package/src/index.ts +5 -2
- package/src/init/settings-generator.ts +22 -12
- package/src/mcp-client.ts +13 -1
- package/src/mcp-tools/agent-tools.ts +388 -14
- package/src/mcp-tools/config-tools.ts +297 -15
- package/src/mcp-tools/hive-mind-tools.ts +521 -0
- package/src/mcp-tools/hooks-tools.ts +46 -7
- package/src/mcp-tools/index.ts +2 -0
- package/src/mcp-tools/session-tools.ts +280 -23
- package/src/mcp-tools/task-tools.ts +265 -20
- package/src/mcp-tools/workflow-tools.ts +573 -0
- package/src/services/index.ts +15 -0
- package/src/services/worker-daemon.ts +594 -0
|
@@ -1,8 +1,86 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Config MCP Tools for CLI
|
|
3
3
|
*
|
|
4
|
-
* Tool definitions for configuration management.
|
|
4
|
+
* Tool definitions for configuration management with file persistence.
|
|
5
5
|
*/
|
|
6
|
+
import { existsSync, readFileSync, writeFileSync, mkdirSync } from 'node:fs';
|
|
7
|
+
import { join } from 'node:path';
|
|
8
|
+
// Storage paths
|
|
9
|
+
const STORAGE_DIR = '.claude-flow';
|
|
10
|
+
const CONFIG_FILE = 'config.json';
|
|
11
|
+
const DEFAULT_CONFIG = {
|
|
12
|
+
'swarm.topology': 'mesh',
|
|
13
|
+
'swarm.maxAgents': 10,
|
|
14
|
+
'swarm.autoScale': true,
|
|
15
|
+
'memory.persistInterval': 60000,
|
|
16
|
+
'memory.maxEntries': 10000,
|
|
17
|
+
'session.autoSave': true,
|
|
18
|
+
'session.saveInterval': 300000,
|
|
19
|
+
'logging.level': 'info',
|
|
20
|
+
'logging.format': 'json',
|
|
21
|
+
'security.sandboxEnabled': true,
|
|
22
|
+
'security.pathValidation': true,
|
|
23
|
+
};
|
|
24
|
+
function getConfigDir() {
|
|
25
|
+
return join(process.cwd(), STORAGE_DIR);
|
|
26
|
+
}
|
|
27
|
+
function getConfigPath() {
|
|
28
|
+
return join(getConfigDir(), CONFIG_FILE);
|
|
29
|
+
}
|
|
30
|
+
function ensureConfigDir() {
|
|
31
|
+
const dir = getConfigDir();
|
|
32
|
+
if (!existsSync(dir)) {
|
|
33
|
+
mkdirSync(dir, { recursive: true });
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
function loadConfigStore() {
|
|
37
|
+
try {
|
|
38
|
+
const path = getConfigPath();
|
|
39
|
+
if (existsSync(path)) {
|
|
40
|
+
const data = readFileSync(path, 'utf-8');
|
|
41
|
+
return JSON.parse(data);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
catch {
|
|
45
|
+
// Return default store on error
|
|
46
|
+
}
|
|
47
|
+
return {
|
|
48
|
+
values: { ...DEFAULT_CONFIG },
|
|
49
|
+
scopes: {},
|
|
50
|
+
version: '3.0.0',
|
|
51
|
+
updatedAt: new Date().toISOString(),
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
function saveConfigStore(store) {
|
|
55
|
+
ensureConfigDir();
|
|
56
|
+
store.updatedAt = new Date().toISOString();
|
|
57
|
+
writeFileSync(getConfigPath(), JSON.stringify(store, null, 2), 'utf-8');
|
|
58
|
+
}
|
|
59
|
+
function getNestedValue(obj, key) {
|
|
60
|
+
const parts = key.split('.');
|
|
61
|
+
let current = obj;
|
|
62
|
+
for (const part of parts) {
|
|
63
|
+
if (current && typeof current === 'object' && part in current) {
|
|
64
|
+
current = current[part];
|
|
65
|
+
}
|
|
66
|
+
else {
|
|
67
|
+
return undefined;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
return current;
|
|
71
|
+
}
|
|
72
|
+
function setNestedValue(obj, key, value) {
|
|
73
|
+
const parts = key.split('.');
|
|
74
|
+
let current = obj;
|
|
75
|
+
for (let i = 0; i < parts.length - 1; i++) {
|
|
76
|
+
const part = parts[i];
|
|
77
|
+
if (!(part in current) || typeof current[part] !== 'object') {
|
|
78
|
+
current[part] = {};
|
|
79
|
+
}
|
|
80
|
+
current = current[part];
|
|
81
|
+
}
|
|
82
|
+
current[parts[parts.length - 1]] = value;
|
|
83
|
+
}
|
|
6
84
|
export const configTools = [
|
|
7
85
|
{
|
|
8
86
|
name: 'config/get',
|
|
@@ -11,16 +89,32 @@ export const configTools = [
|
|
|
11
89
|
inputSchema: {
|
|
12
90
|
type: 'object',
|
|
13
91
|
properties: {
|
|
14
|
-
key: { type: 'string', description: 'Configuration key' },
|
|
15
|
-
scope: { type: 'string', description: 'Configuration scope' },
|
|
92
|
+
key: { type: 'string', description: 'Configuration key (dot notation supported)' },
|
|
93
|
+
scope: { type: 'string', description: 'Configuration scope (project, user, system)' },
|
|
16
94
|
},
|
|
17
95
|
required: ['key'],
|
|
18
96
|
},
|
|
19
97
|
handler: async (input) => {
|
|
98
|
+
const store = loadConfigStore();
|
|
99
|
+
const key = input.key;
|
|
100
|
+
const scope = input.scope || 'default';
|
|
101
|
+
let value;
|
|
102
|
+
// Check scope first, then default values
|
|
103
|
+
if (scope !== 'default' && store.scopes[scope]) {
|
|
104
|
+
value = store.scopes[scope][key];
|
|
105
|
+
}
|
|
106
|
+
if (value === undefined) {
|
|
107
|
+
value = store.values[key];
|
|
108
|
+
}
|
|
109
|
+
if (value === undefined) {
|
|
110
|
+
value = DEFAULT_CONFIG[key];
|
|
111
|
+
}
|
|
20
112
|
return {
|
|
21
|
-
key
|
|
22
|
-
value
|
|
23
|
-
scope
|
|
113
|
+
key,
|
|
114
|
+
value,
|
|
115
|
+
scope,
|
|
116
|
+
exists: value !== undefined,
|
|
117
|
+
source: value !== undefined ? (store.values[key] !== undefined ? 'stored' : 'default') : 'none',
|
|
24
118
|
};
|
|
25
119
|
},
|
|
26
120
|
},
|
|
@@ -31,17 +125,35 @@ export const configTools = [
|
|
|
31
125
|
inputSchema: {
|
|
32
126
|
type: 'object',
|
|
33
127
|
properties: {
|
|
34
|
-
key: { type: 'string', description: 'Configuration key' },
|
|
128
|
+
key: { type: 'string', description: 'Configuration key (dot notation supported)' },
|
|
35
129
|
value: { description: 'Configuration value' },
|
|
36
|
-
scope: { type: 'string', description: 'Configuration scope' },
|
|
130
|
+
scope: { type: 'string', description: 'Configuration scope (project, user, system)' },
|
|
37
131
|
},
|
|
38
132
|
required: ['key', 'value'],
|
|
39
133
|
},
|
|
40
134
|
handler: async (input) => {
|
|
135
|
+
const store = loadConfigStore();
|
|
136
|
+
const key = input.key;
|
|
137
|
+
const value = input.value;
|
|
138
|
+
const scope = input.scope || 'default';
|
|
139
|
+
const previousValue = store.values[key];
|
|
140
|
+
if (scope === 'default') {
|
|
141
|
+
store.values[key] = value;
|
|
142
|
+
}
|
|
143
|
+
else {
|
|
144
|
+
if (!store.scopes[scope]) {
|
|
145
|
+
store.scopes[scope] = {};
|
|
146
|
+
}
|
|
147
|
+
store.scopes[scope][key] = value;
|
|
148
|
+
}
|
|
149
|
+
saveConfigStore(store);
|
|
41
150
|
return {
|
|
42
151
|
success: true,
|
|
43
|
-
key
|
|
44
|
-
|
|
152
|
+
key,
|
|
153
|
+
value,
|
|
154
|
+
previousValue,
|
|
155
|
+
scope,
|
|
156
|
+
path: getConfigPath(),
|
|
45
157
|
};
|
|
46
158
|
},
|
|
47
159
|
},
|
|
@@ -54,12 +166,41 @@ export const configTools = [
|
|
|
54
166
|
properties: {
|
|
55
167
|
scope: { type: 'string', description: 'Configuration scope' },
|
|
56
168
|
prefix: { type: 'string', description: 'Key prefix filter' },
|
|
169
|
+
includeDefaults: { type: 'boolean', description: 'Include default values' },
|
|
57
170
|
},
|
|
58
171
|
},
|
|
59
172
|
handler: async (input) => {
|
|
173
|
+
const store = loadConfigStore();
|
|
174
|
+
const scope = input.scope || 'default';
|
|
175
|
+
const prefix = input.prefix;
|
|
176
|
+
const includeDefaults = input.includeDefaults !== false;
|
|
177
|
+
// Merge stored values with defaults
|
|
178
|
+
let configs = {};
|
|
179
|
+
if (includeDefaults) {
|
|
180
|
+
configs = { ...DEFAULT_CONFIG };
|
|
181
|
+
}
|
|
182
|
+
// Add stored values
|
|
183
|
+
Object.assign(configs, store.values);
|
|
184
|
+
// Add scope-specific values
|
|
185
|
+
if (scope !== 'default' && store.scopes[scope]) {
|
|
186
|
+
Object.assign(configs, store.scopes[scope]);
|
|
187
|
+
}
|
|
188
|
+
// Filter by prefix
|
|
189
|
+
let entries = Object.entries(configs);
|
|
190
|
+
if (prefix) {
|
|
191
|
+
entries = entries.filter(([key]) => key.startsWith(prefix));
|
|
192
|
+
}
|
|
193
|
+
// Sort by key
|
|
194
|
+
entries.sort(([a], [b]) => a.localeCompare(b));
|
|
60
195
|
return {
|
|
61
|
-
configs: []
|
|
62
|
-
|
|
196
|
+
configs: entries.map(([key, value]) => ({
|
|
197
|
+
key,
|
|
198
|
+
value,
|
|
199
|
+
source: store.values[key] !== undefined ? 'stored' : 'default',
|
|
200
|
+
})),
|
|
201
|
+
total: entries.length,
|
|
202
|
+
scope,
|
|
203
|
+
updatedAt: store.updatedAt,
|
|
63
204
|
};
|
|
64
205
|
},
|
|
65
206
|
},
|
|
@@ -71,14 +212,120 @@ export const configTools = [
|
|
|
71
212
|
type: 'object',
|
|
72
213
|
properties: {
|
|
73
214
|
scope: { type: 'string', description: 'Configuration scope' },
|
|
74
|
-
key: { type: 'string', description: 'Specific key to reset' },
|
|
215
|
+
key: { type: 'string', description: 'Specific key to reset (omit to reset all)' },
|
|
216
|
+
},
|
|
217
|
+
},
|
|
218
|
+
handler: async (input) => {
|
|
219
|
+
const store = loadConfigStore();
|
|
220
|
+
const scope = input.scope || 'default';
|
|
221
|
+
const key = input.key;
|
|
222
|
+
let resetKeys = [];
|
|
223
|
+
if (key) {
|
|
224
|
+
// Reset specific key
|
|
225
|
+
if (scope === 'default') {
|
|
226
|
+
if (key in store.values) {
|
|
227
|
+
delete store.values[key];
|
|
228
|
+
resetKeys.push(key);
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
else if (store.scopes[scope] && key in store.scopes[scope]) {
|
|
232
|
+
delete store.scopes[scope][key];
|
|
233
|
+
resetKeys.push(key);
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
else {
|
|
237
|
+
// Reset all keys in scope
|
|
238
|
+
if (scope === 'default') {
|
|
239
|
+
resetKeys = Object.keys(store.values);
|
|
240
|
+
store.values = { ...DEFAULT_CONFIG };
|
|
241
|
+
}
|
|
242
|
+
else if (store.scopes[scope]) {
|
|
243
|
+
resetKeys = Object.keys(store.scopes[scope]);
|
|
244
|
+
delete store.scopes[scope];
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
saveConfigStore(store);
|
|
248
|
+
return {
|
|
249
|
+
success: true,
|
|
250
|
+
scope,
|
|
251
|
+
reset: key || 'all',
|
|
252
|
+
resetKeys,
|
|
253
|
+
count: resetKeys.length,
|
|
254
|
+
};
|
|
255
|
+
},
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
name: 'config/export',
|
|
259
|
+
description: 'Export configuration to JSON',
|
|
260
|
+
category: 'config',
|
|
261
|
+
inputSchema: {
|
|
262
|
+
type: 'object',
|
|
263
|
+
properties: {
|
|
264
|
+
scope: { type: 'string', description: 'Configuration scope' },
|
|
265
|
+
includeDefaults: { type: 'boolean', description: 'Include default values' },
|
|
266
|
+
},
|
|
267
|
+
},
|
|
268
|
+
handler: async (input) => {
|
|
269
|
+
const store = loadConfigStore();
|
|
270
|
+
const scope = input.scope || 'default';
|
|
271
|
+
const includeDefaults = input.includeDefaults !== false;
|
|
272
|
+
let exportData = {};
|
|
273
|
+
if (includeDefaults) {
|
|
274
|
+
exportData = { ...DEFAULT_CONFIG };
|
|
275
|
+
}
|
|
276
|
+
Object.assign(exportData, store.values);
|
|
277
|
+
if (scope !== 'default' && store.scopes[scope]) {
|
|
278
|
+
Object.assign(exportData, store.scopes[scope]);
|
|
279
|
+
}
|
|
280
|
+
return {
|
|
281
|
+
config: exportData,
|
|
282
|
+
scope,
|
|
283
|
+
version: store.version,
|
|
284
|
+
exportedAt: new Date().toISOString(),
|
|
285
|
+
count: Object.keys(exportData).length,
|
|
286
|
+
};
|
|
287
|
+
},
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
name: 'config/import',
|
|
291
|
+
description: 'Import configuration from JSON',
|
|
292
|
+
category: 'config',
|
|
293
|
+
inputSchema: {
|
|
294
|
+
type: 'object',
|
|
295
|
+
properties: {
|
|
296
|
+
config: { type: 'object', description: 'Configuration object to import' },
|
|
297
|
+
scope: { type: 'string', description: 'Configuration scope' },
|
|
298
|
+
merge: { type: 'boolean', description: 'Merge with existing (true) or replace (false)' },
|
|
75
299
|
},
|
|
300
|
+
required: ['config'],
|
|
76
301
|
},
|
|
77
302
|
handler: async (input) => {
|
|
303
|
+
const store = loadConfigStore();
|
|
304
|
+
const config = input.config;
|
|
305
|
+
const scope = input.scope || 'default';
|
|
306
|
+
const merge = input.merge !== false;
|
|
307
|
+
const importedKeys = Object.keys(config);
|
|
308
|
+
if (scope === 'default') {
|
|
309
|
+
if (merge) {
|
|
310
|
+
Object.assign(store.values, config);
|
|
311
|
+
}
|
|
312
|
+
else {
|
|
313
|
+
store.values = { ...DEFAULT_CONFIG, ...config };
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
else {
|
|
317
|
+
if (!store.scopes[scope] || !merge) {
|
|
318
|
+
store.scopes[scope] = {};
|
|
319
|
+
}
|
|
320
|
+
Object.assign(store.scopes[scope], config);
|
|
321
|
+
}
|
|
322
|
+
saveConfigStore(store);
|
|
78
323
|
return {
|
|
79
324
|
success: true,
|
|
80
|
-
scope
|
|
81
|
-
|
|
325
|
+
scope,
|
|
326
|
+
imported: importedKeys.length,
|
|
327
|
+
keys: importedKeys,
|
|
328
|
+
merge,
|
|
82
329
|
};
|
|
83
330
|
},
|
|
84
331
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config-tools.js","sourceRoot":"","sources":["../../../src/mcp-tools/config-tools.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,MAAM,CAAC,MAAM,WAAW,GAAc;IACpC;QACE,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,yBAAyB;QACtC,QAAQ,EAAE,QAAQ;QAClB,WAAW,EAAE;YACX,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACV,GAAG,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,mBAAmB,EAAE;gBACzD,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,qBAAqB,EAAE;aAC9D;YACD,QAAQ,EAAE,CAAC,KAAK,CAAC;SAClB;QACD,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE;YACvB,OAAO;gBACL,GAAG,EAAE,KAAK,CAAC,GAAG;gBACd,KAAK,EAAE,IAAI;gBACX,KAAK,EAAE,KAAK,CAAC,KAAK,IAAI,SAAS;aAChC,CAAC;QACJ,CAAC;KACF;IACD;QACE,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,yBAAyB;QACtC,QAAQ,EAAE,QAAQ;QAClB,WAAW,EAAE;YACX,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACV,GAAG,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,mBAAmB,EAAE;gBACzD,KAAK,EAAE,EAAE,WAAW,EAAE,qBAAqB,EAAE;gBAC7C,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,qBAAqB,EAAE;aAC9D;YACD,QAAQ,EAAE,CAAC,KAAK,EAAE,OAAO,CAAC;SAC3B;QACD,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE;YACvB,OAAO;gBACL,OAAO,EAAE,IAAI;gBACb,GAAG,EAAE,KAAK,CAAC,GAAG;gBACd,KAAK,EAAE,KAAK,CAAC,KAAK,IAAI,SAAS;aAChC,CAAC;QACJ,CAAC;KACF;IACD;QACE,IAAI,EAAE,aAAa;QACnB,WAAW,EAAE,2BAA2B;QACxC,QAAQ,EAAE,QAAQ;QAClB,WAAW,EAAE;YACX,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACV,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,qBAAqB,EAAE;gBAC7D,MAAM,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,mBAAmB,EAAE;aAC7D;SACF;QACD,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE;YACvB,OAAO;gBACL,OAAO,EAAE,EAAE;gBACX,KAAK,EAAE,KAAK,CAAC,KAAK,IAAI,SAAS;aAChC,CAAC;QACJ,CAAC;KACF;IACD;QACE,IAAI,EAAE,cAAc;QACpB,WAAW,EAAE,iCAAiC;QAC9C,QAAQ,EAAE,QAAQ;QAClB,WAAW,EAAE;YACX,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACV,KAAK,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,qBAAqB,EAAE;gBAC7D,GAAG,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,uBAAuB,EAAE;aAC9D;SACF;QACD,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE;YACvB,OAAO;gBACL,OAAO,EAAE,IAAI;gBACb,KAAK,EAAE,KAAK,CAAC,KAAK,IAAI,SAAS;gBAC/B,KAAK,EAAE,KAAK,CAAC,GAAG,IAAI,KAAK;aAC1B,CAAC;QACJ,CAAC;KACF;CACF,CAAC"}
|
|
1
|
+
{"version":3,"file":"config-tools.js","sourceRoot":"","sources":["../../../src/mcp-tools/config-tools.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hive-mind-tools.d.ts","sourceRoot":"","sources":["../../../src/mcp-tools/hive-mind-tools.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAqF1C,eAAO,MAAM,aAAa,EAAE,OAAO,EA2alC,CAAC"}
|