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

pi-provider-crofai

v0.1.1

Published

CrofAI model provider extension for the pi coding agent.

Downloads

264

Readme

pi-provider-crofai

Unofficial CrofAI provider package for pi.

CrofAI offered me a trial of their model hosting service, so I wanted to test it properly from the place I actually work every day: my Pi coding-agent harness. I could have kept a private models.json around, but that felt annoying and not very useful to anyone else.

So this is the small public package version. Install it, log in through Pi, and CrofAI shows up as a normal provider.

This is not an official CrofAI or Pi integration. If CrofAI and Pi work out an official provider later, that would be great. I would be happy to point people there. Until then, this package is meant to be boring, inspectable glue that helps me test CrofAI seriously and maybe helps other Pi users too.

Install

From npm:

pi install npm:pi-provider-crofai

From GitHub:

pi install git:github.com/nqh-packages/pi-provider-crofai

From a local checkout:

pi install /absolute/path/to/pi-provider-crofai

Login

Inside Pi:

/login

Choose:

Use an API key -> CrofAI

Pi stores the key in its normal auth file:

~/.pi/agent/auth.json

For headless or CI runs, this also works:

export CROFAI_API_KEY="your-key"

Then select a model:

/model

What it registers

Provider ID:

crofai

Base URL:

https://crof.ai/v1

Pi API type:

openai-completions

Model list

The model list refreshes every time Pi starts or you run /reload.

The extension reads:

https://crof.ai/pricing

I use the pricing page because CrofAI's /v1/models endpoint currently gives IDs, prices, and limits, but not the vision labels. Pi needs to know image support before it sends an image, so the pricing page is the better source for that part.

If the pricing page is unavailable, the extension falls back to a bundled model snapshot so /model still works.

Local check

From this repo:

npm run check

You should see CrofAI models, including vision-capable ones like kimi-k2.6, kimi-k2.5, gemma-4-31b-it, and some Qwen models marked with image support.

Notes

This package is intentionally small. No custom streaming layer, no special auth server, no extra runtime dependency.

It just registers CrofAI as an OpenAI-compatible Pi provider, pulls fresh model metadata from CrofAI's pricing page, and lets Pi handle the rest.

Docs I used: