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

@aso-skill/cli

v0.1.6

Published

Secure browser login and command-line client for the ASO Skill API

Readme

ASO Skill CLI

Secure browser login and command-line access to the ASO Skill App Store data API.

For ChatGPT, Claude, and other cloud clients, use the hosted OAuth-protected MCP endpoint instead: https://api.asoskill.com/mcp. The CLI is the local companion for Agent Skills, terminals, servers, and automation. See the CLI guide and MCP guide.

The CLI does not ask you—or an AI agent—to copy an API key into .env. Before requesting a credential, it verifies that the selected credential store is writable. It then starts a ten-minute connection request, opens ASO Skill in your browser, and waits while you sign in and approve the exact permissions. The API returns the new key in an encrypted envelope that only this CLI can open. By default, the credential is saved in macOS Keychain, Windows Credential Manager, or the Linux Secret Service.

Install

Install the public npm package globally, then use aso-skill from any terminal:

npm install --global @aso-skill/cli
aso-skill login
aso-skill popularity "workout planner" --storefront US

Login requests data and credits access and creates a 90-day credential. Both choices are visible on the browser approval page. Checkout access is deliberately separate:

aso-skill login --allow-checkout

Use --expires-in 0 for no automatic expiration. On a trusted headless machine without an operating-system keyring, opt in to a local file protected with mode 0600:

aso-skill login --credential-store file --no-open

For CI, inject ASO_SKILL_API_KEY from the CI platform's secret manager. The environment value overrides local storage. The CLI never prints credentials from login, status, or logout.

Commands

aso-skill status
aso-skill search TERM [--storefront US] [--platform iphone]
aso-skill autocomplete TERM [--storefront US] [--platform iphone]
aso-skill popularity TERM [--storefront US]
aso-skill apps APP_ID... [--storefront US] [--platform iphone]
aso-skill credits
aso-skill packs
aso-skill checkout PACK_ID --confirm-checkout
aso-skill logout

Each successful search, autocomplete, popularity, or app lookup costs one ASO Skill credit. Autocomplete supports iphone, ipad, mac, appletv, watch, and vision and defaults to US iPhone. Checkout only creates a Polar payment URL; the account owner still completes payment in the browser.

Security model

  • The client sends a SHA-256 challenge before browser approval and retains the verifier locally.
  • The service stores only a hash of the device code.
  • The API key is returned in an AES-256-GCM envelope derived from the verifier with HKDF-SHA-256.
  • The encrypted retry envelope and authorization request expire after ten minutes.
  • Permanent server records contain only the API-key hash and approved scopes.
  • logout self-revokes the calling key and removes the local credential.

See the public OpenAPI contract for the complete API.