Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
thebeardedbearsas avatar

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 wasm

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs115
repo stars99
Last updatedAugust 4, 2026
Repositorythebeardedbearsas/claude-craft

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

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

Rustwasm-pack (~50KB, perf) GoGOOS=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 web
import 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.wasm

Component 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

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.