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

task-factory

v0.6.0

Published

A lean manufacturing-inspired task queue system for AI agents

Readme

Task Factory

Task Factory is a queue-first work orchestrator for AI coding agents, built on Pi.

Philosophy

Task Factory is designed around one idea: the human is the bottleneck.

Instead of juggling many half-finished agent runs, you stage work in a queue and let the system sequence the work in order. Task factory's goal is to maximize your throughput, reduce context switching, and automate the completion of the task.

You're left with creating the idea and checking the output.

Task-level execution context and review

Idea backlog and queue sequencing

Workflow

Task Factory has a fairly opinionated workflow. Tasks progress through stages:

  • Backlog: Tasks are staged in the backlog as an agent is run to generate a plan. You can review the plan before marking it as ready, or drag it directly to Executing if it already has acceptance criteria (skips the Ready phase).
  • Ready: Once a task is ready for execution, place it in the ready queue, or let it Auto Promote from the backlog.
  • Executing: Tasks are executed one at a time by default (but that number is configurable). Optional pre-planning, pre-execution, and post-execution skills run around planning/implementation, and skills are now assignable in any lane. Starter skills include checkpoint, code-review, and update-docs (default post-execution order). New Task supports reusable model profiles (planning+execution model/thinking presets) for one-click model selection, including ordered planning/execution fallback model chains that auto-fail over on retryable provider instability (e.g., rate limits and 5xx errors). Default profile selection can be set from Global Settings and per-workspace Task Defaults (precedence: explicit form state → workspace default profile → global default profile → manual model defaults). Queue automation includes a provider/model-aware execution circuit breaker for repeated rate_limit/quota/auth failures, with cooldown + manual resume.
  • Completed: Once in completed state, you can review the task before archiving it.

This keeps agent output aligned to your review capacity and prevents overproduction.

YOLO by default

Task Factory runs with Pi-style YOLO mode behavior (no permission popups/approval gates). Agents can execute tools and shell commands with your local user permissions.

⚠️ Security warning: Task Factory currently has no sandbox boundary. Only run it on trusted repositories and in environments you control.

Foreman

The foreman is a special agent scoped to a workspace that helps you plan tasks and can ideate with you.

The foreman can:

  • Help you ideate and then break the task down that you can add to your queue.
  • Generate artifacts (web pages) to help give you a visual guide, design mockups, etc.

If you need help coming up with ideas or using Task Factory, ask the Foreman.

Installation

Option A: npm global install

npm install -g task-factory

Run it:

task-factory

Option B: run from source

git clone https://github.com/patleeman/task-factory.git
cd task-factory
npm install

Running from source

Production build

npm run build
npm start

Open http://127.0.0.1:3000.

Development mode

npm run dev

This starts shared, server, and client in watch/dev mode.

Useful CLI options

task-factory --help
task-factory --version
task-factory --no-open
PORT=8080 HOST=127.0.0.1 task-factory
HOST=0.0.0.0 task-factory  # Expose on your network (explicit opt-in)

Quality checks

npm run check:deadcode
npm run check:release

Documentation

Feature gallery

Provider setup supports all providers pi supports

Provider setup and login

The agent can ask you questions using a multiple choice Q&A widget. The Q&A panel now recovers reliably after returning to a workspace, and closes immediately on successful submit/abort (without waiting for follow-up realtime events).

Question/answer flow in planning

The foreman can generate visual artifacts

Artifacts generated during planning

Customize skills

Customizable execution skills

Then run those skills before or after tasks

Task skill sequencing

Attach sketches via embedded excalidraw

Embedded Excalidraw for visual intent

Tasks are archived and can be restored. Archived tasks contain all metadata including the full conversation

Task archive and history

After tasks are completed, a summary is generated to give you a quick overview over the completed work

Task completion summary and criteria review

Track token usage and statistics on a per-task basis

Task statistics and metrics

Global voice dictation with a keyboard shortcut using the browser's Web Speech API

Voice dictation support

License

MIT