with one click
regex-matcher
WASM skill providing pattern matching operations for VAK agents.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
WASM skill providing pattern matching operations for VAK agents.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | regex-matcher |
| description | WASM skill providing pattern matching operations for VAK agents. |
A WebAssembly module providing pattern matching operations that runs inside the VAK kernel sandbox.
This skill provides pattern matching for:
# Build for WASM target
cargo build -p regex-matcher --target wasm32-unknown-unknown --release
# Output location
# target/wasm32-unknown-unknown/release/regex_matcher.wasm
| Operation | Input | Output | Description |
|---|---|---|---|
matches | (text, pattern) | bool | Check if pattern matches |
find_all | (text, pattern) | Vec | Find all matches |
replace | (text, pattern, replacement) | string | Replace matches |
replace_all | (text, pattern, replacement) | string | Replace all matches |
split | (text, pattern) | Vec | Split by pattern |
extract | (text, pattern) | Vec | Extract capture groups |
glob_match | (path, pattern) | bool | Glob pattern match |
This skill runs in the VAK WASM sandbox with:
// From VAK kernel
let matches = kernel.execute_skill("regex-matcher", "matches", &[text, r"\d+"]).await?;
let extracted = kernel.execute_skill("regex-matcher", "extract", &[
text,
r"(\w+)@(\w+\.com)"
]).await?;
Cargo.toml - Crate configurationsrc/lib.rs - Skill implementationInstructions for building the VAK project including Rust, WASM skills, and Python bindings.
WASM skill providing basic arithmetic operations for VAK agents.
WASM skill providing cryptographic hashing operations for VAK agents.
WASM skill providing JSON validation and manipulation for VAK agents.
Instructions for releasing and publishing the VAK project to crates.io and PyPI.
WASM skill providing text analysis operations for VAK agents.