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

research-committee

v1.1.0

Published

Multi-agent research idea incubation system for OpenClaw. Oracle + committee of 4 sub-agents to turn vague research ambitions into sharp, falsifiable research questions.

Readme

Research Committee — OpenClaw Plugin

A multi-agent research-idea incubation system for OpenClaw.

Turn a vague research ambition into one concrete, falsifiable, top-tier-plausible research question — by convening a committee of specialized agents.


🎯 What it does

Researcher → Oracle → Committee
              ├── 🔍 literature-scout   (prior work, novelty)
              ├── ⚙️  feasibility-analyst  (path, bottlenecks)
              ├── 💀  red-team-critic    (attack, kill/revise)
              └── 🎯  venue-strategist    (publication path)
            → FinalTopicSpec

Oracle convenes a committee through a blackboard. The researcher gets one sharp research question — not a list of directions.


✨ Features

  • Oracle — researcher's primary interface; runs the full committee workflow
  • Literature Scout — finds prior work, judges true vs. fake novelty
  • Feasibility Analyst — critical path, bottlenecks, 6-month minimum deliverable
  • Red Team Critic — structured attacks, kill/revise verdict
  • Venue Strategist — minimum publishable unit, publication paths
  • Blackboard system — agents communicate through structured JSON packs
  • Evolvable thesisevolving_thesis.md persists across sessions

📦 Installation

Prerequisites

  • OpenClaw >= 2026.4.0
  • A model provider configured (Minimax, OpenAI, Anthropic, etc.)

Install the plugin

openclaw plugins install research-committee

Or manually

git clone https://github.com/zleung9/openclaw-research-committee.git
cd research-committee-plugin
# Copy agent templates to your OpenClaw workspace
cp -r agents/* ~/.openclaw/
openclaw gateway restart

🚀 Usage

After installation, describe your research ambition to Oracle:

"I'm working on [your field]. I want to publish something big but I only have a vague direction."

Oracle will guide you through clarification, then run the full committee workflow.


📁 Directory Structure

research-committee-plugin/
├── openclaw.plugin.json        # Plugin manifest
├── package.json                # npm package
├── README.md                   # This file
├── LICENSE                     # MIT
├── skills/
│   └── research-committee/   # Research committee workflow skill
│       └── SKILL.md
└── agents/
    ├── oracle/                # Oracle workspace template
    │   ├── AGENTS.md
    │   ├── IDENTITY.md
    │   ├── SOUL.md
    │   ├── TOOLS.md
    │   └── blackboard/
    │       └── SCHEMAS.md    # All pack JSON schemas
    ├── literature-scout/
    ├── feasibility-analyst/
    ├── red-team-critic/
    └── venue-strategist/

🔧 Configuration

Agent config

Add to openclaw.json agents.list:

{
  "id": "oracle",
  "name": "oracle",
  "workspace": "~/.openclaw/workspace-oracle",
  "agentDir": "~/.openclaw/agents/oracle/agent",
  "model": "minimax-portal/MiniMax-M2.7"
},
{
  "id": "literature-scout",
  "name": "literature-scout",
  "workspace": "~/.openclaw/workspace-literature-scout",
  "agentDir": "~/.openclaw/agents/literature-scout/agent",
  "model": "minimax-portal/MiniMax-M2.7"
},
{
  "id": "feasibility-analyst",
  "name": "feasibility-analyst",
  "workspace": "~/.openclaw/workspace-feasibility-analyst",
  "agentDir": "~/.openclaw/agents/feasibility-analyst/agent",
  "model": "minimax-portal/MiniMax-M2.7"
},
{
  "id": "red-team-critic",
  "name": "red-team-critic",
  "workspace": "~/.openclaw/workspace-red-team-critic",
  "agentDir": "~/.openclaw/agents/red-team-critic/agent",
  "model": "minimax-portal/MiniMax-M2.7"
},
{
  "id": "venue-strategist",
  "name": "venue-strategist",
  "workspace": "~/.openclaw/workspace-venue-strategist",
  "agentDir": "~/.openclaw/agents/venue-strategist/agent",
  "model": "minimax-portal/MiniMax-M2.7"
}

🔒 Security Notes

  • Never commit credentials, sessions/, or personal memory/ to the repo
  • The plugin contains templates only — user fills in their own API keys
  • Each agent has its own isolated workspace

📄 License

MIT