npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@novalabai/adk

v1.1.1

Published

NovaLab Agent Development Kit — Build, test, and deploy Nova AI agents with multi-agent orchestration, smart model routing, trust layer, and confidence scoring

Readme

@novalabai/adk

The official TypeScript Agent Development Kit for the NovaLab AI orchestration platform.

Build, test, and deploy autonomous AI agents with smart model routing, enterprise-grade trust scoring, confidence layers, and full auditability.

Installation

npm install @novalabai/adk

Quick Start

import { NovaClient } from '@novalabai/adk';

const nova = new NovaClient({
  apiKey: process.env.NOVA_API_KEY!,
  region: 'eu-west-1',           // optional, defaults to eu-west-1
  baseUrl: 'http://localhost:4300/v1', // optional, for local dev
});

// Create an agent
const agent = await nova.agents.create({
  name: 'my-assistant',
  description: 'A helpful coding assistant',
  model: 'auto',
  systemPrompt: 'You are a helpful assistant.',
  temperature: 0.7,
  maxTokens: 2048,
});

// Deploy it
await nova.agents.deploy(agent.agentId);

// Run a task
const result = await nova.agents.run(agent.agentId, {
  task: 'Explain the security risks of storing JWT tokens in localStorage',
});

console.log(result.output);         // AI response
console.log(result.confidence);     // 0-100 confidence score
console.log(result.trust);          // Trust evaluation (accuracy, safety, relevance, completeness)
console.log(result.autonomyLevel);  // AUTONOMOUS | NOTIFY | APPROVAL_REQUIRED | BLOCKED

Features

  • Smart Model Routing — Auto-routes tasks to the best model (Claude for analytical, Gemini for creative)
  • Trust Layer — Claude evaluates any model's output for accuracy, safety, relevance, and completeness
  • Confidence Scoring — Blended pipeline + trust scores with autonomy level determination
  • Agent Lifecycle — Create, deploy, run, pause, and manage AI agents
  • Workflow Pipelines — Multi-step agent workflows with confidence gates
  • Signal Monitoring — Real-time telemetry ingestion with anomaly detection
  • Automations — Rule-based triggers and scheduled actions
  • Connections Hub — Third-party integrations (Slack, GitHub, Jira, etc.)
  • Audit History — Full decision trail with trust data and explanations
  • Webhook Verification — HMAC-SHA256 payload signing and verification
  • Streaming — Server-Sent Events for real-time agent output
  • Full TypeScript — Complete type definitions with strict mode

API Resources

const nova = new NovaClient({ apiKey: '...' });

nova.agents          // Create, deploy, run, and manage AI agents
nova.trust           // Evaluate any AI output for trust and safety
nova.workflows       // Build and execute multi-step pipelines
nova.signals         // Ingest and stream real-time telemetry
nova.automations     // Manage rule-based automations
nova.connections     // Third-party integrations
nova.data            // Upload and query datasets
nova.history         // Audit trail and decision replay
nova.webhooks        // Event subscriptions

Trust Evaluation

Evaluate any AI output independently:

const result = await nova.trust.evaluate({
  input: 'What is the capital of France?',
  output: 'The capital of France is Paris.',
  model: 'gpt-4',
});

console.log(result.trust.overallScore);    // 97
console.log(result.trust.trustLevel);      // "high"
console.log(result.trust.accuracyScore);   // 100
console.log(result.trust.safetyScore);     // 95
console.log(result.trust.concerns);        // []

Webhook Verification

import { verifyWebhookSignature } from '@novalabai/adk';

const isValid = await verifyWebhookSignature(
  rawBody,
  signatureHeader,
  webhookSecret,
);

Streaming

const stream = await nova.agents.run(agentId, {
  task: 'Write a story',
  stream: true,
});

for await (const chunk of stream) {
  process.stdout.write(chunk.text);
}

Requirements

License

MIT