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

@byted-supabase/cli

v0.1.20

Published

Byted Supabase CLI

Readme

Byted Supabase CLI

npm version license platforms

byted-supabase-cli is the command-line tool for the Volcengine AI-native BaaS platform (Supabase edition). It lets you manage workspaces, run SQL, deploy Edge Functions, move storage objects, host static frontends, and generate TypeScript types — all from one terminal command.

Why this CLI?

This is the Byted / Volcengine distribution of the official Supabase CLI, published to npm as @byted-supabase/cli. It keeps the command shapes you know from upstream where they apply, and targets the Volcengine-operated platform instead of supabase.com:

  • Authenticates with your Volcengine account instead of supabase.com.
  • Manages Volcengine Supabase workspaces, preview branches, computes, and endpoints.
  • Adds platform capabilities that upstream does not have, such as static frontend hosting and first-class support for AI coding agents.

If your backend runs on Volcengine Supabase, this is the CLI to use.

Features

  • Workspace management — create, list, start/stop, and configure workspaces (projects), preview branches (branches), computes (computes), endpoints (endpoints), and network restrictions (network-restrictions).
  • Database access — run SQL against a linked project with db query, pull or dump remote schemas (db pull, db dump), get connection strings, and check performance with db advisors and inspect db.
  • Edge Functions — scaffold (functions new), deploy, download, and list Deno-based Edge Functions, with secrets for their configuration.
  • Storage — manage buckets and objects with storage ls / cp / mv / rm, and provision buckets declaratively with seed buckets.
  • Auth configuration — manage auth settings, hooks, and third-party providers with auth.
  • Type generationgen types produces TypeScript (or Go / Swift) types straight from your Postgres schema.
  • Frontend hosting — deploy static frontends alongside your workspace with pages.
  • Built for AI agentsmcp serve starts a Model Context Protocol server over stdio, and skills install installs the matching byted-supabase agent skill, so AI assistants like Claude Code can drive the platform for you.

Getting started

Install

The guided setup installs the CLI globally and the matching byted-supabase agent skill:

npx @byted-supabase/cli@latest install

To install only the CLI and get the byted-supabase-cli command:

npm install -g @byted-supabase/cli

Or add it as a project dev dependency:

npm i @byted-supabase/cli --save-dev

npm installs the matching platform package for macOS / Linux / Windows on x86_64 / arm64. There is no postinstall download.

Authenticate

byted-supabase-cli login

This opens a browser for OAuth login with your Volcengine account. On a headless machine, use byted-supabase-cli login --remote to sign in from another device. In CI, skip login entirely and set VOLCENGINE_ACCESS_KEY / VOLCENGINE_SECRET_KEY (or use configure set) instead. See docs/supabase/login.md for details.

Create and link a workspace

# Create a workspace on Volcengine Supabase
byted-supabase-cli projects create my-app

# Scaffold the local supabase/ directory and link it to the workspace
byted-supabase-cli init
byted-supabase-cli link --project-ref <workspace-id>

Build

# Run SQL against the linked workspace
byted-supabase-cli db query "select now()"

# Scaffold and deploy an Edge Function
byted-supabase-cli functions new hello
byted-supabase-cli functions deploy hello

# Generate TypeScript types from the database schema
byted-supabase-cli gen types --linked --lang typescript

Explore the full command surface anytime:

byted-supabase-cli --help

Update

byted-supabase-cli update

Documentation

  • Command reference: run byted-supabase-cli --help (or <command> --help) for the authoritative list — this distribution exposes a different command surface than the upstream Supabase CLI
  • Extended man pages for each command: docs/supabase
  • Login modes and non-interactive behavior: docs/supabase/login.md
  • Library usage examples for building your own tooling: examples

Breaking changes

We follow semantic versioning for changes that directly impact CLI commands, flags, and configurations.

However, due to dependencies on other service images, we cannot guarantee that schema migrations, seed.sql, and generated types will always work for the same CLI major version. If you need such guarantees, we encourage you to pin a specific version of the CLI in package.json.

Developing

To run from source:

# Go >= 1.25
go run . help

Contributing

This project does not accept external contributions or pull requests. Bug reports are welcome on the issue tracker.

License

MIT