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

preview-celerdata-byoc-cli

v0.1.0-preview.15

Published

Preview CLI for CelerData BYOC Cloud

Readme

celerdata-byoc-cli

Preview: This CLI is currently in preview.

The preview command-line interface for CelerData BYOC Cloud based on OpenAPI. Manage your clusters directly from the terminal or automate operations in CI/CD pipelines and AI agents.


Why celerdata-byoc-cli?

Most cloud management tasks require navigating a web console. celerdata-byoc-cli brings the full CelerData BYOC Cloud control plane to your terminal, enabling:

  • AI agent workflows — Claude, Gemini, Codex, and other agents can manage your clusters as part of larger automations; with remote control features offered by some AI platforms, you can even manage CelerData BYOC clusters from your phone
  • Scheduled operations — combine with agent cron capabilities or CI schedules to automate routine tasks: suspend dev clusters after hours, resume before work, scale up for known traffic peaks — saving costs without manual intervention
  • CI/CD automation — suspend clusters on a schedule, scale before batch jobs, release after testing
  • Scripting — compose cluster operations with standard shell tools; structured JSON output makes it easy to extract values and chain commands

Features

Cluster

deploy · list · get · state · endpoints · suspend · resume · scale-num · scale-type · release

Cluster Volume

cluster volume modify

Warehouse

list · get · create · suspend · resume · scale-num · scale-type · release

Auth & Config

auth login/logout/status · config init/list/get/set/use-profile


Installation

Requires Node.js 16+ and macOS Apple Silicon (M1/M2/M3/M4).

npm install -g preview-celerdata-byoc-cli

The pre-built binary is bundled in the npm package — no additional downloads or GitHub access required.

Verify

celerdata-byoc-cli version

Update

Re-run the installation command to fetch the latest version.

Uninstall

npm uninstall -g preview-celerdata-byoc-cli

Quick Start

1. Configure

celerdata-byoc-cli config init

You will be prompted for:

  • API URL — your CelerData Cloud API endpoint (e.g. https://cloud-api.celerdata.com)
  • Client ID — from your service account or application key
  • Client Secret — from your service account or application key
  • Profile name — defaults to default

See API Overview for how to obtain your Client ID and Client Secret.

2. Authenticate

celerdata-byoc-cli auth login

The CLI fetches an OAuth2 access token and caches it at ~/.celerdata-byoc-cli/tokens/default.json. Tokens expire after 1 hour and are refreshed automatically.

3. List your clusters

celerdata-byoc-cli cluster list

AI Agent Integration

The CLI is designed for use by AI agents (Claude, Gemini, Codex, etc.) as a subprocess tool.

Skills

Skills are automatically installed to ~/.agents/skills/ when you run npm install. They teach AI agents how to use this CLI correctly — covering authentication, safety rules, command usage, and common patterns. Skills are updated automatically when you upgrade the package.

| Skill | Description | | --- | --- | | celerdata-shared | Setup, authentication, output parsing, async operations, safety rules (auto-loaded by all other skills) | | celerdata-cluster | Cluster lifecycle: deploy, inspect, scale, suspend/resume, release, disk configuration | | celerdata-warehouse | Warehouse lifecycle: create, inspect, scale, suspend/resume, release |

For agent flags (--format json, --no-confirm, --wait, etc.) and more workflow patterns, see docs/reference.md — AI Agent Usage.


For full command reference, CI/CD setup, output formats, exit codes, and global flags, see reference.md.


Example — Claude Code managing a cluster

You: "Suspend the staging cluster and wait for it to complete."

Claude Code runs:

# 1. Find the cluster ID
celerdata-byoc-cli cluster list --format json --no-color

# 2. Suspend it and wait
celerdata-byoc-cli cluster suspend cls-abc123 \
  --format json --no-confirm --wait --wait-timeout 10m

# 3. Confirm the final state
celerdata-byoc-cli cluster state cls-abc123 --format json