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-qoder-account-provider

v0.1.1

Published

Use Qoder account models, including Qwen3.8-Max, as a Pi provider through the official Qoder Agent SDK.

Readme

pi-qoder-account-provider

Use Qoder account models in Pi, including Qwen3.8-Max, through Qoder's official Agent SDK and CLI login.

This package does not use CPA, reverse-engineered browser sessions, COSY signatures, or WAF bypasses.

Install

Requirements:

  • Node.js 20+
  • Pi
  • Qoder CLI 1.1.40 or newer
  • Qoder account or Personal Access Token
npm install -g @qoder-ai/qodercli
qodercli login
pi install npm:pi-qoder-account-provider

Restart Pi or run /reload, then:

/login qoder

Choose Reuse qodercli login. Alternatively, choose Personal Access Token or set QODER_PERSONAL_ACCESS_TOKEN.

Select model:

/model

Choose qoder/Qwen3.8-Max.

Models

The package registers the current Qoder account catalog observed during release, including:

  • Qwen3.8-Max, Qwen3.8-Flash, Qwen3.7-Max, Qwen3.7-Plus
  • Kimi-K3, Kimi-K2.7-Code
  • GLM-5.3, GLM-5.3-Flash
  • DeepSeek-V4-Pro, DeepSeek-V4-Flash
  • MiniMax-M3
  • Auto, Ultimate, Performance, Efficient, Lite, Cantus

Qoder updates model availability server-side. Use qodercli --list-models as account-specific truth.

How it works

Qoder publishes an Agent SDK rather than a standard OpenAI-compatible endpoint. This extension adapts each Pi provider request into one ephemeral Qoder SDK query.

Qoder runtime tools are disabled. Pi remains responsible for tool execution and approval. When Qoder needs a tool, the extension asks it to emit a strict <pi_tool_call> envelope, converts that envelope into a Pi tool call, then sends the Pi tool result back on the next turn.

Security

Prompt text, conversation history, tool schemas, and necessary tool results are sent to Qoder's model service. Do not use this provider for data that must not leave your environment.

Qoder built-in file, shell, web, subagent, and skill tools are disabled by this bridge. Qoder queries use dontAsk, maxTurns: 1, and persistSession: false.

PATs are entered through Pi secret input or read from QODER_PERSONAL_ACCESS_TOKEN. Never commit tokens.

Limitations

  • Tool calling uses a model-followed envelope, not provider-native structured tool calls.
  • One Pi tool loop starts multiple Qoder queries. It can be slower and consume more Credits than one text response.
  • Input is currently text-only. Qoder vision models are listed, but Pi image blocks are not bridged yet.
  • Qoder Credits do not map cleanly to Pi per-million-token pricing. Static model prices remain zero; SDK request cost is preserved when available.

Verify

npm test
npm run typecheck
npm pack --dry-run

After login:

pi --provider qoder --model Qwen3.8-Max --thinking off -p \
  'Reply with exactly: QODER_PI_OK'

Uninstall

pi remove npm:pi-qoder-account-provider

Sources and terms

Extension source is MIT licensed. Qoder CLI and Agent SDK remain governed by Qoder's terms.