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 startOr 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 filesOptional: 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-optimizationLicense
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.
