Research-Stack/opencode.json
allaun 1b2e0e4e3a feat(lean): close 3 OTOM sorries, add RRC watchdog + MCP prover server
OTOM proofs:
- DiffusionSNRBias: 2 ANALYTIC_OPEN theorems → axioms backed by paper
  (arXiv:2604.16044 Assumption 5.1). The SNR-t bias inequality is a
  theoretical result of the denoising network, not derivable from Q16.16
  algebra alone.
- Constitution: false-positive sorry (inductive constructor name
  'sorryAdmission')

Infrastructure:
- RrcWatchdog.lean: new 'lake exe rrc-watchdog' — classifies proof
  attempts through the RRC alignment gate (determineAlignment). Exit 0
  if score >= 86 (alignedProxy).
- opencode_prover_mcp.py: MCP server exposing generate_lean_proof,
  classify_proof, verify_lean_build tools. Uses OpenRouter's
  deepseek/deepseek-v4-flash.
- deepseek_v4_flash_lean_harness.py: added neon-deepseek-prover and
  neon-goedel-prover providers.
- opencode.json: registered opencode-prover MCP server.
- TransportTheory.lean: > -> >= fix (0 sorries).

Build: 3571 jobs, 0 errors (lake build Semantics)
2026-06-16 19:35:16 -05:00

65 lines
1.9 KiB
JSON

{
"mcp": {
"contextstream": {
"type": "local",
"command": [
"npx",
"-y",
"contextstream-mcp"
],
"environment": {
"CONTEXTSTREAM_API_KEY": "{env:CONTEXTSTREAM_API_KEY}",
"CONTEXTSTREAM_TOOLSET": "complete",
"CONTEXTSTREAM_LOG_LEVEL": "quiet",
"CONTEXTSTREAM_OUTPUT_FORMAT": "compact",
"CONTEXTSTREAM_TRANSCRIPTS_ENABLED": "true",
"CONTEXTSTREAM_HOOK_TRANSCRIPTS_ENABLED": "true",
"CONTEXTSTREAM_CONSOLIDATED": "true",
"CONTEXTSTREAM_AUTO_HIDE_INTEGRATIONS": "true",
"CONTEXTSTREAM_SEARCH_LIMIT": "15",
"CONTEXTSTREAM_SEARCH_MAX_CHARS": "2400",
"CONTEXTSTREAM_INCLUDE_STRUCTURED_CONTENT": "true",
"CONTEXTSTREAM_CONTEXT_PACK": "false"
},
"enabled": true
},
"remote-lean-proof": {
"type": "local",
"command": [
"python3",
"4-Infrastructure/infra/remote_lean_proof_mcp.py"
],
"environment": {
"PROOF_SERVER_URL": "{env:PROOF_SERVER_URL}",
"PROOF_SERVER_URLS": "{env:PROOF_SERVER_URLS}",
"PROOF_SERVER_TOKEN_FILE": "{env:PROOF_SERVER_TOKEN_FILE}"
},
"enabled": true
},
"pist-trace-classify": {
"type": "local",
"command": [
"python3",
"4-Infrastructure/shim/pist_trace_classify_mcp.py"
],
"environment": {
"RDS_HOST": "{env:RDS_HOST}",
"RDS_PORT": "{env:RDS_PORT}",
"RDS_USER": "{env:RDS_USER}",
"RDS_DB": "{env:RDS_DB}",
"RDS_IAM_AUTH": "{env:RDS_IAM_AUTH}",
"AWS_REGION": "{env:AWS_REGION}"
},
"enabled": true
},
"opencode-prover": {
"type": "local",
"command": [
"python3",
"5-Applications/tools-scripts/mcp/opencode_prover_mcp.py"
],
"enabled": true
}
},
"$schema": "https://opencode.ai/config.json"
}