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

@chucky.cloud/cli

v0.2.9

Published

CLI for deploying AI agent workspaces to Chucky cloud - build and ship Claude-powered assistants

Readme

Chucky CLI

npm version License: MIT Node.js

Command-line interface for deploying AI agent workspaces to the Chucky cloud platform. Build and ship Claude-powered assistants with ease.

Installation

npm install -g @chucky.cloud/cli

Quick Start

# Authenticate with your Chucky account
chucky login

# Initialize a new project
chucky init

# Deploy your workspace
chucky deploy

Commands

chucky login

Authenticate with your Chucky account using browser-based device flow or API key.

# Interactive browser-based login (recommended)
chucky login

# Direct API key authentication
chucky login -k ak_live_xxxxx

Options:

  • -k, --key <key> - Skip browser flow and authenticate with API key directly

chucky list / chucky ls

List all projects in your account.

chucky list

Displays project name, ID, status, and HMAC key for each project.

chucky init

Initialize a new Chucky project in the current directory.

chucky init

What it does:

  1. Creates or selects an existing project
  2. Prompts for project name and description
  3. Optionally configures Anthropic API key
  4. Saves .chucky.json configuration file
  5. Optionally sets up GitHub Actions workflow

chucky deploy

Deploy your workspace to the Chucky cloud.

# Deploy using config from .chucky.json
chucky deploy

# Deploy a specific folder
chucky deploy -f ./my-workspace

Options:

  • -f, --folder <path> - Override the folder to deploy

Deployment flow:

  1. Creates tar.gz archive of workspace folder
  2. Uploads to Chucky cloud storage (R2)
  3. Marks workspace as deployed
  4. Displays example code for generating tokens

chucky keys

Display the HMAC key for the current project.

chucky keys

chucky config anthropic

Set the Anthropic API key for a project.

# Interactive prompt
chucky config anthropic

# Direct key input
chucky config anthropic -k sk-ant-xxxxx

Options:

  • -k, --key <key> - Anthropic API key to set

chucky delete

Delete a project.

# Delete from selection list
chucky delete

# Delete specific project
chucky delete PROJECT_ID

Configuration

Global Config (~/.chucky/config.json)

Stores user credentials:

{
  "apiKey": "ak_live_...",
  "email": "[email protected]",
  "portalUrl": "https://app.chucky.cloud"
}

Project Config (.chucky.json)

Stores project-specific settings:

{
  "projectId": "uuid-...",
  "projectName": "my-project",
  "folder": "./workspace",
  "hmacKey": "hk_live_..."
}

Environment Variables

  • CHUCKY_API_KEY - Override API key from config
  • CHUCKY_PORTAL_URL - Override portal URL (for development)

Authentication Flow

Browser-Based (Device Code Flow)

  1. CLI generates a device code and opens browser
  2. User signs in to Chucky portal
  3. User confirms the device code
  4. CLI receives API key and stores locally

API Key

  1. User obtains API key from Chucky portal
  2. User runs chucky login -k ak_live_...
  3. CLI validates key and stores locally

Workspace Deployment

Default Ignore Patterns

The following are excluded from deployment archives:

  • node_modules/
  • .git/
  • .env files
  • dist/, build/
  • Cache and log directories

Archive Format

Workspaces are compressed as .tgz (tar.gz) with maximum compression.

Dependencies

  • commander - CLI framework
  • inquirer - Interactive prompts
  • chalk - Terminal styling
  • ora - Progress spinners
  • archiver - Archive creation

Development

# Install dependencies
npm install

# Build TypeScript
npm run build

# Watch mode
npm run dev

# Type checking only
npm run typecheck

License

MIT