You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add SCIP precise indexing ablation configs and tooling
Add mcp-scip-remote-direct and mcp-scip-remote-artifact configs for
comparing SCIP precise code intelligence vs search-based heuristics.
- configs/_common.sh: register SCIP configs in config_to_mcp_type(),
validate_config_name(), add config_uses_scip() helper, export
SOURCEGRAPH_SEARCH_BRANCH=scip-enabled for SCIP configs
- agents/claude_baseline_agent.py: inject Branch Search Instructions
into MCP preamble when SOURCEGRAPH_SEARCH_BRANCH is set, directing
agent to use rev:scip-enabled in all MCP tool calls
- configs/eval_matrix.json: add sourcegraph_scip config definition
- scripts/create_scip_branches.sh: batch-create scip-enabled branches
on all sg-benchmarks repos (1561 created, 31 empty skipped)
- scripts/swap_default_branch.sh: swap default branch across org for
Deep Search (which only indexes HEAD)
- Retrieval eval pipeline: multi-run pooling, write-tool tracking,
Spearman fix for tied ranks
Sourcegraph policies created:
- "Benchmarks: Main (No SCIP)" — indexingEnabled=false on main
- "Benchmarks: SCIP Enabled" — indexingEnabled=true on scip-enabled
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: configs/eval_matrix.json
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@
7
7
"supported_configs": [
8
8
"baseline",
9
9
"sourcegraph_full",
10
+
"sourcegraph_scip",
10
11
"sourcegraph_isolated",
11
12
"sg_only_env",
12
13
"github_full"
@@ -26,6 +27,15 @@
26
27
"track_in_official": true,
27
28
"status": "active"
28
29
},
30
+
"sourcegraph_scip": {
31
+
"baseline_mcp_type": "sourcegraph_full",
32
+
"mcp_enabled": true,
33
+
"provider": "sourcegraph",
34
+
"track_in_official": false,
35
+
"status": "experimental",
36
+
"composite_name": "mcp-scip-remote-direct",
37
+
"notes": "SCIP precise indexing ablation. Same runtime as sourcegraph_full but sg-benchmarks repos have scip-enabled branch set as default. Requires branch swap before runs: scripts/swap_default_branch.sh scip-enabled"
0 commit comments