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

jetpack-agent-cloud

v0.1.7

Published

Jetpack - Multi-agent AI orchestration for software development

Readme

jetpack-agent-cloud

Multi-agent AI orchestration for software development. Coordinate multiple AI agents to work on your codebase simultaneously.

Installation

# Install globally
npm install -g jetpack-agent-cloud

# Or use npx
npx jetpack-agent-cloud <command>

Quick Start

# Navigate to your project
cd your-project

# Start Jetpack with 3 agents (auto-initializes everything)
jetpack start -a 3 --no-web

# Or load a plan first, then start
jetpack load ./plan.md --name "Feature Plan"
jetpack start -a 3 --no-web

The --no-web flag is recommended for standalone installs (the web dashboard requires the full monorepo).

Commands

| Command | Description | |---------|-------------| | jetpack start | Start the full orchestration system (coordinator + agents) | | jetpack start -a 5 | Start with 5 agents | | jetpack start --no-web | Start without web dashboard | | jetpack init | Initialize Jetpack in current directory | | jetpack status | Show swarm status | | jetpack task | Create a new task | | jetpack tasks | List all tasks | | jetpack agents | List registered agents | | jetpack agent | Start a single agent work loop | | jetpack load | Load a plan from file or stdin | | jetpack reset | Reset stuck agents and recover tasks |

Creating Tasks

# Quick task creation
jetpack task -t "Fix bug in auth module" -p high -s typescript

# With description
jetpack task -t "Add dark mode" -d "Implement dark mode toggle in settings" -p medium

# Multiple skills
jetpack task -t "Create API endpoint" -s backend,database,typescript

Loading Plans

Load hierarchical plans from markdown files:

# Load from markdown file
jetpack load ./my-plan.md --name "Feature Plan"

# Load from stdin
echo "Build user authentication" | jetpack load -

# Preview without creating (dry-run)
jetpack load ./plan.md --dry-run

# Load and activate immediately
jetpack load ./plan.md --activate

Markdown Plan Format

# Feature Name (becomes Epic)

Description of the feature.

## Task 1 (becomes Task)
- Subtask 1.1 (becomes Subtask)
- Subtask 1.2

## Task 2
- Subtask 2.1

Programmatic Usage

import {
  createLibSQLLocalDataLayer,
  createPlanLoader,
  SwarmCoordinator,
} from 'jetpack-agent-cloud';

// Create data layer (auto-initializes schema)
const dataLayer = await createLibSQLLocalDataLayer('.jetpack/jetpack.db');

// Create a task programmatically
const task = await dataLayer.tasks.create({
  title: 'Implement feature X',
  priority: 'high',
  requiredSkills: ['typescript'],
});

// Load a plan
const loader = createPlanLoader(dataLayer);
const result = await loader.load('./my-plan.md', {
  title: 'My Feature',
});

// Start coordinator
const coordinator = new SwarmCoordinator(dataLayer, {
  workDir: process.cwd(),
  maxAgents: 5,
});
await coordinator.start();

Environment Variables

| Variable | Description | |----------|-------------| | JETPACK_WORK_DIR | Override working directory | | ANTHROPIC_API_KEY | Required for Claude agents | | OPENAI_API_KEY | Required for OpenAI/Codex agents |

Requirements

  • Node.js >= 18.0.0
  • Claude CLI (claude) or OpenAI Codex CLI for agent execution

Links

License

MIT