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

jonah-fleet

v1.30.1

Published

Standalone autonomous agent fleet with Symphony orchestration, claim protocols, and continuous improvement loops

Readme

⚡ Fleet

Standalone Autonomous Agent Fleet & Symphony Orchestration Engine
Battle-tested autonomous coding agents, claim protocols, review loops, and engineering skills for multi-repo teams.

CI Version Brand: Fleet License: MIT


🌟 Overview

jonah-fleet packages a complete suite of autonomous software engineering agents into a standalone repository and zero-install CLI (npx jonah-fleet). It turns any repository into an autonomous agent-driven development environment with:

  • Symphony-aligned Orchestration: Built on the principles formalized by OpenAI's Symphony spec — single-flight locking, dead-run claim recovery, reader/writer separation, and warm-session review loops.
  • Autonomous Autowork: Issue claiming, test-driven implementation (/tdd), automated draft PR creation, and warm-session review synchronization.
  • Strict Peer Review: Multi-angle subagent code reviews (/code-review), security scanning, and automated squash-merge.
  • Issues Housekeeping & Dependency Security: Weekly automated sweeps for duplicate detection, triage label assignment, and vulnerability remediation.
  • Continuous Bi-Directional Improvement Bridge: When local optimizer.md routines discover generic prompt optimizations, fixes can be submitted directly back upstream to jonah-fleet and distributed to all projects.

🏛️ Architecture: The Symphony Lineage

Fleet is a GitHub-native implementation of OpenAI's Symphony specification for orchestrating autonomous coding agents against issue trackers.

Rather than requiring a persistent orchestrator daemon or complex server infrastructure, Fleet maps all Symphony primitives directly onto GitHub and ephemeral CLI agent sessions:

