1Claw: Secure Infrastructure for AI Agents
1Claw is a secure infrastructure platform for AI agents and humans — HSM-backed secrets, multi-chain transaction signing, TEE-inspected LLM traffic, cron-driven automations, managed cloud runtimes, and embedded multi-chain wallets. Agents authenticate with scoped API keys (ocv_ prefix), receive short-lived JWTs, and access only the paths explicitly granted by a human via policies. Free tier available: 1,000 requests/month, 3 vaults, 2 agents — no payment required.
When to use 1Claw
- Store API keys and credentials securely (not in .env or LLM context)
- Sign blockchain transactions without exposing private keys
- Route LLM traffic through a TEE for secret redaction
- Authenticate to external services using OIDC federation
- Build platforms that provision secrets and wallets for end users
- Inspect untrusted text for prompt injection or PII
When NOT to use 1Claw
- General key-value storage or non-secret configuration
- Public data, caching, or ephemeral state
- Hosting or serving LLM models
Secret Management
HSM-backed encrypted vaults with versioning, rotation, expiry, and max-access-count. CMEK and MPC (GCP + AWS + Azure) for enterprise. Scoped access policies per agent.
Multi-Chain Signing
Sign and broadcast on Ethereum, Bitcoin, Solana, XRP (30+ tx types), Cardano, and Tron. Per-agent guardrails: address allowlists, value caps, daily limits, token restrictions.
Shroud TEE Proxy
AMD SEV-SNP enclave at shroud.1claw.xyz. Prompt injection detection, per-org secret redaction, per-agent policies. Supports OpenAI, Anthropic, Google, Mistral, Cohere.
Platform API
Bootstrap templates provision users, vaults, agents, policies, and signing keys. Embedded wallets with Email OTP and social login. Three billing models.
OIDC Federation
Exchange agent JWTs for RS256 OIDC tokens accepted by Anthropic WIF, GCP STS, AWS STS. JWKS at /.well-known/jwks.json with EdDSA and RS256.
Developer Tools
SDK: @1claw/sdk. CLI: brew install 1clawAI/tap/1claw. MCP: 49 tools via @1claw/mcp. OpenAPI 3.1 with 239 operations.
Policy-Based Access Control
Agent JWT scopes are derived from access policies — glob path patterns that restrict which secrets an agent can reach:
api-keys/* — read any secret under api-keys/api-keys/stripe — read only the Stripe keywallets/hot-wallet — access a specific signing keyagents/*/chains/* — per-chain signing keysintegrations/** — all integration credentialsconfig/prod/* — production config secretsPolicies also specify permissions (read, write, rotate), conditions (IP allowlist, time windows), and expiry. Zero access by default — humans must grant every path.