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

@arenahito/piggychick

v0.2.2

Published

**A friendly viewer for AI-generated planning documents.**

Readme

PiggyChick

A friendly viewer for AI-generated planning documents.

PiggyChick

What is this?

When coding with AI agents (such as Claude Code, Codex CLI, or OpenCode), there are "skills" that help you follow a plan-then-implement workflow.

These skills automatically generate planning documents (PRDs) in a .tasks directory. PiggyChick displays these documents in a clean, browsable web UI.

  • Beautiful Markdown rendering
  • Visual dependency graphs for tasks
  • Multi-project support

Installation

Requires:

# Try it instantly (no install needed)
npx github:arenahito/piggychick

# Install globally (recommended)
npm install -g github:arenahito/piggychick
pgch

Usage

Register a project

Add projects you want to view in PiggyChick:

# Register current directory
pgch add

# Register a specific path
pgch add ./path/to/project

Start the viewer

pgch

Open http://localhost:42525 in your browser to view registered projects and their planning documents.

Other commands

pgch list     # List registered projects
pgch remove   # Unregister current directory
pgch config   # Show config file location

Compatible Skills

PiggyChick works with .tasks directories created by these skills:

  • impl-plan: Creates planning documents
  • impl-do: Implements tasks from planning documents

Skills are located in skills/impl/. They work with AI agents that support custom skills, including Claude Code, Codex CLI, OpenCode, and others.

UI Overview

Screenshot

| Element | Description | |---------|-------------| | Sidebar | Project and PRD list with progress indicators | | Main panel | Rendered plan markdown and task dependency graph views |

Changes under .tasks are picked up automatically in the UI while the viewer is open.

Dependency Graph Controls

  • + / - buttons: Zoom in and out
  • 100% button: Reset zoom to default
  • Ctrl/Meta + mouse wheel: Zoom at pointer position
  • Drag inside the graph viewport: Pan to hidden graph areas

For Developers

Required Files

Each PRD directory must contain:

  • plan.md - The planning document
  • plan.json - Task definitions and dependencies
    • Preferred progress field: tasks[].status (pending, in_progress, done)
    • Backward compatibility: tasks[].passes is still supported when status is absent
    • Precedence rule: when both status and passes exist, status is used

Additional .md files are shown as extra documents when present.

Config File

Location: ~/.config/piggychick/config.jsonc

{
  // PiggyChick config
  "tasksDir": ".tasks",
  "roots": [
    { "path": "/path/to/project" },
    { "path": "/path/to/other-project", "tasksDir": ".tasks-prd" }
  ]
}
  • tasksDir: Task directory name (default: .tasks)
  • roots: List of projects to monitor. Each project can override tasksDir

Release Automation

  • Use Conventional Commits for changes that should appear in release notes.
  • release-please runs on pushes to main and opens/updates a release PR.
  • Merging the release PR triggers automated lint, typecheck, test, build, and npm publish.
  • npm publishing uses Trusted Publishing (OIDC). Configure npm Trusted Publisher for .github/workflows/release-please.yml.

Development Setup

bun install   # Install dependencies
bun run dev   # Start dev server (http://localhost:3000)

Other Commands

bun run build      # Production build
bun run lint       # Run linter
bun run fmt        # Format code
bun run typecheck  # Type check
bun test           # Run tests