@agentsecretstore/sdk
v1.0.0
Published
Official SDK for Agent Secret Store — the secure vault built for AI agents. Store and retrieve credentials with scoped tokens, envelope encryption, and audit trails.
Downloads
67
Maintainers
Readme
Agent Secret Store JavaScript SDK
npm install @agentsecretstore/sdkimport { AgentVault } from "@agentsecretstore/sdk";
const vault = new AgentVault({ agentKey: process.env.ASS_AGENT_KEY! });
const value = await vault.getSecret("production/openai/OPENAI_API_KEY");await vault.setSecret("production/openai/OPENAI_API_KEY", "sk-...");
const secrets = await vault.listSecrets("production");