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

issy

v0.8.1

Published

AI-native issue tracking. Markdown files in .issues/, managed by your coding assistant.

Readme


How It Works

issy gives AI coding assistants a skill for managing issues. Just talk naturally:

"Create a bug for the login redirect issue, high priority"

"What issues are open?"

"Close the auth bug, it's fixed"

The assistant creates, searches, updates, and closes issues for you. Issues are stored as markdown files in .issy/issues/ — readable, diffable, and committed with your code.

Install the Skill

issy skill install

Or, if you haven't installed issy yet:

npx skills add miketromba/issy

That's it. Your AI assistant can now manage issues in any repo.

Why Markdown?

  • Portable — No vendor lock-in, no database, no accounts
  • Git-native — Issues travel with your code, appear in diffs and PRs
  • Transparent — AI agents can read and write issues directly
  • Works offline — No network dependency

Installing issy

issy can be installed both globally and in your repository. We recommend installing both ways so you can take advantage of fast, convenient workflows and a stable version for all developers in your repository.

Global installation

A global install of issy brings flexibility and speed to your local workflows.

# npm
npm install issy --global

# pnpm
pnpm add issy --global

# yarn
yarn global add issy

# bun
bun install issy --global

Once installed globally, you can run commands from your terminal:

issy                          # Start the web UI
issy list                     # List open issues (roadmap order)
issy next                     # Show next issue to work on
issy create --title "Bug"     # Create an issue

Repository installation

When collaborating with other developers, it's a good idea to pin versions. Add issy as a devDependency in the root of your repository:

# npm
npm install issy --save-dev

# pnpm
pnpm add issy --save-dev --ignore-workspace-root-check

# yarn
yarn add issy --dev --ignore-workspace-root-check

# bun
bun add issy --dev

You can continue to use your global installation to run commands. Global issy will defer to the local version if it exists.


Usage

Web UI

issy

Opens a local read-only UI at http://localhost:1554 for browsing issues.

CLI

issy init                     # Create .issy/issues/ directory
issy init --seed              # Create with a welcome issue
issy list                     # List open issues (roadmap order)
issy next                     # Show next issue to work on
issy search "auth"            # Fuzzy search
issy read 0001                # View issue
issy create --title "Bug" --after 0002    # Create issue after #0002
issy create --title "Bug" --body "Details here" --last  # Create with body content
issy update 0001 --before 0003            # Reposition in roadmap
issy update 0001 --body "New details"     # Replace body content
issy close 0001               # Close issue
issy reopen 0001 --after 0004 # Reopen and place in roadmap
issy skill install            # Install the AI skill
issy migrate                  # Migrate from .issues/ to .issy/
issy --version                # Check version

Run issy help for full options.

Roadmap Ordering

Every open issue has a position in the roadmap — a strict ordering that reflects logical dependencies. When creating or reopening an issue while others are open, you must specify where it fits:

issy create --title "Add auth" --after 0001     # Insert after issue #0001
issy create --title "Fix bug" --before 0003     # Insert before issue #0003
issy create --title "Urgent" --first            # Insert at the beginning
issy create --title "Backlog item" --last       # Insert at the end

issy next always returns the first open issue in roadmap order — the next thing to work on.

issy list sorts by roadmap order by default. Other sort options are available:

issy list --sort priority     # Sort by priority instead
issy list --sort created      # Sort by creation date

Hooks

issy supports optional hook files in .issy/ that inject context into stdout after successful operations. The file contents are printed directly, making them visible to AI agents in their command output.

| Hook file | Triggered after | |-----------|----------------| | on_create.md | Creating an issue | | on_update.md | Updating an issue | | on_close.md | Closing an issue |

Use these for post-action reminders like updating documentation, running checks, or prompting the agent with project-specific instructions.

Monorepo Support

issy automatically walks up from the current directory to find an existing .issy/ folder. This means you can run npx issy from any subdirectory (e.g., packages/foo/) and it will find and use the repo root's issues.

# In a monorepo, issues are typically at the root:
my-monorepo/
  .issy/              # ← issy finds this automatically
    issues/
    on_create.md
    on_update.md
    on_close.md
  packages/
    frontend/         # ← works from here
    backend/          # ← or here

Migration from v0.4

If upgrading from v0.4.x (which used .issues/), run:

issy migrate

This moves your issues to .issy/issues/ and assigns roadmap order to all open issues.


Issue Format

---
title: Fix login redirect
priority: high
scope: medium
type: bug
status: open
order: a0
created: 2025-01-15T10:30:00
---

## Problem

After OAuth login, users are redirected to `/callback` but the
session isn't established, causing a redirect loop.

| Field | Values | |-------|--------| | priority | high, medium, low | | scope | small, medium, large (optional) | | type | bug, improvement | | status | open, closed | | labels | comma-separated (optional) | | order | fractional index key (managed by issy) |

Configuration

| Variable | Description | Default | |----------|-------------|---------| | ISSY_DIR | Issy directory path | ./.issy | | ISSUES_PORT | UI server port | 1554 |

packages/
  cli/   → CLI (issy)
  core/  → Storage library (@miketromba/issy-core)
  ui/    → Web UI + API (@miketromba/issy-app)
bun install && bun run dev

License

MIT