26 Unix tools. One binary. Zero dependencies.·the missing coreutils for the agent era·vrk mcp - expose all 26 tools to any AI agent·curl vrk.sh/install.sh | sh - ready in 5 seconds·

tag

#kv

6 posts tagged #kv

recipe

JWT-based key lookup

· 1 min read

Ties storage to identity without custom parsing - the JWT carries the key, so the lookup stays stateless and auditable. Extract a claim from a JWT ...

recipe

Chunked RAG pipeline

· 1 min read

Keeps every chunk within the embedding model's token limit - no silent truncation during indexing. Split a document into chunks and store each for ...

recipe

Cache LLM response

· 1 min read

Avoids duplicate API calls for identical prompts - the hash keys the cache so reruns are free. Send a prompt, get the request hash, and store the ...