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

@openbox-ai/openbox-sdk

v0.1.1

Published

OpenBox AI governance SDK for TypeScript. Generated from a TypeSpec source of truth in this monorepo; the same spec drives sibling per-language SDKs.

Readme

openbox-sdk

TypeScript SDK for integrating applications and agent runtimes with OpenBox.

The SDK is API-first. It provides typed clients for OpenBox Core and Backend, workflow governance helpers, generated types, and optional runtime adapters. It should stay generic: no app-specific business logic, demo data, or hidden fallback behavior belongs in the package.

Install

npm install @openbox-ai/openbox-sdk

Runtime Governance

Use @openbox-ai/openbox-sdk/core-client for runtime governance. The key is an agent runtime key such as obx_live_* or obx_test_*.

import { OpenBoxCoreClient, govern, presets } from "@openbox-ai/openbox-sdk/core-client";

const core = new OpenBoxCoreClient({
  apiUrl: process.env.OPENBOX_CORE_URL,
  apiKey: process.env.OPENBOX_API_KEY,
});

await govern({ core, preset: presets.default }, async (session) => {
  const verdict = await session.activity("ActivityStarted", "llm_tool_call", {
    input: [{ tool_name: "send_update", args: { audience: "customer" } }],
  });

  if (verdict.arm === "block") throw new Error(verdict.reason);
});

Backend API

Use @openbox-ai/openbox-sdk or @openbox-ai/openbox-sdk/client for Backend/API setup, admin, and readiness work. The key is an org/API key such as obx_key_*.

import { OpenBoxClient } from "@openbox-ai/openbox-sdk";

const backend = new OpenBoxClient({
  apiUrl: process.env.OPENBOX_API_URL,
  apiKey: process.env.OPENBOX_BACKEND_API_KEY,
});

Key split:

  • OPENBOX_API_KEY: agent runtime key for Core governance.
  • OPENBOX_BACKEND_API_KEY: org/API key for Backend setup and reads.

Public Imports

| Import | Purpose | | --- | --- | | @openbox-ai/openbox-sdk | Root facade and Backend client | | @openbox-ai/openbox-sdk/client | Backend client | | @openbox-ai/openbox-sdk/core-client | Core client, govern(), presets, redaction helpers | | @openbox-ai/openbox-sdk/types | Generated DTO namespaces | | @openbox-ai/openbox-sdk/runtime/* | Optional runtime adapters |

package.json is the exhaustive export list. Integration-specific docs belong with that integration or example, not in this top-level README.

Develop

npm install
npm run build
npx tsc --noEmit -p tsconfig.build.json
npm run test:unit
npm run test:contract
npm run check:generated-drift
npm run lint:generated-banners

TypeSpec under specs/typespec/ is the source for generated contracts. Fix the spec or generator first; do not patch generated output by hand.

License

MIT