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

@skybuild/cli

v1.0.0

Published

SkyBuild CLI — manage workspaces, run any SkyBuild tool, and chat with personas from the terminal. Tool subcommands are statically generated from the MCP server tool definitions at build time.

Readme

@skybuild/cli

Command-line interface for SkyBuild. Manage workspaces, run any SkyBuild tool, and chat with personas from your terminal.

Tool subcommands are statically generated from SkyBuild's MCP server tool definitions at build time. Each tool gets its own command (e.g. skybuild run web-search) with typed flags derived from its input schema — no JSON-blob arguments required.

Install

npm i -g @skybuild/cli
# or
bun add -g @skybuild/cli

Quickstart

# 1. Get an API key from https://skybuild.io/settings/api-keys
skybuild auth login --token sk_live_...

# 2. Pick a default workspace
skybuild workspaces list
skybuild config set workspaceId <id>

# 3. Discover and run tools
skybuild tools                            # list every generated tool command
skybuild tools -q web                     # filter by name/description
skybuild tools describe web-search        # print the full schema
skybuild run web-search --query "latest AI news" --provider duckduckgo

# 4. Chat with a persona
skybuild chat <personaId>
skybuild chat <personaId> -m "summarize the news I just searched"

Commands

| Command | Description | |---|---| | skybuild auth login --token <key> | Save an API key and verify it | | skybuild auth logout | Remove the stored API key | | skybuild auth whoami | Show the current user | | skybuild config set <key> <value> | Set a CLI config value (apiUrl, apiKey, workspaceId) | | skybuild config get <key> | Print a config value | | skybuild config list | Print all config values (apiKey is masked) | | skybuild config unset <key> | Remove a config value | | skybuild workspaces list | List workspaces | | skybuild workspaces create <name> [-d <text>] | Create a workspace | | skybuild tools [-q <text>] | List every generated tool command, optionally filtered | | skybuild tools describe <command> | Print the full schema for a tool | | skybuild run <command> [flags] | Execute a tool by its generated command name with typed flags | | skybuild chat <personaId> [-m <text>] | Interactive streaming chat — or single-shot with -m |

All commands accept --json for machine-readable output. Every skybuild run <command> accepts -w/--workspace <id> plus --args-json '<json>' as an escape hatch when you want to send the raw arguments object instead of individual flags.

Environment overrides

| Variable | Effect | |---|---| | SKYBUILD_API_KEY | Use this key, ignoring the stored one | | SKYBUILD_URL | API base URL (default: https://skybuild.io) |

Config file

The CLI stores config in ~/.skybuild/config.json with 0600 permissions. You can edit it directly or use skybuild config set.

How tool commands are generated

scripts/generate-cli-commands.ts (in the SkyBuild monorepo) reads the canonical tool definitions used by the MCP server (lib/ai/tools.ts plus a small set of MCP-only tools) and emits src/generated/commands.ts. The generator runs automatically as a prebuild step, so a fresh bun run build always reflects the current tool catalog. The runtime helper src/lib/tool-runtime.ts wires each spec into a Commander subcommand with type coercion and validation for primitives, enums, repeatable string arrays, and JSON for nested objects.

License

MIT