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

qwen-kolibri-rust-gateway

v0.1.0

Published

Kolibri Rust OpenAI-compatible gateway launcher for Qwen Code CLI

Readme

qwen-kolibri-rust-gateway

Fast local OpenAI-compatible Rust gateway for Qwen Code CLI, OpenAI SDK clients, curl, IDE agents, and future Kolibri API deployment.

Architecture

OpenAI SDK / Qwen Code CLI / curl
→ http://127.0.0.1:8787/v1
→ Kolibri Rust Gateway
→ upstream OpenAI-compatible provider

First upstream target:

https://kolibriai.ru/v1

Future upstream target:

https://api.kolibriai.ru/v1

Clients only change baseURL.

What this gateway does

  • Local OpenAI-compatible /v1/chat/completions gateway.
  • Passthrough to OpenAI-compatible upstream.
  • Stream passthrough for SSE.
  • Tool calls passthrough.
  • exit_plan_mode passthrough.
  • Model suffix routing:
    • qwen3.6-plus#project-a → upstream model qwen3.6-plus, session key project-a.
    • qwen/qwen3.6-plus#project-a → upstream model qwen3.6-plus, session key project-a.
  • Optional enable_thinking injection.
  • Local/Upstream API key separation.
  • Secret masking in debug output.
  • qwen-local wrapper over the original Qwen Code CLI.

What it intentionally does not do

  • No direct chat.qwen.ai/api/v2 browser reverse-engineering.
  • No custom agent loop.
  • No local tool execution.
  • No rewrite of Qwen CLI.
  • No prompt-based fake JSON tool call generation.

Setup

cp .env.example .env
nano .env

Set:

UPSTREAM_API_KEY=your_aikit_or_upstream_key
LOCAL_API_KEY=local-proxy-key-2026

Build and run:

cargo check
cargo run

Health:

curl -s http://127.0.0.1:8787/health | python3 -m json.tool

Models:

curl -s http://127.0.0.1:8787/v1/models \
  -H "Authorization: Bearer local-proxy-key-2026" \
  | python3 -m json.tool

Chat non-stream:

curl -s http://127.0.0.1:8787/v1/chat/completions \
  -H "Authorization: Bearer local-proxy-key-2026" \
  -H "Content-Type: application/json" \
  -d '{"model":"qwen3.6-plus#project-a","stream":false,"messages":[{"role":"user","content":"Ответь одним словом: работает?"}]}' \
  | python3 -m json.tool

Chat stream:

curl -N http://127.0.0.1:8787/v1/chat/completions \
  -H "Authorization: Bearer local-proxy-key-2026" \
  -H "Content-Type: application/json" \
  -d '{"model":"qwen3.6-plus#project-a","stream":true,"messages":[{"role":"user","content":"Напиши три слова: тест bridge работает"}]}'

OpenAI SDK usage

import OpenAI from "openai";

const client = new OpenAI({
  apiKey: process.env.KOLIBRI_API_KEY || "local-proxy-key-2026",
  baseURL: process.env.KOLIBRI_BASE_URL || "http://127.0.0.1:8787/v1",
});

const completion = await client.chat.completions.create({
  model: "qwen3.6-plus#my-project",
  messages: [{ role: "user", content: "Ответь одним словом: работает?" }],
});

console.log(completion.choices[0].message.content);

Global Installation

Install globally via npm to use qwen-kolibri from any directory:

npm install -g qwen-kolibri-rust-gateway

After installation, run from anywhere:

qwen-kolibri [options]

Custom KOLIBRI Banner

The wrapper displays a colorful ASCII banner before launching Qwen Code:

█▀█▀█▀█  ██  ██ █▀█▀█▀█ █▀█▀    ██
  ██╔═══██╗██║    ██║██╔════╝████╗  ██║  │ >_ KOLIBRI Gateway                                  │
  ██║   ██║██║ █╗ ██║█████╗  ██╔██╗ ██║  │                                                          │
  ██║▄▄ ██║██║███╗██║██╔══╝  ██║╚██╗██║  │ API Key | qwen3.6-plus (/model to change)                │
  ╚██████╔╝╚███╔███╔╝███████╗██║ ╚████║  │ ~/your/project                    │
   ╚══▀▀═╝  ╚══╝╚══╝ ╚══════╝╚═╝  ╚═══╝  └──────────────────────────────────────────────────────────┘

Colors: red (K, L, B), green (O, I), yellow (I, R) via ANSI escape codes.

Disable banner: use --no-banner flag:

qwen-kolibri --no-banner [other args]

The wrapper:

  • loads .env;
  • starts the gateway if not already running;
  • creates project-specific model suffix;
  • creates isolated Qwen settings under .qwen-kolibri/settings.json;
  • runs original qwen directly without script | python3.

Custom KOLIBRI Banner

The bin/qwen-local wrapper displays a colorful KOLIBRI banner before launching Qwen Code:

█▀█▀█▀█  ██  ██ █▀█▀█▀█ █▀█▀    ██
  ██╔═══██╗██║    ██║██╔════╝████╗  ██║  │ >_ KOLIBRI Gateway                                  │
  ██║   ██║██║ █╗ ██║█████╗  ██╔██╗ ██║  │                                                          │
  ██║▄▄ ██║██║███╗██║██╔══╝  ██║╚██╗██║  │ API Key | qwen3.6-plus (/model to change)                │
  ╚██████╔╝╚███╔███╔╝███████╗██║ ╚████║  │ ~/your/project                    │
   ╚══▀▀═╝  ╚══╝╚══╝ ╚══════╝╚═╝  ╚═══╝  └──────────────────────────────────────────────────────────┘

Colors: red (K, L, B), green (O, I), yellow (I, R) via ANSI escape codes.

Disable banner: use --no-banner flag:

qwen-local --no-banner [other args]

Benchmark

export AIKIT_API_KEY="your_key"
./scripts/bench_aikit_vs_gateway.sh

Output:

local-data/bench/<timestamp>/

Deployment path

Local:

OPENAI_BASE_URL=http://127.0.0.1:8787/v1

Future server:

OPENAI_BASE_URL=https://api.kolibriai.ru/v1

Client code does not change.