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

archon-ai

v1.0.0

Published

Multi-agent development orchestrator powered by Claude Code

Downloads

22

Readme

Archon

Multi-agent development orchestrator powered by Claude Code.

Archon coordinates a team of specialized AI agents — frontend, backend, database, DevOps, testing, and security — that work in parallel on isolated git branches, then merges their output in a deterministic order.

How It Works

  1. Write a spec — drop a markdown file into .archon/specs/requirements/
  2. Run itarchon run my-feature
  3. Archon decomposes the spec into tasks and assigns them to agents
  4. Agents work in parallel on isolated agent/<name> branches via Claude Code subprocesses
  5. Branches merge in a fixed order (dbadmin → backend → frontend → devops → security → tester)

Each agent has persistent memory (decisions, patterns, task history) that carries context across runs.

Quick Start

# Prerequisites: Node.js 20+, pnpm, git

# Clone and install
pnpm install

# Build
pnpm build

# Initialize a project
cd /path/to/your/project
archon init .

# Start the orchestrator
archon start

# Or run a single spec
archon run my-feature-spec

CLI Commands

| Command | Description | |---------|-------------| | archon init <path> | Scaffold .archon/ directory with agent configs, spec dirs, and git branches | | archon start | Start the orchestrator in foreground mode | | archon start --daemon | Start as a background daemon process | | archon stop | Stop a running daemon | | archon status | Show project config and agent status table | | archon run <spec-id> | Load a spec, decompose into tasks, and execute | | archon manifest | Generate a Slack app manifest JSON | | archon tui | Launch the interactive terminal dashboard |

Project Structure After archon init

your-project/
└── .archon/
    ├── archon.config.json          # Project configuration
    ├── agents/
    │   ├── project-manager/
    │   │   ├── agent.json          # Agent config (role, model, capabilities)
    │   │   └── memory/
    │   │       ├── context.md      # Running context notes
    │   │       ├── patterns.md     # Learned patterns
    │   │       ├── decisions.jsonl  # Decision log
    │   │       └── task-history.jsonl
    │   ├── frontend/
    │   ├── backend/
    │   ├── dbadmin/
    │   ├── devops/
    │   ├── tester/
    │   └── security/
    ├── specs/
    │   ├── requirements/           # Feature requirements
    │   ├── features/               # Feature specs
    │   ├── architecture/           # Architecture decisions
    │   └── bugs/                   # Bug reports
    └── activity/
        ├── events.jsonl            # Activity log
        └── dag.json                # Current task dependency graph

Writing Specs

Specs are markdown files with YAML frontmatter:

---
title: User Authentication
type: requirement
priority: high
status: draft
assignedAgents: [backend, frontend, security]
---

# User Authentication

Implement JWT-based authentication with login, registration, and password reset.

## Acceptance Criteria

- POST /api/auth/login returns a JWT
- POST /api/auth/register creates a new user
- Protected routes return 401 without a valid token

Place the file in .archon/specs/requirements/user-auth.md, then run:

archon run user-auth

Agent Types

| Agent | Role | Works On | |-------|------|----------| | project-manager | Decomposes specs into tasks, coordinates agents | Task planning | | frontend | UI components, styles, client-side logic | src/components/, src/pages/ | | backend | API endpoints, services, server-side logic | src/api/, src/server/ | | dbadmin | Schemas, migrations, query optimization | migrations/, src/db/ | | devops | CI/CD, Docker, infrastructure | infrastructure/, .github/ | | tester | Test writing and execution | tests/, src/**/*.test.* | | security | Code auditing, vulnerability scanning | Read-only across codebase |

Slack Integration

Archon includes a full Slack bot (Socket Mode) for team collaboration:

  • /archon-status — project dashboard
  • /archon-run <spec> — trigger orchestration
  • /archon-agents — agent status grid
  • /archon-spec <id> — view a spec
  • /archon-merge — merge status and approval actions

Configure in .env:

SLACK_BOT_TOKEN=xoxb-your-bot-token
SLACK_APP_TOKEN=xapp-your-app-token
SLACK_SIGNING_SECRET=your-signing-secret

Configuration

.archon/archon.config.json:

{
  "version": "1.0.0",
  "projectName": "my-app",
  "agents": ["project-manager", "frontend", "backend", "dbadmin", "devops", "tester", "security"],
  "defaultModel": "claude-sonnet-4-20250514",
  "mergeStrategy": "sequential",
  "maxConcurrentAgents": 3,
  "slack": {
    "botToken": "",
    "appToken": "",
    "signingSecret": "",
    "mainChannel": "archon",
    "notifyChannel": null,
    "threadPerTask": true,
    "agentChannels": false
  }
}

Development

pnpm build          # Build with tsup
pnpm dev            # Build in watch mode
pnpm test           # Run vitest test suite
pnpm lint           # TypeScript type checking

Documentation

See the docs/ directory:

License

MIT