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

@autosk/feature-dev

v0.1.3

Published

feature-dev (dev → review → docs → validator → accept) wired to @autosk/pi-agent roles and worktree isolation.

Downloads

764

Readme

@autosk/feature-dev

The shipped reference workflow for autoskd v2: a full feature-development cycle wired to @autosk/pi-agent roles and @autosk/worktree isolation. It replaces v1's feature-dev-generic bootstrap (design docs/plans/20260612-Bun-Daemon-Extensions.md §3.6, P6).

The workflow

dev ──▶ review ──▶ docs ──▶ validator ──▶ accept (human)
 ▲        │                    │
 └────────┘────────────────────┘   (review→dev and validator→dev bounce-backs)

| Step | Kind | Notes | | ----------- | ----------------------------- | ------------------------------------------------------------ | | dev | piAgent (name dev) | first step; implements the task | | review | piAgent (name review) | thorough code review (thinking: xhigh); bounces back to dev | | docs | piAgent (name docs) | documentation pass (leaves CHANGELOG.md to validator) | | validator | piAgent (name validator) | independent item-by-item verification; on success runs release hygiene (CHANGELOG [Unreleased] + a clean, committed worktree) before accept; bounces back to dev | | accept | statusStep("human") | the engine parks here for a human's final acceptance |

Each agent step is an inline @autosk/pi-agent value: the step key is the agent name (dev/review/docs/validator), and registering the workflow registers those agents — there is no separate agent registration.

  • Isolation: worktreeIsolation() — each task runs in its own git worktree.
  • Visit cap: onTransit rejects a bounce-back into dev once the task has already entered dev DEV_VISIT_CAP (5) times — the 6th dev entry is rejected (via ctx.visits("dev")), so a task that keeps failing review/ validation parks for a human instead of looping forever. The count is the persistent metadata.step_visits.dev the engine maintains; reset it with autosk metadata unset <id> step_visits to let a parked task bounce through dev again.

The role prompts live under prompts/ as .md files; the workflow reads each one and seeds it into the corresponding pi agent as its firstMessage. Each prompt ends with an Available transitions section that names the intended autosk_transit targets for that step (e.g. review → docs | dev), so the agent picks the right edge out of the conservative target superset the engine injects at runtime.

Discovery — how every project gets it

feature-dev is an npm package (declared via package.json#autosk.extensions). The daemon installs it into ~/.autosk/packages/ on first run (see the extensions docs → First-run bootstrap) and lists it in ~/.autosk/settings.json, so every project can enroll into feature-dev with no per-project files:

project-local (.autosk/extensions) ▸ global (~/.autosk/extensions) ▸ npm (settings.json)

A project- or global-level extension that registers a workflow/agent of the same name overrides the npm one (first-registered wins). To enroll a task:

autosk enroll <task-id> --workflow feature-dev

Configuration

This package exposes no per-step config knobs of its own — the agent behaviour is configured on the inline @autosk/pi-agent step values (model, thinking, extra args, …) inside featureDevWorkflow(). To customise, copy this extension into ~/.autosk/extensions/ (or your project's .autosk/extensions/) and edit the piAgent({...}) / featureDevWorkflow({...}) calls; your copy then overrides the npm one.

Exports

  • default export — the extension factory (registers the workflow, whose steps carry the four inline agents).
  • featureDevWorkflow(options?)WorkflowDefinition (a factory; tests inject a custom isolation).
  • DEV_VISIT_CAP — the dev re-entry cap constant.