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

@web42/stask

v0.2.3

Published

SQLite-backed task lifecycle CLI with Slack sync for AI agent teams

Readme

stask

SQLite-backed task lifecycle CLI with Slack sync — designed for AI agent teams.

stask enforces a spec-first workflow where tasks flow through defined statuses (To-Do, In-Progress, Testing, Ready for Human Review, Done) with guards that prevent illegal transitions. A human approves specs and merges PRs; AI agents (Lead, Workers, QA) handle everything in between. Every mutation syncs bidirectionally with a Slack List.

Prerequisites

  • Node.js 20+
  • GitHub CLI (gh)
  • A Slack app with Lists API access (SLACK_TOKEN)

Install

npm install -g @web42/stask

Setup

  1. Create the global data directory:
mkdir -p ~/.stask
  1. Copy the example config and customize it:
cp config.example.json ~/.stask/config.json
# Edit ~/.stask/config.json with your paths, Slack IDs, and agent names
  1. Create a .env file with your Slack credentials:
cat > ~/.stask/.env << 'EOF'
SLACK_TOKEN=xoxb-your-slack-bot-token
LIST_ID=your-slack-list-id
EOF
  1. Run any command to initialize the database:
stask list

Quick Start

# Create a task (uploads spec to Slack)
stask create --spec specs/my-feature.md --name "Add login page"

# Human approves (or via Slack checkbox)
stask approve T-001

# Lead creates subtasks and starts work
stask subtask create --parent T-001 --name "Build form component" --assign worker-1
stask transition T-001 In-Progress

# Worker marks subtask done (after commit + push)
stask subtask done T-001.1

# QA submits verdict
stask qa T-001 --report qa-reports/t001.md --verdict PASS

# Lead creates PR, transitions to review
stask transition T-001 "Ready for Human Review"

# Human merges PR on GitHub -> task auto-completes

Agent Integration

The skills/ folder contains role-specific documentation for AI agents:

  • skills/stask-general.md — Full framework overview, lifecycle, guards, CLI reference
  • skills/stask-lead.md — Lead agent workflow and decision trees
  • skills/stask-worker.md — Worker agent workflow and worktree rules
  • skills/stask-qa.md — QA agent testing workflow and report format

Add the relevant skill file to your agent's context to teach it the stask workflow.

Config

Config lives at ~/.stask/config.json. See config.example.json for the full schema.

| Field | Description | |-------|-------------| | specsDir | Directory where spec markdown files live | | projectRepoPath | Git repository for worktrees and PRs | | worktreeBaseDir | Where task worktrees are created | | human | Human reviewer (name, Slack ID, GitHub username) | | agents | Agent definitions (name, role, Slack user ID) | | slack | Slack List column IDs, status option IDs, type option IDs |

License

MIT