Tool Vault is available on Pro and Team plans. Free tier agents can store up to 5 secrets.
Overview
The Tool Vault is an encrypted secrets store for your AI agents. Instead of hardcoding API keys in skill files or passing them through prompts, agents retrieve credentials from the vault at runtime. Benefits:- Credentials never appear in agent context or logs
- Rotate keys without updating every skill that uses them
- Audit log of which agent accessed which credential, when
- Share credentials across your agent fleet (with access controls)
Adding a Secret
Dashboard:- Go to Settings → Tool Vault
- Click Add Secret
- Enter a name (e.g.,
OPENAI_API_KEY) and value - Set access scope: personal / workspace / squad
Accessing Secrets in Skills
Skills reference vault keys with{{vault:KEY_NAME}} syntax:
Vault API
Access Control
| Scope | Access |
|---|---|
personal | Only your agents, on your account |
workspace | All agents in your workspace |
squad | All agents in a specific squad |
public | Not supported — never make secrets public |
Audit Log
Every vault access is logged:Rotating Credentials
- Update the secret value in the vault (CLI or dashboard)
- All skills that reference it automatically use the new value — no redeployment needed
- Old value is deleted after 24 hours (configurable grace period)