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

agentic-workforce

v0.1.1

Published

A multi-agent AI workforce that plans, delegates, and executes tasks through a company hierarchy of LLM agents

Downloads

287

Readme

Agentic Workforce

A multi-agent AI CLI workforce that plans, delegates, and executes tasks through a simulated company hierarchy of LLM agents.

$ agentic-workforce "Refactor the main service to use dependency injection"

Each agent operates in a PLAN → ACT → OBSERVE → REFLECT → VERIFY loop. Tasks flow from CEO → VP Engineering → Engineering Managers → Software Engineers → QA, with cost tracking and escalation at every level.

Quick Start

# Install globally
npm install -g agentic-workforce

# First run starts the configuration wizard
agentic-workforce

# Or jump straight in with a goal
agentic-workforce "Review the codebase and suggest improvements"

# Shorter alias
awf "Deploy the staging environment"

Configuration

On first run you'll be guided through the provider setup wizard. You can configure:

  • Multiple providers — OpenAI, Anthropic, Groq, Google, Ollama, Cerebras, OpenRouter, or custom
  • Tier mapping — assign different models to different agent tiers (frontier/mid/cheap-free)
  • Cost cap — daily spending limit
  • Custom models — enter any model ID for any provider
# Re-run the configuration wizard
agentic-workforce --configure

Tier Model

| Tier | Roles | Recommended | |------|-------|-------------| | Frontier | CEO, CTO | GPT-4o, Claude Sonnet 4 | | Mid | VPs, Directors, Managers | GPT-4o-mini, Claude Haiku | | Cheap-Free | Engineers, QA, Support | Qwen 2.5 Coder (Ollama), Gemini 2.5 Flash |

How It Works

  1. CEO receives your goal, decomposes it into tasks
  2. VP Engineering plans engineering tasks and assigns to managers
  3. Engineering Managers break tasks into subtasks for software engineers
  4. Software Engineers implement the work
  5. QA Engineer tests deliverables
  6. CEO performs final verification

Agent Loop

Each agent follows this cycle:

PLAN → ACT → OBSERVE → REFLECT → VERIFY

Tools available to agents: create_task, assign_task, escalate, log_decision, save_artifact, final_verify, get_department_status, request_user_clarification

Requirements

  • Node.js >= 18
  • At least one LLM provider configured (Ollama works out of the box with no API key)

License

MIT