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-feature-dev

v1.14.0

Published

Portable coding-agent workflows packaged as skills.

Readme

pi-feature-dev

Portable agent workflows and writing skills, packaged as Pi skills.

The feature-dev skill describes a tool-agnostic process for non-trivial feature work:

  • clarify requirements before coding
  • explore the existing codebase before design
  • compare implementation approaches and get approval
  • implement with one writer
  • review the diff from multiple perspectives
  • validate and summarize results

It does not require specific task-tracking, question, delegation, or review tools. If the current environment provides equivalent capabilities, use them; otherwise follow the same workflow directly in chat and with normal code tools.

The plan-exec skill executes implementation plan files task by task with isolated workers, Git task commits, internal reviews, finalize, and a portable run summary. It is portable across host agents that provide fresh-context isolated workers and Git access.

The final-check skill asks: “What else have we missed? Is there anything we need to check or fix?”

The i-have-adhd skill shapes responses for a reader with ADHD: it leads with the next action, keeps multi-step work bounded, restates progress, suppresses tangents, and makes completed work visible.

The grill skill runs a dependency-aware interview that researches facts, exhausts the current decision frontier round by round, sharpens domain language, and records agreed terminology and durable architectural decisions.

The ste skill drafts, rewrites, and reviews clear English with ASD-STE100 Simplified Technical English principles. It supports strict technical-documentation work and a general clarity mode for prompts, tool descriptions, error messages, status reports, translation-ready text, and agent instructions. The skill is Markdown-only and has no runtime dependency.

The creator-vibe skill turns incomplete creative briefs and implicit intent into concrete work without losing the creator's taste, feeling, or human focus. It applies to creative technical and everyday work, while staying out of factual, mechanical, exact, or fully specified tasks.

The prototype skill builds disposable logic or UI experiments that answer one design question before production implementation. It follows the current project and adapts its handoff, preview, task, and source-control steps to the capabilities of the current agent environment.

The visual-recap skill turns a plan or completed non-trivial change into an evidence-backed visual review aid. It helps a reviewer see the outcome, affected system parts, risk, and the best place to inspect first. It adapts to the current host agent, uses Mermaid for portable diagrams, and keeps an inline fallback.

Install

npx skills add https://github.com/r13v/pi-feature-dev

From npm:

pi install npm:pi-feature-dev

From this local repo:

pi install ~/Projects/pi-feature-dev

Or for one run only:

pi -e ~/Projects/pi-feature-dev

If installing for a project, run from that project and use Pi's local install flag if desired:

pi install -l ~/Projects/pi-feature-dev

Optional companion packages

No companion package is required. Optional Pi packages can improve specific parts of the workflow, such as progress tracking, structured choices, delegation, large-output handling, web/code research, or session coordination.

Credits

The original skills and workflows that informed these portable versions came from:

Usage

Skill command in Pi:

/skill:feature-dev Add OAuth login with Google and GitHub

Natural language also works when Pi's skill matcher triggers:

Use feature-dev to implement API rate limiting.

Carry an incomplete creative brief into the work itself:

/skill:creator-vibe Make this onboarding feel calm, capable, and unmistakably ours.

Create a visual review aid for a plan or completed change:

/skill:visual-recap Show the architecture impact of the current change.

Build a disposable prototype to answer one design question:

/skill:prototype Compare three structurally different settings-page layouts.

The files under skills/*/SKILL.md are portable Markdown and can be adapted for other agent environments.

Run a plan with plan-exec:

/skill:plan-exec docs/plans/20260518-example.md

Run a final completeness check on the current work:

/skill:final-check

Enable ADHD-oriented output for the rest of the session:

/skill:i-have-adhd

Disable it with stop adhd mode or normal mode.

Stress-test an idea before planning or implementation:

/skill:grill Challenge the design for usage-based billing.

Rewrite technical or operational English:

/skill:ste Rewrite this maintenance instruction as an STE-aligned draft.

Use STE principles for general agent communication:

/skill:ste Rewrite this error message so another agent can parse it reliably.

This package is intentionally skill-only. It does not provide prompt template shortcuts; use /skill:<name> for explicit Pi invocation.

Feature-dev workflow

The feature-dev skill guides a coding assistant through a seven-phase process:

  1. Discovery — understand the feature and establish lightweight progress tracking
  2. Codebase exploration — inspect relevant code and patterns, optionally with read-only helper passes
  3. Clarifying questions — resolve ambiguity before design
  4. Architecture design — compare minimal, clean, and pragmatic approaches
  5. Implementation — only after approval, with a single writer
  6. Quality review — inspect the diff from correctness, validation, and maintainability perspectives
  7. Validation and summary — run focused checks and summarize changes

STE modes

The ste skill selects one of two modes:

  • Strict STE applies Issue 9 rules to regulated, operational, maintenance, and safety-critical documentation. Exact verification requires the official dictionary and the applicable project glossary.
  • STE clarity transfers the same clarity discipline to other technical text without claiming formal ASD-STE100 compliance.

The skill loads its detailed writing rules, review checklist, text-type patterns, and before/after examples only when they are relevant to the request. Standard provenance, design references, and source links stay in skills/ste/README.md, outside the agent's writing context.

Package contents

pi-feature-dev/
├── package.json
└── skills/
    ├── creator-vibe/
    │   ├── agents/openai.yaml
    │   └── SKILL.md
    ├── feature-dev/
    │   ├── agents/openai.yaml
    │   └── SKILL.md
    ├── final-check/
    │   ├── agents/openai.yaml
    │   └── SKILL.md
    ├── grill/
    │   ├── agents/openai.yaml
    │   ├── SKILL.md
    │   ├── CONTEXT-FORMAT.md
    │   └── ADR-FORMAT.md
    ├── i-have-adhd/
    │   ├── agents/openai.yaml
    │   └── SKILL.md
    ├── plan-exec/
    │   ├── agents/openai.yaml
    │   ├── SKILL.md
    │   ├── references/
    │   └── scripts/
    ├── plan-make/
    │   ├── agents/openai.yaml
    │   └── SKILL.md
    ├── plan-review/
    │   ├── agents/openai.yaml
    │   └── SKILL.md
    ├── prototype/
    │   ├── agents/openai.yaml
    │   ├── LOGIC.md
    │   ├── UI.md
    │   └── SKILL.md
    ├── ste/
    │   ├── agents/openai.yaml
    │   ├── references/
    │   │   ├── before-after.md
    │   │   ├── checklist.md
    │   │   ├── use-cases.md
    │   │   └── writing-rules.md
    │   ├── README.md
    │   └── SKILL.md
    └── visual-recap/
        ├── agents/openai.yaml
        └── SKILL.md

Release

Releases are automated with GitHub Actions and semantic-release.

  • Push conventional commits to main.
  • With no existing v* tags, the first release will be v1.0.0.
  • After that, semantic-release calculates the next version from commit messages.
  • The workflow publishes to npm using NPM_TOKEN.
  • GitHub release notes and git tags are created automatically.

Examples:

fix: clarify approval rules
feat: add review synthesis guidance
feat!: redesign workflow phases

Development

Validate the package shape:

npm test

Then test in Pi without installing globally:

pi -e ~/Projects/pi-feature-dev