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

@kars-runtime/cli

v0.1.25

Published

Enterprise-grade runtime for running OpenClaw AI assistants safely on Azure

Readme

kars CLI — @kars-runtime/cli

The command-line interface for kars — a secure AI agent runtime on Azure. Run OpenClaw (and other) agents in isolated sandboxes with end-to-end encrypted inter-agent messaging, egress control, and policy governance — locally on Docker/kind or on AKS.

Install

npm i -g @kars-runtime/cli

This installs the kars command. (Node.js 22+ required.)

No-compile alternative — the public installer pulls the latest signed release:

curl -fsSL https://raw.githubusercontent.com/Azure/kars/main/install.sh | bash

Quick start

# Run a sandboxed agent from the published, cosign-signed images (no compile)
kars dev --release

# …or on a local Kubernetes (kind) cluster — real K8s posture
kars dev --release --target local-k8s

On first launch you pick an inference provider — GitHub Copilot is easiest (one device-code login, no Azure account). Then talk to your agent:

kars connect dev-agent

When you're ready for a managed cluster:

kars up --name prod-agent --region swedencentral --release   # provisions AKS + Foundry + the full stack from signed public images (no build)

Common commands

| Command | What it does | |---|---| | kars dev --release | Run a sandbox from published images (Docker), no compile | | kars dev --release --target local-k8s | Same, on a local kind cluster | | kars connect <name> | Open the agent chat TUI | | kars up --release | Provision AKS + ACR + Foundry from signed public images (no build) | | kars add | Add a sandbox / runtime to an existing deployment | | kars operator | Live operator dashboard (agents, mesh, security posture) | | kars --help | Full command list |

Security & provenance

Every published kars artefact — container images and this CLI tarball — is cosign keyless-signed, ships an SPDX SBOM, and carries a SLSA build provenance attestation. The CLI is published to npm via OIDC trusted publishing (no long-lived tokens). Verify with npm audit signatures, cosign verify, and gh attestation verify.

Links

  • Repository & docs: https://github.com/Azure/kars
  • Getting started: https://github.com/Azure/kars/blob/main/docs/getting-started.md
  • License: MIT

kars is an open-source reference implementation maintained under the Azure GitHub organization. Not an officially supported Microsoft product.