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

parallax-dev

v1.3.14

Published

High-performance, terminal-based AI coding assistant with built-in MCP and developer tools.

Readme

Parallax CLI

Parallax is an open-source AI coding assistant that runs in your terminal. You probably already know what an agent is and what it does. I built this one because I was tired of brittle framework abstractions, context windows bloating out of control, and CLI tools that felt like a black box.

Here is what Parallax does differently:

Multi-Agent Coordination & Parallelization
Parallax isn't just one model struggling to write an entire app in a single turn. The /parallax command delegates planning to a high-capacity large reasoning model (like gemini-3.1-pro), which acts solely as a Master Coordinator. It decomposes your objective and dynamically spins up a swarm of lightweight subagents (e.g. gemini-3-flash) to execute the smaller tasks. Since the core tool execution engine is fully asynchronous and non-blocking, these subagents run and write code concurrently to accomplish massive refactors in seconds.

Native IDE Connection
While Parallax streams beautiful line-numbered diffs into its terminal interface, it also natively hooks right into your IDE's internal state. When an agent edits a file, it seamlessly opens a native, non-blocking UI Diff Editor directly in your IDE environment (like VS Code). You never have to manually git diff an agent's work again; the moment a change is made to disk, the precise diff pops open next to your active code for read-only inspection and rapid Cmd + Z reversion if desired.

Native Ink TUI
Most CLI agents just spew text until they finish a thought. Parallax uses React and Ink to render a proper, reactive terminal interface. It maintains your session state in a status bar and renders the model's reasoning trace while it streams. You never have to guess if the process is stuck.

Real Interrupts
Hitting Ctrl+C doesn't just nuke the node process. It explicitly signals an AbortController that hard-stops the model generation and gracefully aborts running tools. If the model starts going down a rabbit hole, you can stop it instantly and correct course without losing your previous session history.

Context Compaction
Long-running conversational sessions usually hit token limits or become painfully slow. Type /compact and the model summarizes your entire conversation history, clears the old message blocks, and replaces the context window with the summary. You keep the thread alive without dragging around dead weight.

Omni-Provider Engine
Parallax isn't locked down to a single vendor. While it deeply integrates with Gemini tools for the subagent swarms inherently, the central CLI router natively streams using OpenAI, Anthropic, Ollama, LMStudio, and vLLM without generic middle-man abstractions breaking the tool calling schemas. Access any model quickly using /model <prefix:model> (e.g., /model openai:o3-mini, /model anthropic:claude-3-7-sonnet-latest, /model ollama:qwen2.5:14b).

YOLO Mode & Verbosity
By default, Parallax asks for confirmation before running bash commands or modifying files. If you trust the model with your current task, Shift+Tab toggles YOLO mode to bypass confirmations. Ctrl+O toggles verbose mode, letting you expand or collapse the noisy reasoning traces and raw tool outputs.

Commands

Parallax runs a built-in command palette. Type / in the prompt to bring up auto-suggestions:

  • /parallax - Spawns a Master Coordinator Agent to orchestrate fully parallel subagents for a large task.
  • /skills - Installs new semantic agent skills from skills.sh locally or globally.
  • /model - Switch the active Gemini model via an interactive list picker.
  • /new - Starts a clean slate.
  • /init - Scans your codebase and dumps an architectural overview into PARALLAX.md. The model reads this file on boot so it understands your local coding conventions.
  • /compact - Compresses history to save tokens.
  • /load - Opens an interactive session history picker to resume old threads.
  • /commit - Tells the model to analyze your current git diff, write a commit message, and push the changes.