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

kaze-cli

v2.0.23

Published

A Claude Code-like vibe coding CLI using multiple AI providers (Zai, OpenAI, Anthropic, Groq, Mistral, Cohere, and more)

Readme

Kaze CLI

AI-powered coding assistant with Claude Code-like experience

FeaturesInstallationQuick Start

Features

  • Multi-Provider AI Support - Zai, OpenAI, Anthropic, Groq, Mistral, Cohere, and more
  • Interactive REPL - Natural conversation interface in your terminal
  • File System Operations - Read, write, search, and manage files
  • Semantic Codebase Search - Find code across your entire project
  • Terminal Integration - Execute commands directly and see results
  • Task Management - Built-in todo list for tracking work
  • Personality System - Customize AI behavior for different use cases
  • MCP Support - Extend functionality with Model Context Protocol servers
  • Streaming Responses - Real-time AI responses as they're generated

Installation

npm install -g kaze-cli

Requirements: Node.js >= 16.0.0

Quick Start

kaze

On first run, configure:

  • Select AI provider
  • Enter API key
  • Choose default model
  • Configure interface preferences
> Help me create a REST API in Node.js

I'll help you create a REST API in Node.js using Express...

[index.js](file:///path/to/index.js#L1-L30)
```javascript
const express = require('express');
const app = express();

app.use(express.json());

let users = [{ id: 1, name: 'John Doe', email: '[email protected]' }];

app.get('/api/users', (req, res) => res.json(users));
app.get('/api/users/:id', (req, res) => {
  const user = users.find(u => u.id === parseInt(req.params.id));
  if (!user) return res.status(404).json({ error: 'User not found' });
  res.json(user);
});
app.post('/api/users', (req, res) => {
  const user = { id: users.length + 1, ...req.body };
  users.push(user);
  res.status(201).json(user);
});

app.listen(3000, () => console.log('Server running on port 3000'));

## Configuration

### Environment Variables

Create a `.env` file:

```bash
ZAI_API_KEY=your_api_key_here
ZAI_API_URL=https://api.z.ai/v1
ZAI_MODEL=GLM-4.7

OPENAI_API_KEY=your_openai_key
ANTHROPIC_API_KEY=your_anthropic_key

Configuration File

Stored at ~/.kaze/config.json:

{
  "api": {
    "provider": "zai",
    "apiKey": "your_api_key",
    "baseUrl": "https://api.z.ai/v1",
    "model": "GLM-4.7",
    "maxTokens": 8192,
    "temperature": 1.0
  },
  "interface": {
    "theme": "default",
    "showThinking": true,
    "streaming": true
  },
  "tools": {
    "filesystem": true,
    "terminal": true,
    "codebase": true,
    "todo": true
  }
}

Interactive Setup

kaze config init

Commands

System Commands

| Command | Description | |---------|-------------| | /help | Show all available commands | | /clear | Clear conversation history | | /config | Open configuration menu | | /exit or /quit | Exit the CLI |

Personality Commands

| Command | Description | |---------|-------------| | /personality list | List all available personalities | | /personality use <name> | Activate a personality | | /personality add | Create a new personality | | /personality remove <name> | Delete a personality | | /personality clear | Revert to default behavior |

Tool Commands

| Command | Description | |---------|-------------| | /file <path> | Read a file | | /write <path> | Write content to a file | | /search <query> | Search the codebase | | /run <command> | Execute a terminal command | | /todo | Manage tasks |

MCP Commands

| Command | Description | |---------|-------------| | /mcp list | List configured MCP servers | | /mcp connect <name> | Connect to an MCP server | | /mcp disconnect <name> | Disconnect from a server | | /mcp tools [name] | List available tools |

Supported AI Providers

| Provider | Models | Best For | |----------|--------|----------| | Zai | GLM-4.7, GLM-5 | General coding, reasoning | | OpenAI | GPT-4 Turbo, GPT-4, GPT-3.5 | Well-known, reliable | | Anthropic | Claude 3 Opus, Sonnet, Haiku | Complex reasoning | | Groq | Mixtral, Llama 2 | Fast, cost-effective | | Mistral | Mistral Large, Medium, Codestral | European data | | Cohere | Command, Command Light | Text generation |

Built-in Personalities

Coding Expert

Expert software engineer for technical tasks.

/personality use coding-expert

Concise

Direct, minimal responses.

/personality use concise

Creative

Exploratory and inventive.

/personality use creative

Development

git clone https://github.com/017016/kaze-cli.git
cd kaze-cli
npm install
npm run build
npm run dev

Documentation

License

MIT License - see LICENSE file for details

Support

GitHubnpm Discord