Secure Execution
Isolation is non-negotiable. Every line of code runs in a high-performance WASM sandbox, ensuring zero-access to host files without explicit cryptographic signatures.
Experience uncompromised intelligence. Clambot leverages a WASM sandbox for a security-first approach to local execution and cloud integration.
[ Functional Core ]
Isolation is non-negotiable. Every line of code runs in a high-performance WASM sandbox, ensuring zero-access to host files without explicit cryptographic signatures.
Full control via Telegram with real-time approval modals and typing indicators. No new app needed.
Optimized for power users. Interactive REPL mode and single-turn commands via our custom shell wrapper.
Long-term recall through vector-embedding of your interaction history. Instantly searchable and contextually aware.
[ How It Works ]
From user request to sandboxed execution — every step is explicit, auditable, and secure.
Exact match against existing clams — if a clam already handles this task, it's reused instantly at zero LLM cost.
A lightweight LLM decides the action:
Produces a self-contained JavaScript clam:
async function run(args) {
const res = await http_request({
method: "GET",
url: "https://api.coinbase.com/v2/prices/BTC-USD/spot"
});
return JSON.parse(res.content).data;
}
The clam runs in an isolated WASM environment. External calls pass through an explicit approval gate before the Python host dispatches them.
The output is evaluated and the clam is triaged:
clams/ for reuse
Self-fix → retry with fix instructions (up to 3×)
Reject → return error
The answer is delivered to the user. In the background, a fire-and-forget process extracts key information into long-term memory for future context.
Clambot is open-source and architected for extensibility. Join hundreds of contributors building the future of secure personal AI.