AgentStack
SKILL verified MIT Self-run

Wasm Module Inspect

skill-gertsylvest-meta-team-wasm-module-inspect · by gertsylvest

Inspect a compiled .wasm binary — validates structure, lists exports and imports, detects SIMD and threading opcodes, and reports binary size. Requires wabt; wasm-opt (Binaryen) is optional.

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-gertsylvest-meta-team-wasm-module-inspect

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README — it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-gertsylvest-meta-team-wasm-module-inspect)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps — measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Wasm Module Inspect? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

WASM Module Inspect

Inspect a compiled .wasm binary to verify it is valid, understand its public API surface, and detect compilation features (SIMD, threads).

Requirements

  • wabt (wasm-validate, wasm2wat) — install via brew install wabt (macOS), apt install wabt (Linux), or from https://github.com/WebAssembly/wabt/releases
  • wasm-opt (optional, Binaryen) — install via brew install binaryen for feature reporting

Instructions

The argument is in $ARGUMENTS. Pass it directly to the inspection script:

bash "$(dirname "$0")/inspect.sh" $ARGUMENTS

Output sections

| Section | What it reports | |---|---| | SIZE | Binary size in bytes and KB | | VALID | Pass/fail from wasm-validate | | EXPORTS | All exported functions, memories, tables, globals | | IMPORTS | All imported functions (JS host functions the module depends on) | | SIMD | Whether v128 (WASM SIMD) opcodes are present | | THREADS | Whether atomic instructions are present (requires SharedArrayBuffer) | | FEATURES | Full feature list from wasm-opt --print-features (if available) |

Typical usage

# After an Emscripten build — confirm exports match expected API
bash inspect.sh build/my-dsp.wasm

# Before deploying — confirm SIMD is present in the optimised build
bash inspect.sh dist/processor.wasm

What to look for

  • Exports should be minimal — only the functions the JS/worklet layer calls (e.g. _init, _process, _destroy). Unexpected exports indicate -s EXPORTED_FUNCTIONS was not set correctly.
  • SIMD present confirms -msimd128 was applied and the WASM binary actually contains vectorised code.
  • Threads present means the page must be served with COOP/COEP headers — flag this if the deployment environment does not support them.
  • Large binary size may indicate the Emscripten filesystem (-s FILESYSTEM=0 not set) or C++ RTTI/exceptions were not disabled.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.