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

@jtan15010/dash

v2.0.0

Published

Dash - Agent Orchestration Platform

Readme

Dash v2.0 - Agent Orchestration Platform

Multi-agent orchestration for complex AI tasks

TypeScript Node.js License: MIT

A production-ready platform for orchestrating multiple AI agents to collaborate on complex tasks.

Features | Quick Start | Documentation | Contributing


Features

  • Agent Management - Spawn, monitor, and terminate AI agents
  • Swarm Orchestration - Coordinate groups of agents working together
  • Real-time Monitoring - WebSocket-based event streaming
  • Workflow Engine - Define and execute multi-step workflows
  • Session Persistence - SQLite-backed state management
  • Observability - Built-in metrics, tracing, and logging

Quick Start

Prerequisites

  • Node.js >= 20.0.0
  • npm >= 10.0.0

Installation

# Clone the repository
git clone https://github.com/davidkimai/dash.git
cd dash

# Install dependencies
npm install

# Build the project
npm run build

# Start the CLI
./dist/src/index.js --help

CLI Usage

# Check version
dash --version

# List running agents
dash agent list

# Spawn an agent
dash agent spawn "Analyze this codebase and find all TODO comments"

# Create a swarm
dash swarm create --name "research-team" --task "Research AI agents"

# Monitor system status
dash status

Programmatic API

import { createApp } from './dist/src/api/index.js';

const app = await createApp({ port: 7373 });

// Spawn an agent
const response = await fetch('http://localhost:7373/api/agents', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    model: 'kimi-k2.5',
    task: 'Write a comprehensive report on renewable energy'
  })
});

Project Structure

dash/
├── src/
│   ├── api/              # REST API routes
│   ├── cli/              # CLI commands
│   ├── core/             # Core orchestration logic
│   ├── storage/           # Database and persistence
│   ├── workflow/          # Workflow engine
│   └── ...
├── dist/                 # Compiled JavaScript
├── tests/                 # Test suites
├── docs/                 # Documentation
└── package.json

Development

# Install dependencies
npm install

# Run in development mode
npm run dev

# Run type checking
npm run typecheck

# Run tests
npm test

# Build for production
npm run build

Documentation

Docker

# Build and run with Docker
docker build -t dash .
docker run -p 7373:7373 dash

Publishing to npm

# Update version
npm version patch

# Build
npm run build

# Publish
npm publish --access public

Contributing

Contributions are welcome. Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

  • Built with TypeScript and Fastify
  • Inspired by OpenClaw
  • Uses Kimi for agent intelligence