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

v0.1.15

Published

Structured development workflow commands for Pi coding agent

Downloads

1,925

Readme

@pi-unipi/workflow

Structured development workflow commands for Pi coding agent.

Overview

19 slash commands that guide work from idea to completion. Each command maps to a skill that instructs the agent on what to do.

Commands

| Command | Description | Format | |---------|-------------|--------| | /unipi:brainstorm | Collaborative discovery, write design spec | <string> | | /unipi:plan | Create implementation plan from specs | specs:<path> <string> | | /unipi:work | Execute plan in worktree | worktree:<branch> specs:<path> <string> | | /unipi:review-work | Review work, run checks, mark remarks | plan:<path> <string> | | /unipi:consolidate | Save learnings, craft skills | <string> | | /unipi:worktree-create | Create git worktree | <string> | | /unipi:worktree-list | List all unipi worktrees | — | | /unipi:worktree-merge | Merge worktrees to main | <branch> <string> | | /unipi:consultant | Expert advisory | <string> | | /unipi:quick-work | Fast single-task execution | <string> | | /unipi:gather-context | Research codebase, prepare for brainstorm | <string> | | /unipi:document | Generate documentation | <string> | | /unipi:scan-issues | Find bugs, anti-patterns, security issues (passive scan) | <string> | | /unipi:debug | Active bug investigation, root-cause analysis | <string> | | /unipi:fix | Fix bugs using debug reports | debug:<path> <string> | | /unipi:quick-fix | Fast bug fix without debug report | <string> | | /unipi:research | Read-only research with bash access | <string> | | /unipi:chore-create | Create reusable chore definition | <string> | | /unipi:chore-execute | Execute a saved chore | chore:<path> <string> |

Workflow

brainstorm → plan → work → review-work → consolidate
    ↑                                        │
    └────────────────────────────────────────┘
                    (loop)

Typical Flow

# 1. Brainstorm an idea
/unipi:brainstorm redesign auth system

# 2. Create implementation plan
/unipi:plan specs:2026-04-26-auth-redesign-design

# 3. Execute plan in worktree
/unipi:work worktree:feat/auth specs:2026-04-26-auth-redesign-plan

# 4. Review what was built
/unipi:review-work plan:2026-04-26-auth-redesign-plan

# 5. Consolidate learnings
/unipi:consolidate

Quick Tasks

# For small tasks that don't need full flow
/unipi:quick-work fix typo in README

Research & Advisory

# Gather context before brainstorming
/unipi:gather-context how we handle errors

# Get expert advice
/unipi:consultant should we use GraphQL or REST?

# Generate documentation
/unipi:document the auth module

# Deep research with bash access
/unipi:research TypeScript 5.0 migration path

# Find issues (passive scan)
/unipi:scan-issues focus on security

Bug Fixing

# Debug and fix a bug (full flow)
/unipi:debug TypeError in auth middleware
/unipi:fix debug:2026-04-28-auth-typeerror-debug

# Quick fix for simple bugs
/unipi:quick-fix fix null check in user validation

Chores

# Create reusable chores
/unipi:chore-create push to github main
/unipi:chore-create publish package to npm

# Execute saved chores
/unipi:chore-execute chore:push-github-main
/unipi:chore-execute chore:publish-npm

Worktree Management

# Create worktree
/unipi:worktree-create feat/new-feature

# List worktrees
/unipi:worktree-list

# Merge back to main
/ununi:worktree-merge feat/new-feature

Directory Structure

.unipi/
├── docs/
│   ├── specs/          ← brainstorm output (design specs)
│   ├── plans/          ← plan output (implementation plans)
│   ├── generated/      ← document output (docs, guides)
│   ├── reviews/        ← review remarks (in plan docs)
│   ├── debug/          ← debug reports
│   ├── fix/            ← fix reports
│   ├── quick-work/     ← quick-work summaries
│   └── chore/          ← reusable chore definitions
├── memory/             ← consolidate memory
├── ralph/              ← ralph loop state
└── worktrees/          ← git worktrees
    ├── feat/auth/
    └── fix/login-bug/

Integration

  • @pi-unipi/core — shared constants, events, utilities
  • @pi-unipi/memory — memory hooks for consolidate (optional)
  • @pi-unipi/subagents — parallel research for gather-context, scan-issues (optional)
  • @pi-unipi/ralph — loop integration for long-running tasks (optional)
  • @pi-unipi/ask-user — structured user input for all skills (optional)
  • @pi-unipi/mcp — MCP server tools for all skills (optional)
  • @pi-unipi/web-api — web research for research-type skills (optional)
  • @pi-unipi/compactor — compactor tools for main agent (optional)

See docs/coexist-triggers.md for detailed integration behavior.

Installation

npm install @pi-unipi/workflow

Add to pi settings:

{
  "extensions": ["@unipi/workflow"]
}

License

MIT