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

pantheon-agents

v0.1.0

Published

Agent Factory for Claude Code - scaffold sophisticated agent setups with a single command

Readme

⚡ Pantheon

Agent Factory for Claude Code

Scaffold sophisticated AI agent setups with a single command

Node Version License Status

Quick StartAgentsWorkflowsMemory


🎯 What is Pantheon?

Pantheon transforms how you work with Claude Code. Instead of building agent configurations from scratch, deploy production-ready AI agents—each named after a deity whose domain reflects their responsibility.

npx pantheon init

That's it. Your project now has an ecosystem of specialized agents ready to review code, write tests, fix bugs, and more.


✨ Key Features

🚀 One Command Setup

Initialize complete agent ecosystems instantly

🏛️ Mythological Design

Intuitive agents named after gods (Athena reviews, Apollo tests)

🧠 Shared Memory

SQLite-powered coordination between agents

📋 Workflow Automation

Pre-built workflows for common dev patterns

🎯 Zero Config

Opinionated defaults that just work

🛠️ Battle-Tested

Production-ready configurations


🚀 Quick Start

Initialize Pantheon

# Initialize in your project
npx pantheon init

# This creates:
# .claude/
#   agents/          ← Your agents
#   pantheon.jsonc   ← Configuration
#   memory.db        ← Shared memory

Manage Agents

# List all available agents
npx pantheon list

# Add specific agents
npx pantheon add athena apollo

# Get agent details
npx pantheon info athena

# Remove agents
npx pantheon remove athena

# Update agents to latest
npx pantheon update

🏛️ The Pantheon

Meet the gods of your codebase:


🔄 Workflows

Orchestrate agents to handle complex tasks:

Built-in Workflows

# Feature development (design → code → test → review → docs)
npx pantheon workflow run feature-development \
  --var feature_name="User Authentication"

# Bug fix (reproduce → investigate → fix → verify)
npx pantheon workflow run bug-fix \
  --var bug_description="Login fails with special chars"

# Code review (architecture + tests + performance + docs)
npx pantheon workflow run code-review \
  --var files_to_review="src/auth/**"

# Safe refactoring (analyze → plan → refactor → verify)
npx pantheon workflow run refactoring \
  --var refactor_scope="src/legacy/**"

# Release prep (test → audit → docs → package → tag)
npx pantheon workflow run release-preparation \
  --var release_version="1.2.0"

Custom Workflows

Create .claude/workflows/my-workflow.yaml:

id: my-workflow
name: My Workflow
version: 1.0.0

steps:
  - id: review
    type: agent
    agent: athena
    next: test

  - id: test
    type: agent
    agent: apollo
    next: deploy

  - id: deploy
    type: hook
    hook: ./scripts/deploy.sh

initialStep: review

🧠 Memory System

Agents share context through SQLite-powered memory:

# In agent configuration
prompt: |
  ## Memory System

  ### Your Private Memory (agent_memory)
  - `last_review_summary` - Your last review
  - `common_issues` - Patterns you've noticed

  ### Shared Memory (shared_memory)
  - `review:findings` - Share with other agents
  - `test:results` - Test outcomes
  - `bugs:found` - Discovered bugs

Agents coordinate automatically:

  • Athena shares architectural insights
  • Apollo publishes test results
  • Artemis reads bug reports
  • Hermes documents decisions

📖 Examples

Initialize with specific agents

npx pantheon init
# Interactive: Select athena, apollo, hephaestus

Quick code review

npx pantheon workflow run code-review \
  --var files_to_review="src/"

Fix and verify bug

npx pantheon workflow run bug-fix \
  --var bug_description="Memory leak in cache" \
  --var steps_to_reproduce="1. Create cache 2. Add 1000 items 3. Check memory"

Add testing to existing project

npx pantheon add apollo
# Apollo will analyze your code and suggest tests

🎨 Philosophy

Simplicity over Flexibility Opinionated, production-ready configurations over endless customization

Readability First Code should be clear and maintainable, not clever

Teams First Built for collaborative environments where consistency matters


📋 Requirements

  • Node.js 22 or higher
  • npm (any recent version)

🛠️ Development

# Install dependencies
npm install

# Run in development
npm run dev

# Run tests
npm test

# Coverage
npm run test:coverage

# Lint & format
npm run lint:fix

🗺️ Project Structure

pantheon/
├── .claude/
│   ├── agents/           ← Agent configurations
│   ├── workflows/        ← Workflow definitions
│   └── pantheon.jsonc    ← Project config
├── src/
│   ├── commands/         ← CLI commands
│   ├── memory/           ← Memory system
│   ├── templates/        ← Template engine
│   └── workflows/        ← Workflow engine
├── templates/
│   ├── agents/           ← Agent templates
│   ├── workflows/        ← Workflow templates
│   └── guidelines/       ← Best practices
└── tests/                ← Test suite

📚 Documentation


🤝 Contributing

We welcome contributions! Pantheon is in active development.


📜 License

MIT © fortini


⬆ back to top

Built with wisdom from the gods