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-win32-x64

v0.1.6

Published

Native Grow CLI binary for win32-x64

Readme

Grow CLI

Grow CLI is a GrowthCircle-focused fork of OpenAI Codex CLI. It keeps the local coding-agent workflow from Codex and adds a built-in growthcircle model provider so GrowthCircle users can use models from https://growthcircle.id/app/ai with one API key.

This repository is open source under Apache-2.0. Upstream attribution and notices are preserved in LICENSE and NOTICE.

Quickstart

Install Grow CLI from npm:

npm install -g @growthcircle/growcli
growcli --version
growcli

Package: @growthcircle/growcli. The same install command is used on supported Linux, macOS, and Windows machines.

Current npm targets:

  • Linux x64
  • macOS x64
  • macOS arm64 / Apple Silicon
  • Windows x64

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
growcli --version
growcli

Maintainers publish the npm package from GitHub Actions with the manual npm-publish workflow. It builds native npm payloads for Linux, macOS, and Windows, publishes them first, then publishes the root package that selects the right native payload through npm optional dependencies. The repository needs an NPM_TOKEN secret with publish access to the @growthcircle npm scope.

If GC_API_KEY is not set yet, Grow CLI asks for the GrowthCircle API key on startup, validates it, saves it locally, and loads the free or paid models available to that key.

Run from source without installing:

git clone https://github.com/Growth-Circle/growcli.git
cd growcli/codex-rs
cargo run --bin growcli -- --help

Set your GrowthCircle API key:

export GC_API_KEY="your_growthcircle_api_key"

This step is optional for interactive users because growcli can prompt for the key on first run.

Start the interactive coding agent:

cargo run --bin growcli --

Use a specific model from the GrowthCircle AI dashboard:

cargo run --bin growcli -- -m MODEL_ID

Run a one-shot task:

cargo run --bin growcli -- exec -m MODEL_ID "explain this repository"

GrowthCircle Provider

Grow CLI defaults to the built-in growthcircle provider:

model_provider = "growthcircle"

Provider details:

  • Base URL: https://ai.growthcircle.id/v1
  • Auth header: Authorization: Bearer $GC_API_KEY or the API key saved during first-run setup
  • Main endpoint used by the agent: POST /v1/responses
  • OpenAI-compatible chat endpoint for integrations: POST /v1/chat/completions
  • Image endpoint for image tools: POST /v1/images/generations

All GrowthCircle models, including free and paid models available to your account, are selected by model ID with -m MODEL_ID or model = "MODEL_ID" in config.

Configuration

Grow CLI uses the same config system as Codex. To pin a model:

model_provider = "growthcircle"
model = "MODEL_ID"

Save this in ~/.codex/config.toml for your user account, or pass overrides on the command line.

Upstream

Grow CLI tracks upstream OpenAI Codex CLI where practical. The main fork-specific changes are the GrowthCircle provider defaults, GC_API_KEY authentication, and the growcli command and grow shortcut.

Helpful docs: