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

clawctl-cli

v0.1.14

Published

CLI for Clawctl - The WP Engine for AI Agents

Readme

Clawctl CLI

Command-line interface for Clawctl — The WP Engine for AI Agents.

Installation

Via npm (Recommended)

npm install -g clawctl-cli

Via npx (No Install)

npx clawctl-cli status

Direct Download

curl -fsSL https://clawctl.com/install.sh | bash

Updating the CLI

Via npm

# Update to the latest version
npm update -g clawctl-cli

# Or force install the latest version
npm install -g clawctl-cli@latest

# Check your current version
clawctl --version

Via Direct Download

Re-run the install script to update to the latest version:

curl -fsSL https://clawctl.com/install.sh | bash

The script will overwrite the existing installation with the latest version.

Via npx

If you use npx, you always get the latest version automatically:

npx clawctl-cli@latest status

To clear the npx cache and ensure you get a fresh version:

npx --yes clawctl-cli@latest status

Configuration

Set your environment variables:

export CLAWCTL_API="https://api.clawctl.com"
export OPENCLAW_TENANT_KEY="your-api-key-here"

Add to your shell config (~/.bashrc or ~/.zshrc) for persistence:

echo 'export CLAWCTL_API="https://api.clawctl.com"' >> ~/.bashrc
echo 'export OPENCLAW_TENANT_KEY="your-api-key-here"' >> ~/.bashrc
source ~/.bashrc

Usage

# Check status, usage, and pending approvals
clawctl status

# Show tenant and plan information
clawctl whoami

# View detailed usage vs plan limits
clawctl usage

# List and manage pending approvals (Team+ plans)
clawctl approvals list
clawctl approvals approve 1
clawctl approvals deny 2

# List deployments
clawctl deployments

# Upgrade your plan
clawctl upgrade team

# Show help
clawctl help

Commands

| Command | Description | |---------|-------------| | clawctl status | Show status, usage stats, and pending approvals | | clawctl whoami | Show current tenant and plan information | | clawctl usage | Show detailed usage vs plan limits | | clawctl approvals | List and manage pending approvals (Team+) | | clawctl deployments | List recent deployments | | clawctl upgrade [plan] | Upgrade to a higher plan | | clawctl audit | Search and export audit logs (Team+) | | clawctl policies | Manage security policies (Team+) | | clawctl version | Show CLI version | | clawctl help | Show help message |

Approvals (Team+ Plans)

On Team plan and above, risky actions are held for approval instead of being blocked:

# List pending approvals
clawctl approvals list

# Approve an action
clawctl approvals approve 1

# Deny an action
clawctl approvals deny 1

On Starter plan, risky actions are blocked automatically (Safe Mode). Upgrade to enable approvals:

clawctl upgrade team

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | CLAWCTL_API | Yes | API URL (e.g., https://api.clawctl.com) | | OPENCLAW_TENANT_KEY | Yes | Your tenant API key | | CLAWCTL_WEB | No | Web URL for upgrade links (default: https://clawctl.com) |

Getting Your API Key

Your API key is displayed on the success page after completing checkout at clawctl.com.

If you've lost your API key, contact [email protected].

Development

# Clone the repo
git clone https://github.com/clawctl/clawctl.git
cd clawctl/cli

# Install dependencies
npm install

# Run locally
npm start -- status

# Link for local development
npm link
clawctl status

Publishing (Maintainers)

# Bump version
npm version patch  # or minor, major

# Publish to npm
npm publish

Requirements

  • Node.js 20+

License

MIT

Support