pi-provider-crofai
CrofAI model provider extension for the pi coding agent.
Package details
Install pi-provider-crofai from npm and Pi will load the resources declared by the package manifest.
$ pi install npm:pi-provider-crofai- Package
pi-provider-crofai- Version
0.1.1- Published
- May 2, 2026
- Downloads
- not available
- Author
- qhn
- License
- MIT
- Types
- extension
- Size
- 12.4 KB
- Dependencies
- 0 dependencies · 1 peer
Pi manifest JSON
{
"extensions": [
"./extensions"
]
}Security note
Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.
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: