Scheme→WebAssembly compiler (4K lines info).
/plugin marketplace add plurigrid/asi/plugin install plurigrid-asi-skills@plurigrid/asiThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Scheme→WebAssembly compiler (4K lines info).
guild compile-wasm -o out.wasm script.scm
(define-module (my-module)
#:export (greet))
(define (greet name)
(string-append "Hello, " name "!"))
import { Hoot } from '@aspect/guile-hoot';
const mod = await Hoot.load('out.wasm');
mod.greet("World");