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

@scalekit-inc/cli

v0.3.21

Published

Scalekit CLI

Readme

Scalekit CLI

Auth stacks for AI coding tools — one command away.

npm version Node version License: MIT

Documentation · Slack Community


Install Scalekit auth extensions (and skills) into your AI coding tools — Cursor, Claude Code, Codex, GitHub Copilot, and others — with auto-detection, interactive prompts, and dry-run previews.

Quick start

npx @scalekit-inc/cli setup

That's it. The wizard detects which tools you have installed and walks you through setup.

Install

For repeated use, install globally:

npm install -g @scalekit-inc/cli

Then run with scalekit (or the short alias sk).

Usage

Interactive wizard

scalekit setup

Auto-detects installed tools, lets you pick which ones to set up, and installs the auth extensions.

You can also install Scalekit skills (for Cline, Windsurf, Aider, and other agents) from the unified Authstack:

scalekit setup          # choose "Scalekit skills" in the wizard
scalekit setup --skip-skills   # stacks only

Direct install

Skip the wizard and target a specific tool:

scalekit setup cursor               # or: sk setup cursor
scalekit setup claude -y            # or: sk setup cc -y
scalekit setup copilot --dry-run    # or: sk setup ghcp --dry-run

Updating

scalekit update                    # update the CLI itself
scalekit extension update cursor   # or: sk ext up cursor

update keeps the Scalekit CLI current. To update auth stacks (extensions) for a specific tool use extension update (or ext up).

Uninstall

scalekit extension uninstall cursor
scalekit extension uninstall claude -y   # skip confirmation
scalekit ext rm codex -y

Extension commands

For scriptable, noun-verb access:

scalekit extension install cursor    # or: ext i cursor
scalekit extension update cursor     # or: ext up cursor
scalekit extension install cc        # alias for claude
scalekit extension uninstall cursor  # or: ext rm cursor
scalekit extension list              # or: ext ls
scalekit extension status            # check all versions

[!TIP] Every install command supports --dry-run to preview what will run, and -y / --yes to skip confirmation prompts — useful for CI/CD.

Supported tools

| Tool | ID | Aliases | |------|----|---------| | Cursor | cursor | — | | Claude Code | claude | claude-code, cc | | Codex | codex | opencode | | GitHub Copilot | copilot | github-copilot, ghcp |

Command reference

scalekit                              show help
scalekit setup                        interactive setup wizard (stacks + skills)
scalekit setup <tool>                 set up a specific tool
scalekit setup --skip-skills          stacks only, skip skills

scalekit update                       update the Scalekit CLI itself
scalekit extension install <id>       install by id or alias    (alias: ext i)
scalekit extension update <id>        update a stack (alias: ext up)
scalekit extension uninstall <id>     uninstall by id or alias  (alias: ext rm)
scalekit extension list               list available extensions  (alias: ext ls)
scalekit extension status [id]        check installed version

Global flags

| Flag | Description | |------|-------------| | --dry-run | Preview commands without executing | | -y, --yes | Skip all confirmation prompts | | --plain | Disable colors and styling (also respects NO_COLOR) |

Requirements

  • Node.js >= 20

Development

git clone https://github.com/scalekit-inc/cli.git
cd cli
pnpm install
pnpm dev          # watch mode
pnpm test         # run tests
pnpm lint         # check formatting + lint

Built with Commander.js, @clack/prompts, picocolors, and TypeScript.