smithery/plurigrid

hoot

Scheme→WebAssembly compiler (4K lines info).

Installation

$ npx skills add smithery/plurigrid --skill hoot

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/plurigrid · top by installs.

npx skills add smithery/plurigrid

Browse all from smithery/plurigrid

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

More metadata
trit
0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 679 B
  • docs SUMMARY.md 58 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

hoot

Scheme→WebAssembly compiler (4K lines info).

Compile

guild compile-wasm -o out.wasm script.scm

Features

  • Full tail call optimization
  • First-class continuations
  • JavaScript interop
  • Standalone Wasm modules

Example

(define-module (my-module)
  #:export (greet))

(define (greet name)
  (string-append "Hello, " name "!"))

Runtime

import { Hoot } from '@aspect/guile-hoot';
const mod = await Hoot.load('out.wasm');
mod.greet("World");

REPL atlas

Part of: repl-commons. Family canonical: guile.