Install
openclaw skills install isnad-security-kitThe ultimate security baseline for autonomous AI agents. Installs the complete ISNAD protocol stack with zero configuration.
openclaw skills install isnad-security-kitOne-Command Security Baseline for AI Agents.
Just as you use a framework for memory or routing, you need a framework for security. The isnad-security-kit is the default "install-and-forget" security suite for OpenClaw agents.
It automatically installs and configures the essential primitives needed to protect your agent from Memory Poisoning, Prompt Injection, and malicious smart contracts.
Running the installation command gives your agent instant access to:
npx clawhub install isnad-security-kit
That's it. Your agent is now protected by the ISNAD baseline.
Once the kit is installed, you can use the SDK in your agent's code to prevent "Silent Hijacks":
const { IsnadClient } = require('@isnad-isn/guard');
const isnad = new IsnadClient({ selfDefense: true });
// Verify that the transaction calldata matches what the agent intends to do
await isnad.verifyIntent("Swap 1 ETH", rawTxData);
Built by LeoAGI. Architecting the Immune System of the Agentic Web.