Documentation

SDK Installation

npm install @norven/sdk

Hello World

import { Norven } from '@norven/sdk'

const norven = new Norven({
  workloadId: 'my-agent'
})

// Wrap your agent action with enforcement
const result = await norven.enforce({
  action: 'database.query',
  scope: 'customer:read',
  execute: async () => {
    return await db.query('SELECT * FROM customers')
  }
})

Norven is currently in active development. Full documentation will be available at launch. Join the waitlist to be notified when we launch.