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

@gerdloos/dev-flow-skill

v0.3.1

Published

A structured project development workflow skill for Pi's LLM harness. Handles rewrites, staging, and multi-target deployment.

Readme

Dev Flow Skill

"Consider it devved."

⚠️ Under active development. The skill is evolving. Script behavior and documentation may change between versions. The LLM has comprehensive internal docs — when in doubt, ask it to explain what a script does before proceeding.

Install on Pi

pi install npm:@gerdloos/dev-flow-skill

A structured project development workflow for people who don't have one.

What it is

Dev Flow adds a clean development pipeline to your project: a workspace where changes happen, a deliverable that's always release-ready, and deployment targets you can trigger with a single sentence. The LLM handles the mechanics — you stay in control.

Quick start

  1. Tell the LLM: "set up dev flow"
  2. Answer one question: "What is this project about?"
  3. Start developing — the LLM edits in dev/

Under the hood, the LLM runs scripts that merge proven work from dev/ into the always-deployable devved/, commit changes, and keep the workspace tidy. The skill also handles staging through targets — think publishing to GitHub with a release action, or building a container image. You create a staging script for each target once, and the LLM can help with that.

Why use it?

The structure is simple, the rules are few, and the LLM follows them. The skill provides:

  • Easiest on a fresh project. You've got an empty folder. The skill scaffolds the directory structure and configuration. You provide the code, the LLM provides the organization.

  • Knows when to back off. Point it at an existing project folder and a script analyzes what's there without touching anything. The LLM can then help you establish the dev folders and the rest of the structure.

  • Safe by default. Changes stay sandboxed until proven. Merges require confirmation before cleaning anything up. Nothing gets lost.

  • One project, many outputs. The same codebase can target local install, GitHub releases, or any other destination you configure. Each target is a script — add as many as you need.

  • Your tools stay yours. It wraps your existing project. Git, your editor, your build tools — nothing changes except the structure around them.

Who it's for

If any of these sound familiar:

  • "I keep all my project files in one folder and it's getting messy"
  • "I'm not sure when my code is ready to release"
  • "I want the LLM to handle project organization, not just write code"
  • "I have a simple dev setup and want order without complexity"

Then this skill is for you. It's built for beginning and solo developers who want structure without ceremony.

What your project looks like

your-project/
├── dev/              ← where work happens, the LLM edits here
│   └── skills/
│       └── your-skill/
│           ├── SKILL.md
│           ├── scripts/
│           └── references/
├── devved/           ← "consider it devved" — the deliverable, always release-ready
├── staged/           ← temporary deployment snapshot (auto-generated, gitignored)
├── publish/          ← ephemeral mirror assembly for npm publishing (gitignored)
├── docs/             ← project planning, notes, issues
├── temp-research/    ← cloned repos, reference material (gitignored)
├── staged-how/       ← deployment scripts and configs
├── .dev-flow-skill.json   ← the skill reads this to know your project
└── .dev-flow-skill.ignore ← files and folders to skip (like .gitignore)

No build systems, no config files to learn, no lock-in. The skill creates this structure, the LLM maintains it, you use it.

Status

Under active development. The skill is fully functional and in daily use. User documentation is limited while the skill evolves; the LLM has comprehensive internal documentation and handles everything.