Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
dist
node_modules

.idea
.vscode/mcp.json
.github/prompts/*

Expand All @@ -12,6 +13,7 @@ state.json

tests/tmp
coverage

# Generated assets by accuracy runs
.accuracy

Expand All @@ -25,3 +27,8 @@ yalc.lock
# .mcpb build artifacts
mcpb-build/
dist-mcpb/

# Braintrust
.bt
# Generated eval pre-bundle for Braintrust
tests/eval/dist
10 changes: 10 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,16 @@
],
"cwd": "${workspaceFolder}",
"envFile": "${workspaceFolder}/.env"
},
{
"type": "node",
"request": "launch",
"name": "Debug Eval",
"skipFiles": ["<node_internals>/**"],
"runtimeExecutable": "pnpm",
"runtimeArgs": ["run", "eval:debug"],
"cwd": "${workspaceFolder}",
"envFile": "${workspaceFolder}/.env"
}
],
"inputs": [
Expand Down
2 changes: 2 additions & 0 deletions knip.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
"vite.ui.config.ts"
],
"ignore": [
"tests/eval/scripts/bundleEval/osDnsNativeStub.cjs",
"tests/eval/scripts/bundleEval/stub.mjs",
"tests/integration/fixtures/curl.mjs",
"tests/vitest.d.ts",
"src/ui/build/mount.tsx",
Expand Down
12 changes: 11 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,15 @@
"test:local": "SKIP_ATLAS_INTEGRATION_TESTS=true SKIP_ATLAS_LOCAL_TESTS=true pnpm run test",
"prevalidate:mcpb": "pnpm run build",
"validate:mcpb": "node scripts/createMcpb.ts --validate-only",
"atlas:cleanup": "vitest --project atlas-cleanup"
"atlas:cleanup": "vitest --project atlas-cleanup",
"eval:db-start": "sh tests/eval/scripts/evalDb.sh start",
"eval:db-stop": "sh tests/eval/scripts/evalDb.sh stop",
"eval:run": "bt eval tests/eval/mongodb.eval.ts",
"eval:debug": "tsx tests/eval/mongodb.eval.ts",
"eval:generate-schemas": "tsx tests/eval/scripts/generateSchemas.ts",
"eval:bundle": "tsx tests/eval/scripts/bundleEval.ts",
"eval:serve": "BRAINTRUST_API_KEY_OVERRIDE=$BRAINTRUST_API_KEY bt eval --dev tests/eval/mongodb.eval.ts",
"eval:push": "pnpm run eval:bundle && braintrust push tests/eval/dist/mongodb.eval.cjs --if-exists replace"
},
"license": "Apache-2.0",
"devDependencies": {
Expand Down Expand Up @@ -132,6 +140,8 @@
"@vitest/coverage-v8": "^4.1.8",
"@vitest/eslint-plugin": "^1.6.19",
"ai": "^6.0.175",
"esbuild": "^0.27.1",
"braintrust": "^3.17.0",
"concurrently": "^9.2.1",
"duplexpair": "^1.0.2",
"eslint": "^10.2.0",
Expand Down
Loading
Loading