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

@growthcircle/growcli-darwin-x64

v0.1.10

Published

Native Grow CLI binary for darwin-x64

Readme

Grow CLI

npm version build downloads community license

GrowthCircle coding agent for your terminal. Built on OpenAI Codex CLI, powered by models from GrowthCircle AI — one API key, free and paid models included.

Install

npm install -g @growthcircle/growcli

Supported platforms: Linux x64 · macOS x64 · macOS arm64 · Windows x64

Quick start

growcli                              # interactive agent (prompts for API key on first run)
growcli -m MODEL_ID                  # use a specific model
growcli exec "explain this repo"     # one-shot task

Set your API key (optional — growcli prompts on first run if unset):

export GC_API_KEY="your_growthcircle_api_key"

Install from source

git clone https://github.com/Growth-Circle/growcli.git
cd growcli/codex-rs
CODEX_SKIP_VENDORED_BWRAP=1 cargo install --path cli --bin growcli --locked

Or run without installing:

cd growcli/codex-rs
cargo run --bin growcli -- --help

GrowthCircle provider

Grow CLI defaults to the built-in growthcircle provider:

| Setting | Value | |---------|-------| | Base URL | https://ai.growthcircle.id/v1 | | Auth | Authorization: Bearer $GC_API_KEY | | Agent endpoint | POST /v1/responses | | Chat endpoint | POST /v1/chat/completions | | Image endpoint | POST /v1/images/generations |

All models available to your account (free and paid) are selected with -m MODEL_ID or in config:

model_provider = "growthcircle"
model = "MODEL_ID"

Save in ~/.codex/config.toml or pass on the command line.

GrowthCircle remains the default provider. To try another OpenAI-compatible Chat Completions backend, add a separate custom provider and point Grow CLI at it only when you want to use it:

model_provider = "custom-openai-chat"
model = "MODEL_ID_FROM_PROVIDER"

[model_providers.custom-openai-chat]
name = "Custom OpenAI-compatible Chat"
base_url = "https://provider.example/v1"
env_key = "CUSTOM_OPENAI_API_KEY"
wire_api = "chat"
requires_openai_auth = false

Set CUSTOM_OPENAI_API_KEY in your shell and swap MODEL_ID_FROM_PROVIDER with any model ID accepted by that provider. GrowthCircle models continue to use the built-in growthcircle provider and GC_API_KEY.

Documentation

Upstream

Grow CLI tracks upstream OpenAI Codex CLI where practical. Fork-specific changes: GrowthCircle provider defaults, GC_API_KEY auth, and the growcli / grow commands.

License

Apache-2.0 — see LICENSE. Upstream attribution preserved in NOTICE.