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

agents-scrum-master

v1.1.0

Published

Auto-setup agent-tasks pipeline for any project. One command to initialize agent-driven workflow management.

Readme

agent-scrum-master

License: MIT npm

One command to auto-configure agent-tasks pipeline for any project.

Bootstraps agent-tasks — a pipeline task manager for AI agents — with a single npx call. Sets up MCP integration, project structure, and gitignore automatically. Works with Claude Code, Cursor, Windsurf, and any MCP client.


Features

  • One-command setupnpx agent-scrum-master
  • 📁 Project-scoped — isolated task database per project (not global)
  • 🤖 Agent-agnostic — works with Claude Code, Cursor, Windsurf, any MCP client
  • 🔗 Ticket system ready — optional Jira integration flags
  • 🧹 Automatic cleanup — handles .gitignore and directory structure
  • 📊 Dashboard included — real-time kanban at localhost:3422

Quick Start

Option 1: npx (one-liner, no install)

cd /path/to/your/project
npx agent-scrum-master

Option 2: npm install (global)

npm install -g agent-scrum-master
cd /path/to/your/project
agent-scrum-master

What It Does

Runs in your project root and:

  1. ✓ Creates .mcp.json with Claude Code MCP server config
  2. ✓ Creates .agent-tasks/ directory for local task database
  3. ✓ Adds .agent-tasks/ to .gitignore
  4. ✓ Creates .claude/skills/agents-scrum-master.md — skill documentation
  5. ✓ Pins [email protected] for consistent MCP behavior

Result: Commit .mcp.json, open the project in Claude Code, approve the server once, then agents have full access to task pipeline.


Dependencies

agents-scrum-master pins [email protected] in the MCP config to ensure consistent behavior across sessions.

To use a different version, edit .claude/settings.json and change args: ['agent-tasks@VERSION'] to your desired version.


Commands

# Initialize (default)
npx agent-scrum-master

# Open dashboard in browser
npx agent-scrum-master dashboard

# With Jira integration
npx agent-scrum-master --jira-url=https://jira.company.com --jira-project=GROWTH

# Check status
npx agent-scrum-master status

# Remove setup
npx agent-scrum-master reset

# Verbose output
npx agent-scrum-master --verbose

# Overwrite existing config
npx agent-scrum-master --force

Usage in Your Agent

Once initialized, open the project in Claude Code or Cursor:

View dashboard

Open in browser with one command:

npx agent-scrum-master dashboard

Or navigate manually to http://localhost:3422

Create a task

Use the MCP tool: task_create(title: "Build login flow", description: "...", project: "MyProject")

Advance stages

Use task_stage(id: "task-123", stage: "implement")

See agent-tasks API docs for full tool reference.


Project Structure

After running agent-scrum-master:

your-project/
├── .mcp.json                  # MCP server config (commit this!)
├── .claude/
│   └── skills/
│       └── agents-scrum-master.md   # Skill for agents
├── .agent-tasks/              # Task database (git-ignored)
│   └── tasks.db
├── .gitignore                 # Updated with .agent-tasks/
└── ... (your code)

Commit .mcp.json to git — teammates inherit the setup automatically. On first Claude Code session, approve the MCP server once and it auto-connects thereafter.


Jira Integration (Optional)

Add Jira sync to your project:

npx agent-scrum-master \
  --jira-url=https://jira.company.com \
  --jira-project=GROWTH

This sets environment variables in .claude/settings.json. Agent-tasks can then sync task completions to Jira.


Multi-Project Setup

Each project gets its own isolated database:

project-a/
└── .agent-tasks/tasks.db       # Isolated to project-a

project-b/
└── .agent-tasks/tasks.db       # Isolated to project-b

No cross-project bleed — dashboards run on the same port but serve different DBs by project.


Requirements

  • Node.js >= 18
  • Agent supporting MCP (Claude Code, Cursor, Windsurf, etc.)

Troubleshooting

Dashboard doesn't start

# Check if agent-tasks is installed
npx agent-tasks --help

# Manually start dashboard
cd your-project
npx agent-tasks

Reset and reinitialize

npx agent-scrum-master reset
npx agent-scrum-master --force

Check status

npx agent-scrum-master status

Development

# Clone
git clone https://github.com/ashishdogra/agent-scrum-master.git
cd agent-scrum-master

# Test locally
node bin/cli.js --verbose

# Publish to npm
npm publish

License

MIT — see LICENSE


See Also