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

create-metaclaw

v3.3.3

Published

MetaClaw — Autonomous AI Agent Platform by Yonder Zenith LLC

Readme


What is MetaClaw?

MetaClaw is an autonomous agent factory. Pick an agent template, answer a few questions, and MetaClaw researches best practices, scaffolds the entire project, configures safety guardrails, builds a real-time dashboard, and launches your agent — all automatically.

Your agents don't just run. They learn, adapt, and improve themselves through prompt versioning, A/B testing, and automatic optimization — governed by constitutional principles you define.

  ╔══════════════════════════════════════════════════════════════╗
  ║                                                              ║
  ║   You describe what you need.                                ║
  ║   MetaClaw builds the agent.                                 ║
  ║   The agent improves itself.                                 ║
  ║                                                              ║
  ╚══════════════════════════════════════════════════════════════╝

Built on Claude Code — Runs on Your Max/Pro Subscription

No API keys. No per-token billing. No surprise invoices.

MetaClaw is powered by Claude Code CLI, which means your agents run on your existing Claude Max or Pro subscription at a flat monthly rate. While other agent frameworks rack up per-token API costs, MetaClaw agents run unlimited on what you're already paying for.


Quick Start

# Clone and run — that's it
git clone https://github.com/YonderZenith/MetaClaw.git
cd MetaClaw
npm install
npm start

Or on Windows — just double-click setup.bat.

The installer handles everything: detects your system, installs prerequisites, walks you through configuration, and deploys your agent.


Agent Types


Architecture

Every MetaClaw agent is a self-contained autonomous system with a file-based brain:

                    ┌─────────────────────────────────┐
                    │         CLAUDE.md                │
                    │    (Agent Identity + Rules)      │
                    └────────────┬────────────────────┘
                                 │ reads on every cycle
                    ┌────────────▼────────────────────┐
                    │         SOUL.md                  │
                    │   (Constitutional Principles)    │
                    └────────────┬────────────────────┘
                                 │
              ┌──────────────────┼──────────────────┐
              │                  │                  │
     ┌────────▼───────┐ ┌───────▼────────┐ ┌───────▼───────┐
     │   state.json   │ │  tasks.json    │ │  memory/      │
     │  (Agent State) │ │  (Task Queue)  │ │  (Knowledge)  │
     └────────┬───────┘ └───────┬────────┘ └───────┬───────┘
              │                 │                   │
              └─────────────────┼───────────────────┘
                                │
                    ┌───────────▼──────────────┐
                    │      agent.ts            │
                    │   (13-Step Main Loop)    │
                    │                          │
                    │  ┌─ health-check.ts      │
                    │  ├─ safety.ts            │
                    │  ├─ self-improve.ts      │
                    │  ├─ db.ts (SQLite)       │
                    │  └─ cron-manager.ts      │
                    └───────────┬──────────────┘
                                │
                    ┌───────────▼──────────────┐
                    │     dashboard.html       │
                    │   (Real-time Command     │
                    │    Center + Voice)       │
                    └──────────────────────────┘

What Every Agent Gets

Core Engine

  • 13-step autonomous main loop
  • SQLite database (WAL mode, 11 tables)
  • Structured JSONL logging with 30-day rotation
  • Health checks on every cycle

Safety First

  • Circuit breakers with configurable thresholds
  • Rate limiting (daily + hourly caps)
  • Constitutional principles (SOUL.md)
  • Dry-run mode for testing

Self-Improvement

  • Prompt versioning and A/B testing
  • Automatic strategy optimization
  • Performance metrics tracking
  • Logic logging for decision auditing

Operations

  • HTML Command Center with voice control
  • Windows Task Scheduler integration
  • Auto-start on boot
  • Desktop shortcut deployment

Generated Agent Structure

my-agent/
├── CLAUDE.md              # Agent identity, rules, and context
├── SOUL.md                # Constitutional principles
├── dashboard.html         # Command Center (open in browser)
├── src/
│   ├── agent.ts           # Main 13-step autonomous loop
│   ├── db.ts              # SQLite database layer
│   ├── safety.ts          # Circuit breaker + rate limits
│   ├── self-improve.ts    # Prompt evolution engine
│   ├── health-check.ts    # System validation
│   └── cron-manager.ts    # Scheduled task management
├── data/
│   ├── state.json         # Live agent state
│   ├── tasks.json         # Human + AI task tracking
│   └── logs/              # Structured JSONL logs
├── scripts/
│   ├── launch.bat         # Start agent
│   └── agent-cycle.bat    # Autonomous cron cycle
└── memory/                # Agent knowledge files

Optional: QIS Intelligence Network

MetaClaw agents can optionally connect to the QIS (Quadratic Intelligence Swarm) Network — a shared knowledge layer where agents deposit and query operational insights.

  Agent A ──deposit──▶ ┌──────────────┐ ◀──query── Agent C
                       │  QIS Relay   │
  Agent B ──deposit──▶ │  (Buckets)   │ ◀──query── Agent D
                       └──────────────┘
  • No PII flows through the network — only anonymized operational intelligence
  • All personal data (emails, contacts, transcripts) stays on your machine
  • The QIS Intelligence Network is a separate service operated by Yonder Zenith LLC

The QIS Protocol is protected by 39 pending US patent applications. See QIS Protocol License for details.


Requirements

| Requirement | Details | |------------|---------| | Node.js | v18 or higher (installer helps you get it) | | Claude Code CLI | Installed globally (installer helps you get it) | | Claude Access | Claude Max or Pro subscription required (or Anthropic API key) | | OS | Windows 10/11 (macOS/Linux support coming) |


Commands

npm start              # Launch installer / start agent
npm run dry-run        # Test without taking actions
npm run status         # Check agent status
npm run dashboard      # Regenerate dashboard
npm run health-check   # Run system validation
npm run self-update    # Trigger self-optimization

License

MetaClaw is released under the MIT License — use it, modify it, build on it.

The optional QIS Intelligence Network is a separately licensed service by Yonder Zenith LLC.