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

@svlktv/al-in-one-cli

v0.2.3

Published

All-in-one beautiful AI CLI for multiple providers

Readme

Multi-API Studio CLI

Windows-first full-screen CLI/TUI for working with multiple AI API providers.

One-command install (global)

npm install -g @svlktv/al-in-one-cli
aiocli

How it works:

  • npm installs global command aiocli.
  • postinstall downloads Windows binary from GitHub Releases for the package version.
  • No manual PATH edits are required for users (npm handles global bin shims).

Features

  • Full-screen Bubble Tea interface with premium dark styling.
  • Service picker (arrow keys + Enter):
    • Nvidia Build API
    • you.com API
    • Cerebras API
    • Omniroute API
    • Agentrouter API
  • 3-step reachability checks before auth:
    • DNS resolve
    • TCP connect
    • HTTP health
  • API key secure storage in Windows Credential Manager.
  • Dynamic model loading from selected provider.
  • Streaming chat with thinking indicator.
  • Reasoning text pane (shown only if provider emits reasoning deltas).
  • Top metrics strip:
    • model
    • author (svlktv)
    • token usage
    • request limit + overall limit
    • current workspace
    • remaining context
  • Local history persistence in SQLite by service+model sessions.

Provider mapping

  • Nvidia Build API: OpenAI-compatible /v1/models + /v1/chat/completions.
  • Cerebras: OpenAI-compatible base (https://api.cerebras.ai/v1) via /v1/models + /v1/chat/completions.
  • AgentRouter: OpenAI-chat provider on https://agentrouter.org/v1.
  • OmniRoute: OpenAI-compatible endpoints (/v1/models, /v1/chat/completions), default local URL http://localhost:20128.
  • You.com: Search API (GET /v1/search, header X-API-Key) adapted into chat-like responses.

Local development run

go run ./cmd/multi-api-studio

Version info:

go run ./cmd/multi-api-studio version

Release process

  1. Update package.json version.
  2. Push git tag vX.Y.Z.
  3. GitHub Action builds and uploads aiocli-windows-amd64.exe to the release.
  4. Publish npm package (npm publish --access public) or via publish-npm workflow.

Configuration

App stores preferences in:

  • %APPDATA%/multi-api-studio/config.json

Overrides for provider base URLs:

  • MAS_NVIDIA_BASE_URL
  • MAS_YOU_BASE_URL
  • MAS_CEREBRAS_BASE_URL
  • MAS_OMNIROUTE_BASE_URL
  • MAS_AGENTROUTER_BASE_URL

Source docs used

  • Cerebras: https://inference-docs.cerebras.ai/introduction
  • AgentRouter: https://docs.agentrouter.org/en/start.html and https://docs.agentrouter.org/en/codex.html
  • Nvidia: https://docs.api.nvidia.com/nim/reference/models-1
  • OmniRoute: https://github.com/diegosouzapw/OmniRoute/blob/main/docs/API_REFERENCE.md
  • You.com: https://you.com/docs/api-reference/search/v1-search

Notes

  • Where providers do not expose exact counters, token/limit/context metrics are marked as approximate.
  • Per-provider overrides (headers, routes, payloads) can be extended in dedicated adapters.