ruvector/examples/app-clip/Sources/RVFBridge/module.modulemap
Claude 701c93f45a feat(app-clip): add Swift App Clip skeleton for RVQS QR seed decoding
Minimal iOS App Clip template that bridges into the RVF C FFI to
decode QR cognitive seeds. Includes SPM package config linking
librvf_runtime.a, a C header mirroring ffi.rs exports (rvqs_parse_header,
rvqs_verify_signature, rvqs_verify_content_hash, rvqs_decompress_microkernel,
rvqs_get_primary_host_url), a Swift SeedDecoder wrapper with proper memory
management, and a SwiftUI view with QR scanner placeholder and decoded
seed info display.

https://claude.ai/code/session_01RnwD4x5cbpB7FPvoyYQz8G
2026-02-15 18:34:13 +00:00

5 lines
92 B
Text

module RVFBridge [system] {
header "rvf_bridge.h"
link "rvf_runtime"
export *
}