| Symphony Concept | Fleet Implementation | |---|---| | WORKFLOW.md (Repo config & prompt templates) | AGENTS.md (aliased as GEMINI.md/CLAUDE.md) + .github/prompts/*.md | | Orchestrator (Poll, dispatch, reconcile) | GitHub Actions event triggers + scheduled cron routines (zero persistent daemons) | | Issue Tracker | GitHub Issues with single-flight claim protocols (🔒 claim comments) | | Agent Runner | Ephemeral agent sessions (Antigravity CLI agy via Gemini 3.7 Flash) in fresh clones | | Reader/Writer Separation | Autowork authors PRs; Peer Review routine is sole merge authority for product PRs | | Warm-Context Synchronization | In-session polling & live fix loops between Autowork and Peer Review before merge | | Dead-Run Recovery | Stale claim detection (>6h without live PR) via autowork & issues-housekeeping sweeps |

Architectural Comparison: Fleet vs. SwarmClaw

| Dimension | ⚡ Fleet | 🦞 SwarmClaw (@swarmclawai/swarmclaw) | |---|---|---| | Paradigm | Symphony-aligned, issue-driven workflow automation | Self-hosted multi-agent runtime & swarm platform | | Runtime Model | Ephemeral CLI sessions (agy) spun up per issue/PR | Persistent daemon / Electron desktop app / server | | State & Coordination | GitHub Issues, PR labels, commit status checks, and run logs | Local SQLite / Postgres, live WebSockets, durable agent memory | | Agent Topology | Specialized asynchronous routines (Autowork, Peer Review, Housekeeping, Optimizer) | Interactive agent teams, live org charts, and hierarchical delegation | | Best For | Production software engineering pipelines & automated multi-repo maintenance | Interactive agent chat, local tool runtimes, multi-provider desktop UI |


🚀 Quickstart

1. Initialize a repository

Inside any project directory, run:

npx jonah-fleet init --preset standard

Available presets:

  • minimal: autowork + peer-review + optimizer
  • standard (default): minimal + issues-housekeeping + dependency-update-security-check
  • full: standard + product-planning + analytics-review

2. Configure GitHub Actions Permissions

To ensure agent workflows can create and merge PRs and run without getting stuck awaiting approval:

  1. Workflow permissions: Go to Settings → Actions → General → Workflow permissions, choose "Read and write permissions", and check "Allow GitHub Actions to create and approve pull requests".
  2. Fork pull request workflows: Under Actions → General → Fork pull request workflows, configure the workflow approval policy (e.g. "Require approval for first-time contributors" or "Run workflows without approval" for private/internal repositories) to prevent automated runs from stalling awaiting manual approval.

3. Configure project context (AGENTS.md)

jonah-fleet init generates an AGENTS.md file (or uses your existing one). Specify your test commands, build scripts, and architecture patterns:

## Tech Stack
- Next.js 15, TypeScript, Tailwind CSS, Supabase

## Development Workflows
```bash
npm run build
npm test
npm run type-check

### 4. Check health and drift

To inspect which routines and skills are active or verify alignment with latest fleet updates:

```bash
npx jonah-fleet status

To synchronize with the latest fleet version:

npx jonah-fleet sync

5. Multi-repo Fleet Monitoring

Monitor health, in-flight autowork claims, open PR review loops, and token usage across your entire fleet:

# Register repositories to your fleet registry
npx jonah-fleet monitor --add juliendurandeu/Jonah-RuPaul
npx jonah-fleet monitor --add juliendurandeu/jonah-newsletter-gemini

# View terminal dashboard
npx jonah-fleet monitor

# Live watch mode with auto-refresh
npx jonah-fleet monitor --watch --interval 10

# Output as JSON
npx jonah-fleet monitor --json

🛠️ Repository Layout

jonah-fleet/
├── templates/
│   ├── prompts/          # Core generic prompts (autowork, peer-review, optimizer, etc.)
│   ├── workflows/        # GitHub Actions workflows for scheduling and event triggers
│   ├── skills/           # Reusable engineering skills (tdd, code-review, diagnosing-bugs, etc.)
│   └── docs/             # Starter documentation templates (AGENTS.template.md)
├── src/                  # TypeScript CLI source code
├── tests/                # Unit test & prompt validation suite
└── schema.json           # JSON Schema for agents-manifest.json

📜 Manifest Configuration (agents-manifest.json)

Each target project contains an agents-manifest.json at its root:

{
  "$schema": "https://raw.githubusercontent.com/Jonah-Projects/jonah-fleet/main/schema.json",
  "version": "1.6.0",
  "preset": "standard",
  "routines": {
    "autowork": true,
    "peer-review": true,
    "optimizer": true,
    "issues-housekeeping": true,
    "dependency-update-security-check": true,
    "product-planning": false,
    "analytics-review": false
  },
  "models": {
    "default": "gemini-3.8-flash-high",
    "issues-housekeeping": "gemini-3.8-flash-medium",
    "dependency-update-security-check": "gemini-3.8-flash-medium"
  },
  "budgets": {
    "weeklyTokens": 8750000,
    "timeoutMinutes": {
      "autowork": 60,
      "peer-review": 55,
      "optimizer": 35,
      "issues-housekeeping": 40,
      "dependency-update-security-check": 25
    },
    "maxIterations": {
      "autowork": 65,
      "peer-review": 40,
      "optimizer": 30,
      "issues-housekeeping": 30,
      "dependency-update-security-check": 20
    }
  },
  "skills": [
    "tdd",
    "code-review",
    "codebase-design",
    "domain-modeling",
    "diagnosing-bugs",
    "resolving-merge-conflicts",
    "writing-for-agents",
    "triage",
    "grill-me"
  ],
  "autoUpdate": {
    "enabled": true,
    "channel": "stable"
  }
}

🔄 Bi-Directional Continuous Improvement

  1. Local Optimization: The optimizer.md routine monitors run logs in each connected project.
  2. Upstream Contribution: When a prompt or workflow improvement is discovered, the optimizer opens an upstream PR against Jonah-Projects/jonah-fleet (or via npx jonah-fleet contribute).
  3. Downstream Sync: Merged improvements in jonah-fleet create a semantic release, and downstream consumer repositories receive automated update PRs via .github/workflows/sync-fleet.yml.

🎨 Brand & Visual Identity

Fleet's visual design system and assets are located in assets/brand/:

| Asset | Resource | Ratio | Usage | |---|---|---|---| | Avatar / App Icon | avatar.jpg | 1:1 (1024x1024) | Bot user profile, app icon, social avatar | | Logo Lockup | logo.jpg | 3:2 (1536x1024) | Documentation headers, splash screens, decks | | Header Banner | banner.jpg | 16:9 (1792x1008) | Repository hero, social cards, release cards |

See assets/brand/README.md for the complete design system specifications, color codes, and typography guidelines.


🙏 Acknowledgments & Credits


📄 License

MIT © Julien Durand