com um clique
regex-matcher
WASM skill providing pattern matching operations for VAK agents.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
WASM skill providing pattern matching operations for VAK agents.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Instructions 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.
| 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 implementation