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

@everything_openclaw/openclaw-plugin

v3.0.4

Published

Everything Openclaw (EO) v3.0.4 - Multi-Expert Collaboration Plugin with 141 experts

Readme

Everything Openclaw (EO) Plugin for OpenClaw

Multi-Expert Collaboration Plugin - Transform OpenClaw from single Agent to expert team

Overview

This plugin extends OpenClaw with multi-expert collaboration capabilities, inspired by Claude Code's multi-agent architecture.

Features

🤖 141 Expert Library

Access to 141 pre-configured experts across 8 major roles:

  • Architect - System architecture & tech stack
  • Planner - Project planning & task breakdown
  • Frontend - UI/UX & frontend development
  • Backend - API & backend development
  • QA - Testing & quality assurance
  • Security - Security review & vulnerability scanning
  • DevOps - CI/CD & deployment
  • CodeReviewer - Code quality & review

📋 6 Collaboration Tools

| Tool | Description | |------|-------------| | eo_collab | Main collaboration hub | | eo_list_experts | List available experts | | eo_plan | Create project plan with Planner | | eo_architect | Design architecture with Architect | | eo_verify | Verify checkpoint with QA | | eo_code_review | Code review with CodeReviewer |

🔗 Skill Compatibility Layer

  • Import Claude Code Skills
  • Import ECC (everything-claude-code) Skills
  • Automatic format conversion

✅ Checkpoint Verification

Multi-stage validation of project milestones.

Installation

Option 1: From GitHub (via main repo)

openclaw plugins install https://github.com/467718584/everything-openclaw

Option 2: From Local Clone

# Clone the repository
git clone https://github.com/467718584/everything-openclaw.git
cd everything-openclaw

# Install the plugin
openclaw plugins install ./openclaw-eo-plugin

Option 3: Build from Source

cd openclaw-eo-plugin
npm install
npm run build
openclaw plugins install .

Usage

Basic Commands

/eo-collab "帮我做一个博客系统"
/eo-plan "开发博客系统"
/eo-architect "设计博客系统架构"
/eo-verify "验证架构设计"
/eo-code-review "./src"

Tool Examples

// List all experts
await tool('eo_list_experts', { filter: 'architect' })

// Create project plan
await tool('eo_plan', { task: '开发博客系统' })

// Design architecture
await tool('eo_architect', { project: '博客系统' })

// Verify checkpoint
await tool('eo_verify', { checkpoint: 'milestone1' })

// Code review
await tool('eo_code_review', { path: './src' })

Architecture

┌─────────────────────────────────────────────────┐
│              OpenClaw Agent                      │
│                                                 │
│   ┌─────────────────────────────────────────┐  │
│   │         EO Plugin                        │  │
│   │                                          │  │
│   │  Tools: eo_collab, eo_plan, eo_architect │  │
│   │  Hooks: before_tool_call                 │  │
│   │                                          │  │
│   │  ┌──────────────────────────────────┐   │  │
│   │  │  Expert Library (141 experts)     │   │  │
│   │  │  8 Roles × 细分领域               │   │  │
│   │  └──────────────────────────────────┘   │  │
│   └─────────────────────────────────────────┘  │
└─────────────────────────────────────────────────┘

Requirements

  • OpenClaw >= 2026.3.0
  • Node.js >= 18.0.0

Comparison

| Feature | Without EO | With EO | |---------|-----------|---------| | Agent count | 1 | N (team) | | Expert count | 0 | 141 | | Task decomposition | Manual | Automatic | | Code review | Basic | Security + Performance + Style | | Planning | Manual | Planner expert |

License

MIT

Links