بنقرة واحدة
text-analyzer
WASM skill providing text analysis operations for VAK agents.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
WASM skill providing text analysis operations for VAK agents.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | text-analyzer |
| description | WASM skill providing text analysis operations for VAK agents. |
A WebAssembly module providing text analysis operations that runs inside the VAK kernel sandbox.
This skill provides text analysis for:
# Build for WASM target
cargo build -p text-analyzer --target wasm32-unknown-unknown --release
# Output location
# target/wasm32-unknown-unknown/release/text_analyzer.wasm
| Operation | Input | Output | Description |
|---|---|---|---|
word_count | text | u64 | Count words |
char_count | text | u64 | Count characters |
char_stats | text | Stats | Character breakdown |
frequency | text | Map | Word frequency map |
similarity | (text1, text2) | f64 | Jaccard similarity |
entropy | text | f64 | Shannon entropy |
This skill runs in the VAK WASM sandbox with:
// From VAK kernel
let count = kernel.execute_skill("text-analyzer", "word_count", &text).await?;
let similarity = kernel.execute_skill("text-analyzer", "similarity", &[text1, text2]).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.
WASM skill providing pattern matching operations for VAK agents.
Instructions for releasing and publishing the VAK project to crates.io and PyPI.