vaultak
v0.6.1
Published
Runtime security for autonomous AI agents
Maintainers
Readme
Vaultak Node.js SDK
Runtime security for autonomous AI agents.
Install
npm install vaultakUsage
const { Vaultak } = require('vaultak');
const vt = new Vaultak({ apiKey: 'vtk_your_key_here' });
const monitor = vt.monitor('my-agent');
// All fs.writeFile, https.request calls are now auto-monitored
myAgent.run();
monitor.stop();Thresholds
const vt = new Vaultak({
apiKey: 'vtk_your_key_here',
alertThreshold: 30,
pauseThreshold: 60,
rollbackThreshold: 85,
blockedResources: ['*.env', 'prod.*'],
});