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

@hyperscale-it/agent-workflow

v0.1.0

Published

Agent workflow runtime, dashboard, and preview registry CLIs.

Readme

@hyperscale-it/agent-workflow

Workflow runtime, dashboard, and preview registry CLIs for agent-facing workflow operation.

This package is the npm-side home of workflow mechanism code. Business workflow definitions, business node skills, and host application preview launchers stay outside this package.

Commands

Expected usage from agent skills or plugin commands:

PROJECT_ROOT="$PWD" pnpm --package=@hyperscale-it/agent-workflow dlx workflow-task <command> [options]
PROJECT_ROOT="$PWD" pnpm --package=@hyperscale-it/agent-workflow dlx generate-branch-name [options]
PROJECT_ROOT="$PWD" pnpm --package=@hyperscale-it/agent-workflow dlx workflow-dashboard activate [options]
PROJECT_ROOT="$PWD" pnpm --package=@hyperscale-it/agent-workflow dlx workflow-dashboard recover --project-root <repo-root> [options]
PROJECT_ROOT="$PWD" pnpm --package=@hyperscale-it/agent-workflow dlx workflow-preview <command> [options]

Dependency version pinning

All dependencies in package.json are exact versions (no ^ / ~ ranges).

Plugin skills and hooks invoke this package through pnpm dlx on every task-create / activate / resume / dashboard recovery. If dependencies were declared as ranges, each dlx run could resolve a newer matching version after an upstream publish, which:

  • changes the install content hash and misses the local pnpm store / dlx cache;
  • makes skill execution slower and less predictable across machines and sessions;
  • can introduce non-deterministic runtime behavior without a package version bump.

Pinning freezes the dependency graph for a given package release so repeated pnpm --package=@hyperscale-it/agent-workflow dlx … hits the same cached install until this package intentionally bumps those pins (and ships a new version).

When upgrading dependencies, bump the exact versions deliberately, run the package smoke checks, then publish a new @hyperscale-it/agent-workflow release—do not reintroduce open ranges for skill-facing installs.

Branch Name Resolution

generate-branch-name requires PROJECT_ROOT and returns the first available task branch for the generated <feat|fix|chore>/<task-name>.<env> name by checking local branch refs and querying the live origin with git ls-remote. When the preferred branch is occupied, it tries -2, -3, and so on through -50.

JSON output includes the final branch, preferred_branch, branch_adjusted, and branch_adjustment_reason.

Package Boundary

Included:

  • Workflow DSL task runtime.
  • Task creation, validation, status inspection, ready/next inspection, and state marking.
  • Task activation preflight under workflow-task activate-preflight.
  • Local dashboard server startup and recovery (workflow-dashboard activate / recover).
  • Preview registry management for <task-directory>/.workflow-dashboard/previews.yaml.
  • Task branch-name generation with local and live origin collision resolution.

Excluded:

  • Concrete business workflow YAML definitions.
  • Concrete workflow node skills.
  • Host application preview launchers.
  • Business dev server, mock, route, or verification logic.

Preview Registry

Dashboard reads preview entries from:

<task-directory>/.workflow-dashboard/previews.yaml

The registry is managed by workflow-preview:

workflow-preview add --task-dir <task-dir> --id app --title Preview --url http://127.0.0.1:3000
workflow-preview list --task-dir <task-dir>
workflow-preview remove --task-dir <task-dir> --id app

Dashboard

workflow-dashboard activate starts or restarts a local pm2-managed dashboard process for a task and prints a local URL such as http://127.0.0.1:5090.

workflow-dashboard recover reuses or restarts that process for the active task recorded in tasks/index.yaml#active_task.