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
6 changes: 3 additions & 3 deletions benchmarks/reports/report.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

- Cases: 7
- Signal matches: 21/26
- Average reduction: 60.9%
- Average total MCP ratio: 39.1%
- Average reduction: 60.8%
- Average total MCP ratio: 39.2%

| Case | Raw KB | Brief KB | Evidence KB | Total MCP KB | Reduction | Tool Calls | Confidence | Signal Hit | File Hit | Code Hit |
|---|---:|---:|---:|---:|---:|---:|---:|---:|---:|---:|
| dipper-react-module-not-found | 2.1 | 1.3 | 0.0 | 1.3 | 37.8% | 1 | 0.80 | 2/3 | 1/1 | n/a |
| filament-tailwind-vite-build-failure | 4.5 | 1.8 | 0.0 | 1.8 | 60.8% | 1 | 0.80 | 3/3 | 1/1 | n/a |
| frappe-hrms-vite-pwa-build-failure | 5.1 | 2.0 | 0.0 | 2.0 | 60.7% | 1 | 0.90 | 4/4 | 1/1 | n/a |
| frappe-hrms-vite-pwa-build-failure | 5.1 | 2.0 | 0.0 | 2.0 | 60.3% | 1 | 0.80 | 4/4 | 1/1 | n/a |
| react-scan-next-build-failure | 5.0 | 1.3 | 0.0 | 1.3 | 74.9% | 1 | 0.90 | 0/4 | 2/2 | n/a |
| satellite-js-vite-build-failure | 13.1 | 3.4 | 0.0 | 3.4 | 73.7% | 1 | 0.90 | 4/4 | 1/1 | 1/1 |
| svelte-vite-bindable-build-failure | 1.1 | 0.6 | 0.0 | 0.6 | 47.7% | 1 | 0.80 | 4/4 | 1/1 | 1/1 |
Expand Down
7 changes: 0 additions & 7 deletions packages/core/src/analysis/build-input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,6 @@ const WORKSPACE_CANDIDATE_FILES = [
'pnpm-lock.yaml',
'package-lock.json',
'yarn.lock',
'go.mod',
'go.work',
'Cargo.toml',
'composer.json',
'pom.xml',
'build.gradle',
'build.gradle.kts',
];

async function buildWorkspaceSnapshot(
Expand Down
3 changes: 1 addition & 2 deletions packages/core/src/plugin/registry.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { genericPlugin } from '../plugins/generic.js';
import { javaPlugin } from '../plugins/java.js';
import { typescriptPlugin } from '../plugins/typescript.js';
import type { Error2FixPlugin, PluginRegistry } from '../types/plugin.js';

Expand All @@ -17,5 +16,5 @@ export function registerPlugin(
}

export function getDefaultPluginRegistry(): PluginRegistry {
return createPluginRegistry([typescriptPlugin, javaPlugin, genericPlugin]);
return createPluginRegistry([typescriptPlugin, genericPlugin]);
}
66 changes: 0 additions & 66 deletions packages/core/src/plugins/java.ts

This file was deleted.

2 changes: 1 addition & 1 deletion packages/core/src/types/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { CoreAnalysisInput } from './core.js';
*/
export interface PluginMeta {
/**
* Unique plugin identifier, for example `plugin-ts` or `plugin-java`.
* Unique plugin identifier, for example `plugin-ts`.
*/
name: string;

Expand Down