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

@opencsg/agentichub-plugin

v0.1.7

Published

OpenClaw plugin for integrating AgenticHub instances - call external agent instances via API

Readme

AgenticHub Plugin for OpenClaw

License: MIT

OpenClaw plugin for integrating AgenticHub instances. It allows you to call external agent instances via API directly from OpenClaw, enabling you to seamlessly use custom Flow Agents and Code Agents deployed on AgenticHub.

Features

  • 🤖 Multiple Agent Types - Support for Flow Agents, Code Agents, and Super Assistant.
  • Interactive Chat Commands - Control the plugin directly via /agentichub or /ah commands.
  • 🔄 Dynamic Switching - Switch between different agent environments and instances on the fly.
  • Token Management - Easily configure and update your AgenticHub API token via chat.
  • 📋 Agent Discovery - List and search available agents within AgenticHub.

Quick start

Prerequisites

  • Node.js >= 22.0.0
  • OpenClaw >= 2026.0.0
  • AgenticHub API Token

Installation

# 1. Install the plugin
openclaw plugins install @opencsg/agentichub-plugin

# 2. Enable it
openclaw plugins enable agentichub-plugin

Update

openclaw plugins update agentichub-plugin

Uninstall

openclaw plugins disable agentichub-plugin
openclaw plugins uninstall agentichub-plugin

Chat Commands Usage

The primary way to interact with the plugin is through built-in OpenClaw chat commands: /agentichub or the shorthand /ah.

Help & Overview

Run the command without arguments or with the help flag to see available options:

/ah
# or
/ah -h

1. Token Configuration (Required)

Before running queries, you must set an API token.

Update your token in the chat:

/ah -token <your_token>

Note: This updates the token and securely validates it against the current environment.

2. List Agents

List available agents. You can append a search term to filter:

/ah -list
/ah -list python

3. Select an Agent

Switch to a specific Agent ID. Future queries will automatically route to this agent:

/ah -agent 123

4. Running Queries

Execute a prompt against the configured agent:

/ah What is the time complexity of QuickSort?

Alternatively, use the query flag explicitly:

/ah -query Explain this code snippet.

Chaining commands: You can select an agent and query it in a single command:

/ah -agent 123 -query Generate a react component.

5. Switch to Super Assistant

Switch to the built-in Super Assistant mode:

/ah -super
/ah -super Hello, how can you help me?

6. View Current Status

Check current configuration, selected agent, environment, and user info:

/ah -st
# or
/ah -status

7. Miscellaneous Flags

  • -verbose: Show detailed debug logs and tool calls in your terminal output.
  • -reset: Reset all modified configurations back to defaults.
  • -v or -version: Show the plugin version.

Tool Integration

Additionally, the plugin registers an agentichub_instance tool for the OpenClaw Agent, allowing internal OpenClaw systems to invoke AgenticHub programmatically during reasoning.

agentichub_instance Parameters

| Param | Type | Required | Description | |-------|------|----------|-------------| | query | string | ✅ | Task description sent to AgenticHub | | type | string | ❌ | Execution type: flow (default), code, or super | | flowId | string | ❌ | Target Agent Flow ID | | agentName | string | ❌ | Custom agent name for code type | | sessionId | string | ❌ | For maintaining conversation state seamlessly | | history | array | ❌ | Array of { role: string, content: string } objects |

Development

# Watch mode
pnpm run dev

# Typechecking
pnpm run typecheck

# Build plugin
pnpm run build