Skip to content

Commit 1fef110

Browse files
hyperpolymathclaude
andcommitted
fix(seam): remove V-lang references from echidna-llm-mcp FFI (V-lang banned 2026-04-10)
echidna_llm_ffi.zig: replace 3 instances of "V-lang adapter" / "V-lang via C ABI" with accurate "adapter caller" / "via C ABI" — V-lang is banned estate-wide, replaced by Zig. Spotted during Package 10 seam-check pass. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 55de256 commit 1fef110

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

cartridges/echidna-llm-mcp/ffi/echidna_llm_ffi.zig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// Thread-safe via mutex-guarded session state. All LLM calls are advisory-only
88
// (proven in Idris2 ABI, enforced here at runtime).
99
//
10-
// Memory: all strings returned to V-lang are heap-allocated via c_allocator.
10+
// Memory: all strings returned to the adapter caller are heap-allocated via c_allocator.
1111
// The adapter MUST call the corresponding free function after use.
1212

1313
const std = @import("std");
@@ -59,7 +59,7 @@ const EphemeralSession = struct {
5959
created_at: i64,
6060
};
6161

62-
/// Result buffer for returning JSON responses to V-lang adapter
62+
/// Result buffer for returning JSON responses to the adapter caller
6363
const ResultBuffer = struct {
6464
data: ?[*:0]u8,
6565
len: usize,
@@ -85,7 +85,7 @@ var boj_endpoint: [256]u8 = undefined;
8585
var boj_endpoint_len: usize = 0;
8686

8787
// ═══════════════════════════════════════════════════════════════════════
88-
// Session Management (exported to V-lang via C ABI)
88+
// Session Management (exported via C ABI)
8989
// ═══════════════════════════════════════════════════════════════════════
9090

9191
/// Initialise the cartridge with BoJ endpoint URL

0 commit comments

Comments
 (0)