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

@drag00n/openclaw-plugin

v0.1.8

Published

OpenClaw plugin for managing AgentHub agents

Readme

AgentHub Manager — OpenClaw Plugin

OpenClaw 插件,用于管理 AgentHub Agent(启动、停止、配置、订单操作)。

安装

openclaw plugins install @drag00n/openclaw-plugin

前置要求

  1. Python 3.11+
  2. AgentClient CLI 已安装且在 PATH 中
cd /path/to/myAgent-Shopping/AgentClient
pip install -e .

# 确认可用
agenthub-client --help

配置

在 OpenClaw 设置中配置以下参数:

{
  "plugins": {
    "@drag00n/openclaw-plugin": {
      "pythonPath": "python3",
      "configDir": "/path/to/your/agent/configs",
      "defaultPort": 8765
    }
  }
}

| 配置项 | 说明 | 默认值 | |--------|------|--------| | pythonPath | Python 可执行路径 | python3 | | configDir | Agent YAML 配置目录 | 必填 | | defaultPort | Agent HTTP API 端口 | 8765 |

验证

openclaw plugins list
# 应显示: @drag00n/openclaw-plugin 0.1.1

提供的工具

| 工具 | 用途 | |------|------| | agenthub_list | 列出所有 Agent 配置 | | agenthub_start | 启动 Agent | | agenthub_stop | 停止 Agent | | agenthub_status | 查看运行状态 | | agenthub_create | 创建新 Agent 配置 | | agenthub_config_view | 查看配置文件 | | agenthub_config_edit | 编辑配置 | | agenthub_order | 订单操作(创建/报价/确认/查询) |

示例

# 启动轴承卖家 Agent
openclaw run "用 agenthub_start 启动 configs/bearing_seller_prod.yaml"

# 查看运行状态
openclaw run "查看所有 Agent 状态"

故障排查

  • "未找到 agenthub-client" → 确认 pip install -e . 已执行
  • "配置目录不存在" → 确认 configDir 指向包含 .yaml 文件的目录

链接

  • GitHub: https://github.com/dr4g00n/myAgent-Shopping/tree/main/AgentClient/openclaw-plugin
  • 问题反馈: https://github.com/dr4g00n/myAgent-Shopping/issues