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

openclawmp

v0.1.6

Published

🐟 OpenClaw Marketplace CLI — 水产市场命令行工具

Readme

🐟 openclawmp

OpenClaw Marketplace CLI — 水产市场命令行工具

A command-line client for the OpenClaw Marketplace, allowing you to search, install, publish, and manage agent assets (skills, plugins, triggers, channels, and more).

Installation

npm install -g openclawmp

Requires Node.js 18+ (uses built-in fetch).

Quick Start

# Search for assets
openclawmp search "web search"

# Install a skill
openclawmp install skill/@cybernova/web-search

# List installed assets
openclawmp list

# View asset details
openclawmp info skill/web-search

# Publish your own skill
openclawmp publish ./my-skill

Commands

openclawmp search <query>

Search the marketplace for assets.

openclawmp search "文件监控"
openclawmp search weather

openclawmp install <type>/@<author>/<slug>

Install an asset from the marketplace.

# Full format with author scope
openclawmp install trigger/@xiaoyue/fs-event-trigger
openclawmp install skill/@cybernova/web-search

# Legacy format (no author)
openclawmp install skill/web-search

# Force overwrite existing
openclawmp install skill/@cybernova/web-search --force

Supported asset types: skill, config, plugin, trigger, channel, template

openclawmp list

List all assets installed via the marketplace.

openclawmp list

openclawmp uninstall <type>/<slug>

Remove an installed asset.

openclawmp uninstall skill/web-search
openclawmp uninstall trigger/fs-event-trigger

openclawmp info <type>/<slug>

View detailed information about an asset from the registry.

openclawmp info skill/web-search
openclawmp info trigger/fs-event-trigger

openclawmp publish [path]

Publish a local asset directory to the marketplace. Defaults to current directory.

# Publish current directory
openclawmp publish

# Publish a specific directory
openclawmp publish ./my-skill

# Skip confirmation prompt
openclawmp publish ./my-skill --yes

The command will auto-detect the asset type from:

  1. SKILL.md frontmatter (for skills)
  2. openclaw.plugin.json (for plugins/channels)
  3. package.json (fallback)
  4. README.md (fallback)

openclawmp login

Show device authorization information. Your OpenClaw device identity is used for publishing.

openclawmp login

openclawmp whoami

Show current user/device info and configuration status.

openclawmp whoami

Global Options

| Option | Description | |--------|-------------| | --api <url> | Override the API base URL | | --version, -v | Show version | | --help, -h | Show help |

Environment Variables

| Variable | Description | |----------|-------------| | OPENCLAWMP_API | Override the default API base URL (https://openclawmp.cc) | | OPENCLAW_STATE_DIR | Override the OpenClaw state directory (default: ~/.openclaw) | | NO_COLOR | Disable colored output |

Configuration

Configuration files are stored in ~/.openclawmp/:

  • auth.json — Authentication token

Install metadata is tracked in ~/.openclaw/seafood-lock.json (shared with the OpenClaw ecosystem).

Asset Types

| Type | Icon | Description | |------|------|-------------| | skill | 🧩 | Agent skills and capabilities | | config | ⚙️ | Configuration presets | | plugin | 🔌 | Gateway plugins | | trigger | ⚡ | Event triggers | | channel | 📡 | Communication channels | | template | 📋 | Project templates |

Development

# Clone and run locally
git clone https://github.com/openclaw/openclawmp.git
cd openclawmp

# Run directly
node bin/openclawmp.js --help
node bin/openclawmp.js search weather

# Link globally for testing
npm link
openclawmp --help

License

MIT