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

wave-code

v0.0.10

Published

CLI-based code assistant powered by AI, built with React and Ink

Downloads

252

Readme

Wave Code

CLI-based code assistant powered by AI, built with React and Ink.

This is the frontend UI package of the Wave workspace, providing an interactive command-line interface for AI-powered development assistance.

Features

  • Interactive CLI interface built with React and Ink
  • Real-time chat interface with AI assistant
  • File browser and editor integration
  • Command execution and output display
  • Session management and restoration
  • Memory context management

Installation

npm install wave-code -g

Environment Configuration

Before use, you need to configure the following environment variables for AI model authentication:

Required Environment Variables

# AI Gateway access token (required)
export AIGW_TOKEN="your_token_here"

# AI Gateway API URL (required)
export AIGW_URL="https://your-api-gateway-url.com"

Optional Environment Variables

# Specify AI model (optional, defaults to system configured model)
export AIGW_MODEL="gemini-2.5-flash"

# Specify fast AI model (optional, for quick response scenarios)
export AIGW_FAST_MODEL="gemini-1.5-flash"

# Log level (optional, defaults to info)
export LOG_LEVEL="debug"

# Log file path (optional)
export LOG_FILE="/path/to/your/logfile.log"

# Maximum log file size (optional, defaults to 10MB)
export LOG_MAX_FILE_SIZE="10485760"

# Token limit (optional, defaults to 96000)
export TOKEN_LIMIT="96000"

Usage

Full Command

# Start the CLI
wave-code

# Continue from last session
wave-code --continue

# Restore specific session
wave-code --restore session_id

# List available sessions
wave-code --list-sessions

Short Command (wave)

For convenience, you can also use the shorter wave command:

# Start the CLI (equivalent to wave-code)
wave

# Continue from last session
wave --continue

# Restore specific session
wave --restore session_id

# List available sessions
wave --list-sessions

# Show help
wave --help

The wave command is an alias for wave-code and supports all the same options and functionality.

Development

This package depends on wave-agent-sdk for core functionality including AI services, tools, and utilities.

# Install dependencies
pnpm install

# Start development
pnpm dev

# Build
pnpm build

# Test
pnpm test

License

MIT