Skip to content

Commit 1ac59d2

Browse files
hyperpolymathclaude
andcommitted
feat(orchestrator): Register echidna-llm-mcp in main.v
Adds echidna-llm-mcp to the built-in cartridge registry with: - CartridgeInfo entry (domain: proof, tier: ayo, protocols: mcp+rest+grpc+nesy) - #flag linking for libechidna_llm_mcp.so from Zig FFI build This wires the 15-protocol dodeca-API + VeriSimDB bridge into the BoJ orchestrator, making all echidna-llm operations accessible via the standard cartridge invocation path. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 1e3c844 commit 1ac59d2

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

adapter/v/src/main.v

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,9 @@ import time
8080
#flag -lssg_mcp
8181
#flag -L../../cartridges/ums-mcp/ffi/zig-out/lib
8282
#flag -lums_mcp
83+
// echidna-llm-mcp: 15-protocol frontier LLM tactic advisory + VeriSimDB bridge
84+
#flag -L../../cartridges/echidna-llm-mcp/ffi/zig-out/lib
85+
#flag -lechidna_llm_mcp
8386

8487
fn C.boj_catalogue_init() int
8588
fn C.boj_catalogue_deinit()
@@ -667,6 +670,18 @@ fn (mut app BojApp) register_builtin_cartridges() ! {
667670
protocols: [ProtocolType.mcp, .rest]
668671
index: 0
669672
},
673+
// ── echidna-llm-mcp: Frontier LLM tactic advisory ──────────
674+
// 15-protocol dodeca-API + VeriSimDB bridge + VQL-UT queries.
675+
// Provides theorem proving intelligence across 30 backends.
676+
CartridgeInfo{
677+
name: 'echidna-llm-mcp'
678+
version: '1.0.0'
679+
status: .ready
680+
tier: .ayo
681+
domain: .proof
682+
protocols: [ProtocolType.mcp, .rest, .grpc, .nesy]
683+
index: 0
684+
},
670685
]
671686
for b in builtins {
672687
app.register_cartridge(b)!

0 commit comments

Comments
 (0)