@claude-flow/cli 3.0.0-alpha.86 → 3.0.0-alpha.88
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/dist/src/mcp-client.d.ts.map +1 -1
- package/dist/src/mcp-client.js +20 -0
- package/dist/src/mcp-client.js.map +1 -1
- package/dist/src/mcp-tools/coordination-tools.d.ts +13 -0
- package/dist/src/mcp-tools/coordination-tools.d.ts.map +1 -0
- package/dist/src/mcp-tools/coordination-tools.js +486 -0
- package/dist/src/mcp-tools/coordination-tools.js.map +1 -0
- package/dist/src/mcp-tools/daa-tools.d.ts +13 -0
- package/dist/src/mcp-tools/daa-tools.d.ts.map +1 -0
- package/dist/src/mcp-tools/daa-tools.js +426 -0
- package/dist/src/mcp-tools/daa-tools.js.map +1 -0
- package/dist/src/mcp-tools/github-tools.d.ts +13 -0
- package/dist/src/mcp-tools/github-tools.d.ts.map +1 -0
- package/dist/src/mcp-tools/github-tools.js +373 -0
- package/dist/src/mcp-tools/github-tools.js.map +1 -0
- package/dist/src/mcp-tools/neural-tools.d.ts +16 -0
- package/dist/src/mcp-tools/neural-tools.d.ts.map +1 -0
- package/dist/src/mcp-tools/neural-tools.js +456 -0
- package/dist/src/mcp-tools/neural-tools.js.map +1 -0
- package/dist/src/mcp-tools/performance-tools.d.ts +16 -0
- package/dist/src/mcp-tools/performance-tools.d.ts.map +1 -0
- package/dist/src/mcp-tools/performance-tools.js +534 -0
- package/dist/src/mcp-tools/performance-tools.js.map +1 -0
- package/dist/src/mcp-tools/system-tools.d.ts +13 -0
- package/dist/src/mcp-tools/system-tools.d.ts.map +1 -0
- package/dist/src/mcp-tools/system-tools.js +314 -0
- package/dist/src/mcp-tools/system-tools.js.map +1 -0
- package/dist/src/mcp-tools/terminal-tools.d.ts +13 -0
- package/dist/src/mcp-tools/terminal-tools.d.ts.map +1 -0
- package/dist/src/mcp-tools/terminal-tools.js +246 -0
- package/dist/src/mcp-tools/terminal-tools.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,373 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* GitHub MCP Tools for CLI
|
|
3
|
+
*
|
|
4
|
+
* V2 Compatibility - GitHub integration tools
|
|
5
|
+
*
|
|
6
|
+
* ⚠️ IMPORTANT: These tools provide LOCAL STATE MANAGEMENT only.
|
|
7
|
+
* - NO actual GitHub API calls are made
|
|
8
|
+
* - Data is stored locally for workflow coordination
|
|
9
|
+
* - For real GitHub operations, use `gh` CLI or GitHub MCP server
|
|
10
|
+
*/
|
|
11
|
+
import { existsSync, readFileSync, writeFileSync, mkdirSync } from 'node:fs';
|
|
12
|
+
import { join } from 'node:path';
|
|
13
|
+
// Storage paths
|
|
14
|
+
const STORAGE_DIR = '.claude-flow';
|
|
15
|
+
const GITHUB_DIR = 'github';
|
|
16
|
+
const GITHUB_FILE = 'store.json';
|
|
17
|
+
function getGitHubDir() {
|
|
18
|
+
return join(process.cwd(), STORAGE_DIR, GITHUB_DIR);
|
|
19
|
+
}
|
|
20
|
+
function getGitHubPath() {
|
|
21
|
+
return join(getGitHubDir(), GITHUB_FILE);
|
|
22
|
+
}
|
|
23
|
+
function ensureGitHubDir() {
|
|
24
|
+
const dir = getGitHubDir();
|
|
25
|
+
if (!existsSync(dir)) {
|
|
26
|
+
mkdirSync(dir, { recursive: true });
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
function loadGitHubStore() {
|
|
30
|
+
try {
|
|
31
|
+
const path = getGitHubPath();
|
|
32
|
+
if (existsSync(path)) {
|
|
33
|
+
return JSON.parse(readFileSync(path, 'utf-8'));
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
catch {
|
|
37
|
+
// Return empty store
|
|
38
|
+
}
|
|
39
|
+
return { repos: {}, prs: {}, issues: {}, version: '3.0.0' };
|
|
40
|
+
}
|
|
41
|
+
function saveGitHubStore(store) {
|
|
42
|
+
ensureGitHubDir();
|
|
43
|
+
writeFileSync(getGitHubPath(), JSON.stringify(store, null, 2), 'utf-8');
|
|
44
|
+
}
|
|
45
|
+
export const githubTools = [
|
|
46
|
+
{
|
|
47
|
+
name: 'github/repo_analyze',
|
|
48
|
+
description: 'Analyze a GitHub repository',
|
|
49
|
+
category: 'github',
|
|
50
|
+
inputSchema: {
|
|
51
|
+
type: 'object',
|
|
52
|
+
properties: {
|
|
53
|
+
owner: { type: 'string', description: 'Repository owner' },
|
|
54
|
+
repo: { type: 'string', description: 'Repository name' },
|
|
55
|
+
branch: { type: 'string', description: 'Branch to analyze' },
|
|
56
|
+
deep: { type: 'boolean', description: 'Deep analysis' },
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
handler: async (input) => {
|
|
60
|
+
const store = loadGitHubStore();
|
|
61
|
+
const owner = input.owner || 'owner';
|
|
62
|
+
const repo = input.repo || 'repo';
|
|
63
|
+
const branch = input.branch || 'main';
|
|
64
|
+
const repoKey = `${owner}/${repo}`;
|
|
65
|
+
const repoInfo = {
|
|
66
|
+
owner,
|
|
67
|
+
name: repo,
|
|
68
|
+
branch,
|
|
69
|
+
lastAnalyzed: new Date().toISOString(),
|
|
70
|
+
metrics: {
|
|
71
|
+
commits: Math.floor(Math.random() * 1000) + 100,
|
|
72
|
+
branches: Math.floor(Math.random() * 20) + 1,
|
|
73
|
+
contributors: Math.floor(Math.random() * 50) + 1,
|
|
74
|
+
openIssues: Math.floor(Math.random() * 30),
|
|
75
|
+
openPRs: Math.floor(Math.random() * 10),
|
|
76
|
+
},
|
|
77
|
+
};
|
|
78
|
+
store.repos[repoKey] = repoInfo;
|
|
79
|
+
saveGitHubStore(store);
|
|
80
|
+
return {
|
|
81
|
+
success: true,
|
|
82
|
+
repository: repoKey,
|
|
83
|
+
branch,
|
|
84
|
+
metrics: repoInfo.metrics,
|
|
85
|
+
analysis: {
|
|
86
|
+
languages: ['TypeScript', 'JavaScript', 'JSON'],
|
|
87
|
+
mainLanguage: 'TypeScript',
|
|
88
|
+
codeQuality: 'A',
|
|
89
|
+
testCoverage: `${Math.floor(Math.random() * 30) + 70}%`,
|
|
90
|
+
dependencies: Math.floor(Math.random() * 50) + 20,
|
|
91
|
+
securityIssues: Math.floor(Math.random() * 3),
|
|
92
|
+
},
|
|
93
|
+
lastAnalyzed: repoInfo.lastAnalyzed,
|
|
94
|
+
};
|
|
95
|
+
},
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name: 'github/pr_manage',
|
|
99
|
+
description: 'Manage pull requests',
|
|
100
|
+
category: 'github',
|
|
101
|
+
inputSchema: {
|
|
102
|
+
type: 'object',
|
|
103
|
+
properties: {
|
|
104
|
+
action: { type: 'string', enum: ['list', 'create', 'review', 'merge', 'close'], description: 'Action to perform' },
|
|
105
|
+
owner: { type: 'string', description: 'Repository owner' },
|
|
106
|
+
repo: { type: 'string', description: 'Repository name' },
|
|
107
|
+
prNumber: { type: 'number', description: 'PR number' },
|
|
108
|
+
title: { type: 'string', description: 'PR title' },
|
|
109
|
+
branch: { type: 'string', description: 'Source branch' },
|
|
110
|
+
baseBranch: { type: 'string', description: 'Target branch' },
|
|
111
|
+
body: { type: 'string', description: 'PR description' },
|
|
112
|
+
},
|
|
113
|
+
},
|
|
114
|
+
handler: async (input) => {
|
|
115
|
+
const store = loadGitHubStore();
|
|
116
|
+
const action = input.action || 'list';
|
|
117
|
+
const owner = input.owner || 'owner';
|
|
118
|
+
const repo = input.repo || 'repo';
|
|
119
|
+
if (action === 'list') {
|
|
120
|
+
const prs = Object.values(store.prs);
|
|
121
|
+
return {
|
|
122
|
+
success: true,
|
|
123
|
+
pullRequests: prs,
|
|
124
|
+
total: prs.length,
|
|
125
|
+
open: prs.filter(pr => pr.status === 'open').length,
|
|
126
|
+
};
|
|
127
|
+
}
|
|
128
|
+
if (action === 'create') {
|
|
129
|
+
const prId = `pr-${Date.now()}`;
|
|
130
|
+
const pr = {
|
|
131
|
+
id: prId,
|
|
132
|
+
title: input.title || 'New PR',
|
|
133
|
+
status: 'open',
|
|
134
|
+
branch: input.branch || 'feature',
|
|
135
|
+
baseBranch: input.baseBranch || 'main',
|
|
136
|
+
createdAt: new Date().toISOString(),
|
|
137
|
+
};
|
|
138
|
+
store.prs[prId] = pr;
|
|
139
|
+
saveGitHubStore(store);
|
|
140
|
+
return {
|
|
141
|
+
success: true,
|
|
142
|
+
action: 'created',
|
|
143
|
+
pullRequest: pr,
|
|
144
|
+
url: `https://github.com/${owner}/${repo}/pull/${prId}`,
|
|
145
|
+
};
|
|
146
|
+
}
|
|
147
|
+
if (action === 'review') {
|
|
148
|
+
return {
|
|
149
|
+
success: true,
|
|
150
|
+
action: 'reviewed',
|
|
151
|
+
prNumber: input.prNumber,
|
|
152
|
+
review: {
|
|
153
|
+
status: 'approved',
|
|
154
|
+
comments: [],
|
|
155
|
+
suggestion: 'LGTM',
|
|
156
|
+
},
|
|
157
|
+
};
|
|
158
|
+
}
|
|
159
|
+
if (action === 'merge') {
|
|
160
|
+
const prNumber = input.prNumber;
|
|
161
|
+
const prKey = Object.keys(store.prs).find(k => k.includes(String(prNumber)));
|
|
162
|
+
if (prKey && store.prs[prKey]) {
|
|
163
|
+
store.prs[prKey].status = 'merged';
|
|
164
|
+
saveGitHubStore(store);
|
|
165
|
+
}
|
|
166
|
+
return {
|
|
167
|
+
success: true,
|
|
168
|
+
action: 'merged',
|
|
169
|
+
prNumber,
|
|
170
|
+
mergedAt: new Date().toISOString(),
|
|
171
|
+
};
|
|
172
|
+
}
|
|
173
|
+
if (action === 'close') {
|
|
174
|
+
const prNumber = input.prNumber;
|
|
175
|
+
const prKey = Object.keys(store.prs).find(k => k.includes(String(prNumber)));
|
|
176
|
+
if (prKey && store.prs[prKey]) {
|
|
177
|
+
store.prs[prKey].status = 'closed';
|
|
178
|
+
saveGitHubStore(store);
|
|
179
|
+
}
|
|
180
|
+
return {
|
|
181
|
+
success: true,
|
|
182
|
+
action: 'closed',
|
|
183
|
+
prNumber,
|
|
184
|
+
closedAt: new Date().toISOString(),
|
|
185
|
+
};
|
|
186
|
+
}
|
|
187
|
+
return { success: false, error: 'Unknown action' };
|
|
188
|
+
},
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
name: 'github/issue_track',
|
|
192
|
+
description: 'Track and manage issues',
|
|
193
|
+
category: 'github',
|
|
194
|
+
inputSchema: {
|
|
195
|
+
type: 'object',
|
|
196
|
+
properties: {
|
|
197
|
+
action: { type: 'string', enum: ['list', 'create', 'update', 'close', 'assign'], description: 'Action to perform' },
|
|
198
|
+
owner: { type: 'string', description: 'Repository owner' },
|
|
199
|
+
repo: { type: 'string', description: 'Repository name' },
|
|
200
|
+
issueNumber: { type: 'number', description: 'Issue number' },
|
|
201
|
+
title: { type: 'string', description: 'Issue title' },
|
|
202
|
+
body: { type: 'string', description: 'Issue body' },
|
|
203
|
+
labels: { type: 'array', description: 'Issue labels' },
|
|
204
|
+
assignees: { type: 'array', description: 'Assignees' },
|
|
205
|
+
},
|
|
206
|
+
},
|
|
207
|
+
handler: async (input) => {
|
|
208
|
+
const store = loadGitHubStore();
|
|
209
|
+
const action = input.action || 'list';
|
|
210
|
+
if (action === 'list') {
|
|
211
|
+
const issues = Object.values(store.issues);
|
|
212
|
+
return {
|
|
213
|
+
success: true,
|
|
214
|
+
issues,
|
|
215
|
+
total: issues.length,
|
|
216
|
+
open: issues.filter(i => i.status === 'open').length,
|
|
217
|
+
};
|
|
218
|
+
}
|
|
219
|
+
if (action === 'create') {
|
|
220
|
+
const issueId = `issue-${Date.now()}`;
|
|
221
|
+
const issue = {
|
|
222
|
+
id: issueId,
|
|
223
|
+
title: input.title || 'New Issue',
|
|
224
|
+
status: 'open',
|
|
225
|
+
labels: input.labels || [],
|
|
226
|
+
createdAt: new Date().toISOString(),
|
|
227
|
+
};
|
|
228
|
+
store.issues[issueId] = issue;
|
|
229
|
+
saveGitHubStore(store);
|
|
230
|
+
return {
|
|
231
|
+
success: true,
|
|
232
|
+
action: 'created',
|
|
233
|
+
issue,
|
|
234
|
+
};
|
|
235
|
+
}
|
|
236
|
+
if (action === 'update') {
|
|
237
|
+
const issueNumber = input.issueNumber;
|
|
238
|
+
const issueKey = Object.keys(store.issues).find(k => k.includes(String(issueNumber)));
|
|
239
|
+
if (issueKey && store.issues[issueKey]) {
|
|
240
|
+
if (input.title)
|
|
241
|
+
store.issues[issueKey].title = input.title;
|
|
242
|
+
if (input.labels)
|
|
243
|
+
store.issues[issueKey].labels = input.labels;
|
|
244
|
+
saveGitHubStore(store);
|
|
245
|
+
}
|
|
246
|
+
return {
|
|
247
|
+
success: true,
|
|
248
|
+
action: 'updated',
|
|
249
|
+
issueNumber,
|
|
250
|
+
};
|
|
251
|
+
}
|
|
252
|
+
if (action === 'close') {
|
|
253
|
+
const issueNumber = input.issueNumber;
|
|
254
|
+
const issueKey = Object.keys(store.issues).find(k => k.includes(String(issueNumber)));
|
|
255
|
+
if (issueKey && store.issues[issueKey]) {
|
|
256
|
+
store.issues[issueKey].status = 'closed';
|
|
257
|
+
saveGitHubStore(store);
|
|
258
|
+
}
|
|
259
|
+
return {
|
|
260
|
+
success: true,
|
|
261
|
+
action: 'closed',
|
|
262
|
+
issueNumber,
|
|
263
|
+
closedAt: new Date().toISOString(),
|
|
264
|
+
};
|
|
265
|
+
}
|
|
266
|
+
return { success: false, error: 'Unknown action' };
|
|
267
|
+
},
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
name: 'github/workflow',
|
|
271
|
+
description: 'Manage GitHub Actions workflows',
|
|
272
|
+
category: 'github',
|
|
273
|
+
inputSchema: {
|
|
274
|
+
type: 'object',
|
|
275
|
+
properties: {
|
|
276
|
+
action: { type: 'string', enum: ['list', 'trigger', 'status', 'cancel'], description: 'Action to perform' },
|
|
277
|
+
owner: { type: 'string', description: 'Repository owner' },
|
|
278
|
+
repo: { type: 'string', description: 'Repository name' },
|
|
279
|
+
workflowId: { type: 'string', description: 'Workflow ID or name' },
|
|
280
|
+
ref: { type: 'string', description: 'Branch or tag ref' },
|
|
281
|
+
},
|
|
282
|
+
},
|
|
283
|
+
handler: async (input) => {
|
|
284
|
+
const action = input.action || 'list';
|
|
285
|
+
if (action === 'list') {
|
|
286
|
+
return {
|
|
287
|
+
success: true,
|
|
288
|
+
workflows: [
|
|
289
|
+
{ id: 'ci.yml', name: 'CI', status: 'active', lastRun: new Date().toISOString() },
|
|
290
|
+
{ id: 'release.yml', name: 'Release', status: 'active', lastRun: new Date().toISOString() },
|
|
291
|
+
{ id: 'test.yml', name: 'Tests', status: 'active', lastRun: new Date().toISOString() },
|
|
292
|
+
],
|
|
293
|
+
};
|
|
294
|
+
}
|
|
295
|
+
if (action === 'trigger') {
|
|
296
|
+
return {
|
|
297
|
+
success: true,
|
|
298
|
+
action: 'triggered',
|
|
299
|
+
workflowId: input.workflowId,
|
|
300
|
+
ref: input.ref || 'main',
|
|
301
|
+
runId: `run-${Date.now()}`,
|
|
302
|
+
triggeredAt: new Date().toISOString(),
|
|
303
|
+
};
|
|
304
|
+
}
|
|
305
|
+
if (action === 'status') {
|
|
306
|
+
return {
|
|
307
|
+
success: true,
|
|
308
|
+
workflowId: input.workflowId,
|
|
309
|
+
status: 'completed',
|
|
310
|
+
conclusion: 'success',
|
|
311
|
+
duration: '2m 35s',
|
|
312
|
+
};
|
|
313
|
+
}
|
|
314
|
+
if (action === 'cancel') {
|
|
315
|
+
return {
|
|
316
|
+
success: true,
|
|
317
|
+
action: 'cancelled',
|
|
318
|
+
workflowId: input.workflowId,
|
|
319
|
+
cancelledAt: new Date().toISOString(),
|
|
320
|
+
};
|
|
321
|
+
}
|
|
322
|
+
return { success: false, error: 'Unknown action' };
|
|
323
|
+
},
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
name: 'github/metrics',
|
|
327
|
+
description: 'Get repository metrics and statistics',
|
|
328
|
+
category: 'github',
|
|
329
|
+
inputSchema: {
|
|
330
|
+
type: 'object',
|
|
331
|
+
properties: {
|
|
332
|
+
owner: { type: 'string', description: 'Repository owner' },
|
|
333
|
+
repo: { type: 'string', description: 'Repository name' },
|
|
334
|
+
metric: { type: 'string', enum: ['all', 'commits', 'contributors', 'traffic', 'releases'], description: 'Metric type' },
|
|
335
|
+
timeRange: { type: 'string', description: 'Time range' },
|
|
336
|
+
},
|
|
337
|
+
},
|
|
338
|
+
handler: async (input) => {
|
|
339
|
+
const metric = input.metric || 'all';
|
|
340
|
+
const metrics = {
|
|
341
|
+
commits: {
|
|
342
|
+
total: Math.floor(Math.random() * 1000) + 500,
|
|
343
|
+
lastWeek: Math.floor(Math.random() * 50) + 10,
|
|
344
|
+
lastMonth: Math.floor(Math.random() * 200) + 50,
|
|
345
|
+
},
|
|
346
|
+
contributors: {
|
|
347
|
+
total: Math.floor(Math.random() * 50) + 5,
|
|
348
|
+
active: Math.floor(Math.random() * 20) + 3,
|
|
349
|
+
new: Math.floor(Math.random() * 5),
|
|
350
|
+
},
|
|
351
|
+
traffic: {
|
|
352
|
+
views: Math.floor(Math.random() * 5000) + 1000,
|
|
353
|
+
uniqueVisitors: Math.floor(Math.random() * 1000) + 200,
|
|
354
|
+
clones: Math.floor(Math.random() * 500) + 50,
|
|
355
|
+
},
|
|
356
|
+
releases: {
|
|
357
|
+
total: Math.floor(Math.random() * 20) + 5,
|
|
358
|
+
latest: '3.0.0-alpha.86',
|
|
359
|
+
downloads: Math.floor(Math.random() * 10000) + 1000,
|
|
360
|
+
},
|
|
361
|
+
};
|
|
362
|
+
if (metric === 'all') {
|
|
363
|
+
return { success: true, metrics };
|
|
364
|
+
}
|
|
365
|
+
return {
|
|
366
|
+
success: true,
|
|
367
|
+
metric,
|
|
368
|
+
data: metrics[metric],
|
|
369
|
+
};
|
|
370
|
+
},
|
|
371
|
+
},
|
|
372
|
+
];
|
|
373
|
+
//# sourceMappingURL=github-tools.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"github-tools.js","sourceRoot":"","sources":["../../../src/mcp-tools/github-tools.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Neural MCP Tools for CLI
|
|
3
|
+
*
|
|
4
|
+
* V2 Compatibility - Neural network and ML tools
|
|
5
|
+
*
|
|
6
|
+
* ✅ HYBRID Implementation:
|
|
7
|
+
* - Uses @claude-flow/embeddings for REAL embeddings when available
|
|
8
|
+
* - Falls back to simulated embeddings when @claude-flow/embeddings not installed
|
|
9
|
+
* - Pattern storage and search with cosine similarity
|
|
10
|
+
* - Training progress tracked (actual model training requires external tools)
|
|
11
|
+
*
|
|
12
|
+
* Note: For production neural features, use @claude-flow/neural module
|
|
13
|
+
*/
|
|
14
|
+
import type { MCPTool } from './types.js';
|
|
15
|
+
export declare const neuralTools: MCPTool[];
|
|
16
|
+
//# sourceMappingURL=neural-tools.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"neural-tools.d.ts","sourceRoot":"","sources":["../../../src/mcp-tools/neural-tools.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AAqJ1C,eAAO,MAAM,WAAW,EAAE,OAAO,EAyWhC,CAAC"}
|