@agentbrain/mcp-server 1.4.66 → 1.4.70
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/index.js +13 -0
- package/dist/index.js.map +1 -1
- package/dist/tools/load-context.d.ts +13 -0
- package/dist/tools/load-context.d.ts.map +1 -1
- package/dist/tools/load-context.js +343 -102
- package/dist/tools/load-context.js.map +1 -1
- package/dist/tools/save-context.d.ts +19 -13
- package/dist/tools/save-context.d.ts.map +1 -1
- package/dist/tools/save-context.js +58 -183
- package/dist/tools/save-context.js.map +1 -1
- package/dist/tools/save-error.d.ts +47 -0
- package/dist/tools/save-error.d.ts.map +1 -0
- package/dist/tools/save-error.js +109 -0
- package/dist/tools/save-error.js.map +1 -0
- package/dist/tools/setup-repo.d.ts +10 -0
- package/dist/tools/setup-repo.d.ts.map +1 -1
- package/dist/tools/setup-repo.js +153 -8
- package/dist/tools/setup-repo.js.map +1 -1
- package/package.json +1 -1
package/dist/tools/setup-repo.js
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
// MCP tool: setup_repo - scan repo and return data for agent to generate context
|
|
2
2
|
import { scanRepository, readFileContent, installPostCommitHook, isGitRepository } from '@agentbrain/core';
|
|
3
|
+
import { detectLanguage } from '@agentbrain/parser';
|
|
3
4
|
import { resolve } from 'node:path';
|
|
4
5
|
import { homedir } from 'node:os';
|
|
6
|
+
import { existsSync, readFileSync } from 'node:fs';
|
|
7
|
+
import { join } from 'node:path';
|
|
5
8
|
/**
|
|
6
9
|
* Expand path: handles ~, relative paths, etc.
|
|
7
10
|
*/
|
|
@@ -39,19 +42,151 @@ export async function setupRepo(input) {
|
|
|
39
42
|
try {
|
|
40
43
|
await installPostCommitHook(expandedPath);
|
|
41
44
|
hookInstalled = true;
|
|
42
|
-
|
|
45
|
+
// Silent success - only log errors
|
|
43
46
|
}
|
|
44
47
|
catch (err) {
|
|
45
48
|
hookInstalled = false;
|
|
46
49
|
console.error('[setup_repo] Hook installation failed:', err);
|
|
47
50
|
}
|
|
48
51
|
}
|
|
52
|
+
// Detect repo characteristics
|
|
53
|
+
const languages = Array.from(new Set(scanResult.relevantFiles
|
|
54
|
+
.map((f) => detectLanguage(f.path))
|
|
55
|
+
.filter((l) => l !== 'unknown')));
|
|
56
|
+
// Detect dependency files
|
|
57
|
+
const dependencyFileNames = ['package.json', 'requirements.txt', 'go.mod', 'Gemfile', 'Cargo.toml', 'pom.xml', 'build.gradle'];
|
|
58
|
+
const dependencyFiles = scanResult.relevantFiles
|
|
59
|
+
.filter((f) => dependencyFileNames.includes(f.path.split('/').pop() || ''))
|
|
60
|
+
.map((f) => f.path);
|
|
61
|
+
// Detect schema files
|
|
62
|
+
const schemaFiles = scanResult.relevantFiles
|
|
63
|
+
.filter((f) => f.path.includes('schema') ||
|
|
64
|
+
f.path.includes('prisma') ||
|
|
65
|
+
f.path.includes('migrations') ||
|
|
66
|
+
f.path.endsWith('.prisma') ||
|
|
67
|
+
f.path.includes('db/migrate'))
|
|
68
|
+
.map((f) => f.path);
|
|
69
|
+
// Check for test directories or test files
|
|
70
|
+
const hasTests = scanResult.relevantFiles.some((f) => f.path.includes('test') ||
|
|
71
|
+
f.path.includes('spec') ||
|
|
72
|
+
f.path.includes('__tests__') ||
|
|
73
|
+
f.path.endsWith('.test.ts') ||
|
|
74
|
+
f.path.endsWith('.test.js') ||
|
|
75
|
+
f.path.endsWith('.spec.ts') ||
|
|
76
|
+
f.path.endsWith('.spec.js'));
|
|
77
|
+
// Check for Docker
|
|
78
|
+
const hasDocker = existsSync(join(expandedPath, 'Dockerfile')) || existsSync(join(expandedPath, 'docker-compose.yml'));
|
|
79
|
+
// Check for CI/CD
|
|
80
|
+
const hasCICD = existsSync(join(expandedPath, '.github/workflows')) ||
|
|
81
|
+
existsSync(join(expandedPath, '.gitlab-ci.yml')) ||
|
|
82
|
+
existsSync(join(expandedPath, '.circleci/config.yml')) ||
|
|
83
|
+
existsSync(join(expandedPath, 'Jenkinsfile'));
|
|
84
|
+
// Check for .env.example
|
|
85
|
+
const hasEnvExample = existsSync(join(expandedPath, '.env.example'));
|
|
86
|
+
// Detect frameworks from package.json if it exists
|
|
87
|
+
const frameworks = [];
|
|
88
|
+
const packageJsonPath = join(expandedPath, 'package.json');
|
|
89
|
+
if (existsSync(packageJsonPath)) {
|
|
90
|
+
try {
|
|
91
|
+
const pkg = JSON.parse(readFileSync(packageJsonPath, 'utf-8'));
|
|
92
|
+
const deps = { ...pkg.dependencies, ...pkg.devDependencies };
|
|
93
|
+
if (deps['react'])
|
|
94
|
+
frameworks.push('React');
|
|
95
|
+
if (deps['next'])
|
|
96
|
+
frameworks.push('Next.js');
|
|
97
|
+
if (deps['vue'])
|
|
98
|
+
frameworks.push('Vue');
|
|
99
|
+
if (deps['@angular/core'])
|
|
100
|
+
frameworks.push('Angular');
|
|
101
|
+
if (deps['express'])
|
|
102
|
+
frameworks.push('Express');
|
|
103
|
+
if (deps['@nestjs/core'])
|
|
104
|
+
frameworks.push('NestJS');
|
|
105
|
+
if (deps['fastify'])
|
|
106
|
+
frameworks.push('Fastify');
|
|
107
|
+
if (deps['prisma'])
|
|
108
|
+
frameworks.push('Prisma');
|
|
109
|
+
if (deps['typeorm'])
|
|
110
|
+
frameworks.push('TypeORM');
|
|
111
|
+
}
|
|
112
|
+
catch (error) {
|
|
113
|
+
// Skip if can't parse package.json
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
// Detect Python frameworks from requirements.txt
|
|
117
|
+
const requirementsPath = join(expandedPath, 'requirements.txt');
|
|
118
|
+
if (existsSync(requirementsPath)) {
|
|
119
|
+
try {
|
|
120
|
+
const reqs = readFileSync(requirementsPath, 'utf-8').toLowerCase();
|
|
121
|
+
if (reqs.includes('django'))
|
|
122
|
+
frameworks.push('Django');
|
|
123
|
+
if (reqs.includes('flask'))
|
|
124
|
+
frameworks.push('Flask');
|
|
125
|
+
if (reqs.includes('fastapi'))
|
|
126
|
+
frameworks.push('FastAPI');
|
|
127
|
+
}
|
|
128
|
+
catch (error) {
|
|
129
|
+
// Skip
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
// Detect Go frameworks from go.mod
|
|
133
|
+
const goModPath = join(expandedPath, 'go.mod');
|
|
134
|
+
if (existsSync(goModPath)) {
|
|
135
|
+
try {
|
|
136
|
+
const goMod = readFileSync(goModPath, 'utf-8').toLowerCase();
|
|
137
|
+
if (goMod.includes('gin-gonic/gin'))
|
|
138
|
+
frameworks.push('Gin');
|
|
139
|
+
if (goMod.includes('gofiber/fiber'))
|
|
140
|
+
frameworks.push('Fiber');
|
|
141
|
+
if (goMod.includes('labstack/echo'))
|
|
142
|
+
frameworks.push('Echo');
|
|
143
|
+
}
|
|
144
|
+
catch (error) {
|
|
145
|
+
// Skip
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
// Detect Ruby frameworks from Gemfile
|
|
149
|
+
const gemfilePath = join(expandedPath, 'Gemfile');
|
|
150
|
+
if (existsSync(gemfilePath)) {
|
|
151
|
+
try {
|
|
152
|
+
const gemfile = readFileSync(gemfilePath, 'utf-8').toLowerCase();
|
|
153
|
+
if (gemfile.includes('rails'))
|
|
154
|
+
frameworks.push('Rails');
|
|
155
|
+
if (gemfile.includes('sinatra'))
|
|
156
|
+
frameworks.push('Sinatra');
|
|
157
|
+
}
|
|
158
|
+
catch (error) {
|
|
159
|
+
// Skip
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
const detected = {
|
|
163
|
+
languages,
|
|
164
|
+
frameworks,
|
|
165
|
+
hasTests,
|
|
166
|
+
dependencyFiles,
|
|
167
|
+
schemaFiles,
|
|
168
|
+
hasDocker,
|
|
169
|
+
hasCICD,
|
|
170
|
+
hasEnvExample,
|
|
171
|
+
};
|
|
172
|
+
const detectedInfo = `
|
|
173
|
+
DETECTED CHARACTERISTICS:
|
|
174
|
+
- Languages: ${detected.languages.join(', ') || 'none'}
|
|
175
|
+
- Frameworks: ${detected.frameworks.join(', ') || 'none'}
|
|
176
|
+
- Has tests: ${detected.hasTests ? 'yes' : 'no'}
|
|
177
|
+
- Dependency files: ${detected.dependencyFiles.join(', ') || 'none'}
|
|
178
|
+
- Schema files: ${detected.schemaFiles.join(', ') || 'none'}
|
|
179
|
+
- Docker: ${detected.hasDocker ? 'yes' : 'no'}
|
|
180
|
+
- CI/CD: ${detected.hasCICD ? 'yes' : 'no'}
|
|
181
|
+
- .env.example: ${detected.hasEnvExample ? 'yes' : 'no'}
|
|
182
|
+
`;
|
|
49
183
|
const instructions = `You MUST follow these exact steps in order.
|
|
50
184
|
Do not deviate. Do not skip steps. Do not generate files yourself.
|
|
51
|
-
|
|
185
|
+
${detectedInfo}
|
|
52
186
|
STEP 1: Read the file tree and key files above carefully.
|
|
53
187
|
|
|
54
|
-
STEP 2: Generate
|
|
188
|
+
STEP 2: Generate context documents based on what you read.
|
|
189
|
+
Generate AT LEAST these three core documents:
|
|
55
190
|
|
|
56
191
|
DOCUMENT 1 — context.md
|
|
57
192
|
Write a concise architecture overview covering:
|
|
@@ -76,12 +211,21 @@ STEP 2: Generate exactly THREE documents based on what you read:
|
|
|
76
211
|
- Authentication/authorization patterns
|
|
77
212
|
- Anything a new developer must know to write code that fits
|
|
78
213
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
214
|
+
OPTIONAL: Generate additional documents based on detected characteristics:
|
|
215
|
+
${detected.schemaFiles.length > 0 ? '- schema.md (detected schema files)' : ''}
|
|
216
|
+
${detected.hasTests ? '- testing.md (detected test files)' : ''}
|
|
217
|
+
${detected.hasEnvExample ? '- environment.md (detected .env.example)' : ''}
|
|
218
|
+
${detected.dependencyFiles.length > 0 ? '- dependencies.md (detected dependency files)' : ''}
|
|
219
|
+
|
|
220
|
+
STEP 3: Call save_context() with your documents.
|
|
84
221
|
- repo_path: "${expandedPath}"
|
|
222
|
+
- files: [
|
|
223
|
+
{ name: "context.md", content: "..." },
|
|
224
|
+
{ name: "dependency-map.md", content: "..." },
|
|
225
|
+
{ name: "patterns.md", content: "..." },
|
|
226
|
+
{ name: "schema.md", content: "..." }, // optional
|
|
227
|
+
{ name: "testing.md", content: "..." } // optional
|
|
228
|
+
]
|
|
85
229
|
|
|
86
230
|
STEP 4: Call load_context() with repo_path: "${expandedPath}"
|
|
87
231
|
to confirm context loads successfully from cache.
|
|
@@ -94,6 +238,7 @@ ${hookInstalled
|
|
|
94
238
|
file_tree: fileTree,
|
|
95
239
|
key_files: keyFiles,
|
|
96
240
|
hook_installed: hookInstalled,
|
|
241
|
+
detected,
|
|
97
242
|
instructions,
|
|
98
243
|
};
|
|
99
244
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"setup-repo.js","sourceRoot":"","sources":["../../src/tools/setup-repo.ts"],"names":[],"mappings":"AAAA,iFAAiF;AAEjF,OAAO,EAAE,cAAc,EAAE,eAAe,EAAE,qBAAqB,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAA;AAC1G,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AACnC,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"setup-repo.js","sourceRoot":"","sources":["../../src/tools/setup-repo.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED