mirror of
https://github.com/proffesor-for-testing/agentic-qe.git
synced 2026-09-19 08:45:47 +08:00
0b128530c1
- Remove 9 Istanbul static assets from src/coverage/, add gitignore patterns - Create qe-tool-bridge.ts: registers 26 QE tools missing from protocol-server (GOAP, embeddings, coherence, mincut, learning, coverage/gaps, QX, etc.) - Add 4 new MCP tools from previously unwired source modules: - qe/tests/schedule: phase-based test pipeline with git-aware selection - qe/tests/load: agent fleet load testing with mock/real mode - qe/security/url-validate: URL threat detection + PII exposure scanning - qe/workflows/browser-load: YAML workflow loading/validation - Add CLI subcommands for all 4 new tools: - aqe test schedule/load with full option support - aqe security --url-validate - aqe workflow browser-list/browser-load - Enrich fleet_health with structural health (mincut-lambda) from real agents - Delete dead src/cli/commands/qe-tools.ts (935 lines, zero imports) - Archive neural-optimizer to src/_archived/ (exclude from tsconfig) - Add docs/integration-roadmap.md with full MCP tool inventory Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"lib": ["ES2022"],
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@shared/*": ["src/shared/*"],
|
|
"@kernel/*": ["src/kernel/*"],
|
|
"@domains/*": ["src/domains/*"],
|
|
"@coordination/*": ["src/coordination/*"],
|
|
"@adapters/*": ["src/adapters/*"],
|
|
"@integrations/*": ["src/integrations/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "tests", "src/_archived"]
|
|
}
|