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

@super-dev/openclaw-plugin

v2.3.5

Published

Super Dev pipeline governance plugin for OpenClaw - research-first, commercial-grade AI coding delivery

Readme

@super-dev/openclaw-plugin

Super Dev pipeline governance plugin for OpenClaw -- research-first, commercial-grade AI coding delivery.

Installation

# 1. Install super-dev CLI (required)
pip install super-dev

# 2. Install the OpenClaw plugin
openclaw plugins install @super-dev/openclaw-plugin

Usage

In the OpenClaw Agent chat panel, type:

super-dev: Build an online education platform with Next.js and Node.js

or

/super-dev Build an online education platform

The agent will activate the Super Dev pipeline and walk through: research -> docs -> spec -> frontend -> backend -> quality -> delivery.

Registered Tools (20)

| Tool | Purpose | |------|---------| | super_dev_pipeline | Run the full 9-stage pipeline from requirement description | | super_dev_init | Initialize Super Dev in an existing project (creates super-dev.yaml) | | super_dev_status | Check pipeline status, completed phases, and blocking gates | | super_dev_quality | Run quality check by type: prd, architecture, ui, code, all | | super_dev_spec | Manage specs: list, show, propose, scaffold, validate, archive | | super_dev_config | View or modify project config: list, get, set | | super_dev_review | Run review or confirm a gate: docs, ui, architecture, quality | | super_dev_release | Check release readiness or generate proof-pack | | super_dev_expert | Consult an expert: PM, ARCHITECT, UI, UX, SECURITY, CODE, DBA, QA, DEVOPS, RCA | | super_dev_deploy | Generate CI/CD config, Dockerfile, or release rehearsal | | super_dev_analyze | Analyze project structure, tech stack, and dependencies | | super_dev_doctor | Run health check and diagnostics for host integration | | super_dev_governance | Governance management: status, rules, ADR, knowledge report, templates | | super_dev_task | Manage spec tasks: list, run, check completion status | | super_dev_fix | Start lightweight bugfix pipeline (skip research/docs) | | super_dev_confirm | Quick confirm a gate: docs, ui, architecture, quality, preview | | super_dev_jump | Jump to a specific pipeline stage by name or number | | super_dev_product_audit | Run comprehensive product audit: feature gaps, journey, credibility | | super_dev_metrics | View pipeline metrics, quality trends, and DORA indicators | | super_dev_run | Run any super-dev CLI command directly (optional, fallback) |

Configuration

In your OpenClaw config (~/.openclaw/openclaw.json):

{
  "plugins": {
    "entries": {
      "super-dev": {
        "enabled": true,
        "config": {
          "projectDir": "",
          "superDevBin": "super-dev",
          "qualityThreshold": 80,
          "timeout": 300000,
          "language": "zh"
        }
      }
    }
  }
}

| Option | Default | Description | |--------|---------|-------------| | projectDir | "" (cwd) | Project working directory | | superDevBin | "super-dev" | Path to super-dev CLI | | qualityThreshold | 80 | Quality gate threshold (0-100) | | timeout | 300000 | CLI command timeout in ms | | language | "zh" | Output language: zh or en |

How It Works

OpenClaw Agent -> Plugin (TypeScript) -> child_process.execFile -> super-dev (Python CLI)

The plugin registers 20 tools that bridge OpenClaw to the super-dev Python CLI via subprocess. The built-in SKILL.md teaches the agent the complete pipeline protocol including:

  • 9 pipeline stages with per-stage execution guidance
  • 2 mandatory confirmation gates (DOC_CONFIRM_GATE + PREVIEW_CONFIRM_GATE)
  • UI/architecture/quality rework protocols
  • Resume/status/jump flow control
  • First-response contract matching Claude Code experience

Requirements

  • Node.js >= 18
  • Python >= 3.10
  • super-dev CLI installed (pip install super-dev)
  • OpenClaw >= 2026.1.0

License

MIT