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

@execlave/cli

v1.1.0

Published

CLI for the Execlave AI agent governance platform

Readme

@execlave/cli

Command-line interface for Execlave — the AI Agent Governance Platform.

Register agents, apply policies, ship incident reports, and drive your workspace from the terminal.

Install

npm install -g @execlave/cli

Or run ad-hoc without installing:

npx @execlave/cli --help

Quick start

# 1. Log in — prompts for your backend URL + API key, verifies the
#    connection, then stores both under your OS config dir.
execlave login

# 2. Check where you're pointed (endpoint + org + connectivity)
execlave status

Commands

| Command | What it does | | --------------------- | ----------------------------------------------------------------------------------------------- | | execlave login | Authenticate (prompts for backend URL + API key) and store credentials | | execlave status | Show the active org, API endpoint, and connection status | | execlave bootstrap | Interactive setup wizard for a new Execlave environment | | execlave org | Org info (list) and settings (settings) | | execlave workspace | Workspaces — list, create | | execlave agents | Agents — list, pause <id>, resume <id> (kill switch) | | execlave policies | Policies — list, violations, apply, test, chain | | execlave traces | Execution traces — list, stats | | execlave incidents | Incidents — list, export | | execlave prompts | Prompt versions — list, deploy, rollback, approve | | execlave validators | Custom HTTP validators (BYOV) — list/show/create/update/delete/test/rotate-secret |

Governance (AMP) commands

The six AI Agent Management Platform features are scriptable for CI / GitOps / terminal triage:

| Command | What it does | | ---------------------- | ---------------------------------------------------------------------------------------------------- | | execlave registry | Agent registry & lifecycle — inventory, versions <id>, rollback <id>, lifecycle <id> <state> | | execlave cost-rules | Real-time cost budget rules — list, create, update <id>, delete <id> | | execlave drift | Permission-drift events — list, resolve <id> | | execlave suggestions | Eval-to-policy suggestions — list, accept <id>, reject <id> | | execlave autonomy | Tiered agent autonomy — show <id>, set <id> <level> | | execlave lineage | Data-access lineage — breakdown, pii-by-agent |

Run execlave <command> --help (or execlave <command> <subcommand> --help) for detailed flags.

Configuration

Credentials and endpoint resolve from (in order of precedence):

  1. Environment variables — EXECLAVE_API_KEY (API key) and EXECLAVE_BASE_URL (backend host)
  2. The config file written by execlave login, at %APPDATA%\execlave-cli\config.json (Windows) or ~/.config/execlave-cli/config.json (Linux/macOS)

The config file is hardened to owner-only access on write (POSIX 0600 / Windows ACL).

API version

All commands target /api/v1 by default. Override per-invocation with the global flag:

execlave --api-version v0 agents list   # legacy unversioned /api (sunsets 2026-10-01)

Authentication

The CLI authenticates with an API key (exe_prod_... / exe_stg_... / exe_dev_...):

  • Interactiveexeclave login prompts for the backend URL and API key, probes /health to verify them, then persists both. Credentials are never saved if the probe fails.
  • Environment — set EXECLAVE_API_KEY (and optionally EXECLAVE_BASE_URL) for CI pipelines; these take precedence over the stored config. Create keys at https://www.execlave.com/dashboard/settings/api-keys.

Requirements

  • Node.js 20+
  • An Execlave account (sign up)

Links

License

MIT