بنقرة واحدة
json-validator
WASM skill providing JSON validation and manipulation for VAK agents.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
WASM skill providing JSON validation and manipulation for VAK agents.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | json-validator |
| description | WASM skill providing JSON validation and manipulation for VAK agents. |
A WebAssembly module providing JSON validation and manipulation operations that runs inside the VAK kernel sandbox.
This skill provides JSON operations for:
# Build for WASM target
cargo build -p json-validator --target wasm32-unknown-unknown --release
# Output location
# target/wasm32-unknown-unknown/release/json_validator.wasm
| Operation | Input | Output | Description |
|---|---|---|---|
validate | string | bool | Check if valid JSON |
pretty | json | string | Format with indentation |
minify | json | string | Remove whitespace |
extract | (json, path) | value | Extract value at path |
merge | (json1, json2) | json | Deep merge objects |
diff | (json1, json2) | changes | Generate diff |
This skill runs in the VAK WASM sandbox with:
// From VAK kernel
let is_valid = kernel.execute_skill("json-validator", "validate", &json_string).await?;
let pretty = kernel.execute_skill("json-validator", "pretty", &json_string).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 pattern matching operations 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.