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-unipi/unipi

v2.0.13

Published

All-in-one extension suite for Pi coding agent

Readme

Unipi

20 workspace packages that turn Pi into a full development workstation. Structured workflows, persistent memory, parallel agents, web research, notifications, context management, command autocomplete, and a live status bar — all wired together through a shared event system.

One command installs everything:

pi install npm:@pi-unipi/unipi

What You Get

Workflow — 20 commands that take ideas to shipped code. Brainstorm, plan, execute in worktrees, review, consolidate. The agent follows skill files step by step.

Ralph — Long-running loops that persist across sessions. Start a task, iterate through checklist items, resume after crashes. Progress tracked, state saved.

Memory — SQLite + vector search stores facts, preferences, and decisions. Project-scoped and global. The agent remembers what you told it last week.

Compactor — Zero-LLM context engine. 6-stage pipeline hits 95%+ token reduction at zero API cost. Session continuity, percentage auto-compaction, session recall, and sandbox execution.

CocoIndex — Project indexing and semantic code search backed by CocoIndex and LanceDB. Agent tools and slash commands for status, init, update, and search.

Subagents — Parallel execution with file locking. Spawn background agents to research, fix, or build while the main agent keeps going.

Web API — Web search, page reading, content summarization. Smart-fetch engine with browser-grade TLS fingerprinting — free, no API key. Paid providers as fallbacks.

MCP — Browse 7,800+ MCP servers, add them interactively. Tools from servers register automatically as Pi tools.

Notify — Push notifications to native OS, Gotify, Telegram, or ntfy. Per-event platform routing plus native focus suppression so alerts can stay quiet while Pi is already focused.

Footer — Persistent status bar showing live stats from every package. Responsive layout, presets, per-segment toggling, and terminal-aware color fallback.

BTW — Side conversations that run in parallel. Ask questions without interrupting the main agent.

Ask User — Structured input for decision gates. Single-select, multi-select, freeform. The agent asks instead of guessing.

Milestone — Track project goals across workflow cycles. MILESTONES.md stays in sync with specs, plans, and completed work.

Kanboard — Web UI and TUI overlay for kanban boards. Parses all workflow documents into cards with progress indicators.

Info Screen — Dashboard overlay showing module status, tools, and custom data groups.

Utility — Environment info, diagnostics, cleanup, name badge, and Shiki-powered diff rendering.

Updater — Checks npm for new versions on session start. Changelog browser and readme browser in TUI overlays.

Input Shortcuts — Keyboard shortcuts via vim-style chord overlay. Stash/restore, undo/redo, clipboard, thinking toggle.

Command Enchantment — Enhanced /unipi:* autocomplete with full command names, package tags, descriptions, colors, and registry audits that catch stale command docs before release.

Architecture

Packages discover each other through events, not direct imports. Core defines the event types and constants. Every package emits MODULE_READY on load and subscribes to events it cares about.

┌─────────────────────────────────────────────────────────┐
│                        Core                             │
│              Events, Constants, Utilities                │
└───────────────────────┬─────────────────────────────────┘
                        │
    ┌───────────────────┼───────────────────┐
    │                   │                   │
    ▼                   ▼                   ▼
┌─────────┐       ┌──────────┐       ┌──────────┐
│ Workflow │       │ Compactor│       │  Memory  │
│  Skills  │       │  Engine  │       │  Store   │
└────┬─────┘       └────┬─────┘       └────┬─────┘
     │                  │                  │
     └──────────────────┼──────────────────┘
                        ▼
                  ┌──────────┐
                  │  Footer  │ ← Subscribes to all events
                  └──────────┘

Coexists triggers enhance behavior when packages are installed together. Workflow skills detect subagents and inject parallel strategies. All skills get MCP tools when MCP is installed. Web-api adds web research to investigation skills. Each package works standalone.

Commands (Brief)

| Category | Prefix | Examples | |----------|--------|----------| | Workflow | /unipi: | brainstorm, plan, work, review-work, consolidate, quick-work, debug, fix | | Ralph | /unipi:ralph | start, stop, resume, status | | Memory | /unipi:memory- | process, search, consolidate, forget | | Compactor | /unipi: | lossless-compact, session-recall, compact-stats, compact-settings, compact-preset, compact-help | | CocoIndex | /unipi:cocoindex- | init, update, status, search, settings | | Notify | /unipi:notify- | settings, test, set-tg, set-ntfy | | MCP | /unipi:mcp- | add, settings, sync, status | | Web | /unipi:web- | settings, cache-clear | | BTW | /unipi:btw | question, btw-new, btw-tangent, btw-inject, btw-summarize | | Utility | /unipi: | env, doctor, status, cleanup, badge-name | | Milestone | /unipi:milestone- | onboard, update | | Kanboard | /unipi:kanboard | toggle, doctor | | Footer | /unipi:footer | toggle, settings | | Updater | /unipi: | readme, changelog, updater-settings | | Info | /unipi:info | dashboard, settings |

Agent Tools (Brief)

| Tool | Package | What It Does | |------|---------|--------------| | ralph_start / ralph_done | ralph | Loop control | | spawn_helper / get_helper_result | subagents | Parallel agents | | memory_store / memory_search / memory_delete | memory | Memory CRUD | | web_search / web_read / web_llm_summarize | web-api | Web research | | notify_user | notify | Push notifications | | ask_user | ask-user | User input | | compact / session_recall / sandbox | compactor | Context management | | ctx_batch / ctx_env | utility | Batch execution, env info |

Development

git clone https://github.com/Neuron-Mr-White/unipi.git
cd unipi
npm install
npm run typecheck

Project Structure

unipi/
├── packages/
│   ├── core/           # Shared constants, events, utilities
│   ├── workflow/       # 20 skill-based commands
│   ├── ralph/          # Iterative loops
│   ├── memory/         # SQLite + vector search
│   ├── compactor/      # Context engine
│   ├── cocoindex/      # Project indexing and semantic search
│   ├── subagents/      # Parallel execution
│   ├── web-api/        # Web research
│   ├── mcp/            # MCP server integration
│   ├── notify/         # Push notifications
│   ├── footer/         # Status bar
│   ├── btw/            # Side conversations
│   ├── ask-user/       # Structured input
│   ├── milestone/      # Goal tracking
│   ├── kanboard/       # Kanban visualization
│   ├── info-screen/    # Dashboard overlay
│   ├── utility/        # Diagnostics, diff rendering
│   ├── updater/        # Auto-update, browsers
│   ├── input-shortcuts/ # Keyboard shortcuts
│   ├── autocomplete/   # Enhanced command autocomplete
│   └── unipi/          # Umbrella package
├── .unipi/             # Runtime data (specs, plans, worktrees)
└── CHANGELOG.md

Adding a Package

  1. Create packages/your-package/ with package.json and index.ts
  2. Depend on @pi-unipi/core for constants and events
  3. Emit MODULE_READY on load
  4. Add to umbrella package dependencies and imports
  5. Run npm run typecheck

Running Tests

npm test

Contributing

  1. Fork the repo
  2. Create a feature branch
  3. Make your changes
  4. Run npm run typecheck and npm test
  5. Submit a pull request

Keep packages focused. One package, one responsibility. Use events for cross-package communication — no direct imports between packages.

License

MIT