
Wasm
- 115 installs
- 99 repo stars
- Updated August 4, 2026
- thebeardedbearsas/claude-craft
Helps with ai & agent building tasks.
About
wasm is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- wasm
- AI & Agent Building
- AI-coding skill
Wasm by the numbers
- 115 all-time installs (skills.sh)
- Ranked #3,942 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/thebeardedbearsas/claude-craft --skill wasmAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 115 |
|---|---|
| repo stars | ★ 99 |
| Last updated | August 4, 2026 |
| Repository | thebeardedbearsas/claude-craft ↗ |
What it does
Helps with ai & agent building tasks.
Files
WebAssembly (WASM) — Component Model, WASI
WASM pour performance critique, polyglot runtime, edge computing.
Use Cases
Browser — Crypto, image (Figma, Google Earth) Edge — Cloudflare Workers, Fastly Server — Plugins sandboxés (Envoy) Embedded — IoT, automotive
Compilation
Rust — wasm-pack (~50KB, perf) Go — GOOS=js GOARCH=wasm (~2MB) C/C++ — Emscripten (legacy) AssemblyScript — TypeScript-like
Rust to WASM
use wasm_bindgen::prelude::*;
#[wasm_bindgen] pub fn add(a: i32, b: i32) -> i32 { a + b }wasm-pack build --target webimport init, { add } from './pkg/wasm.js';
await init(); add(2, 3);WASI (System Interface)
rustc --target wasm32-wasi main.rs -o app.wasm
wasmtime app.wasmComponent Model
interface math { add: func(a: s32, b: s32) -> s32 }Compose Rust/Go/C++ modules typés.
Edge (Cloudflare)
import wasm from './processor.wasm';
export default {
async fetch(req) {
const inst = await WebAssembly.instantiate(wasm);
return new Response(inst.exports.process(req.body));
}
};Runtimes
Wasmtime — Fast, WASI Wasmer — Universal WasmEdge — Edge, K8s
---
Voir @.claude/skills/edge-computing/SKILL.md