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

agent-hub-control

v0.1.0

Published

Official CLI for Houflow Agent Hub — discover, clone, export and run published managed agents from any terminal or AI coding agent (Codex, Claude, Cursor).

Readme

agent-hub-control

Official CLI for Houflow Agent Hub — discover, inspect, export, clone and run published managed agents from any terminal or AI coding agent (Codex, Claude, Cursor).

Vendor-neutral: it talks to the Agent Hub control plane over plain HTTPS, so any agent or script can install it and consume the public agent catalog.

Install

npm i -g agent-hub-control
# or run without installing:
npx agent-hub-control listings catalog

Configuration

export AGENT_HUB_CONTROL_BASE_URL="https://agent.houflow.com"   # control endpoint
export AGENT_HUB_API_KEY="ahk_..."                              # for authenticated actions
export AGENT_HUB_WORKSPACE_ID="wks_..."                         # target workspace for clone

catalog, get and export are public (no key). mine and clone require an API key.

Published agent catalog

# Browse the public catalog
agent-hub-control listings catalog

# Inspect one listing (consumption snippets + export formats)
agent-hub-control listings get 诗词试卷设计师

# Export the agent config in any format: json | yaml | ts | python | cli | md
agent-hub-control listings export 诗词试卷设计师 --format yaml

# Clone a published agent into your own workspace
agent-hub-control listings clone 诗词试卷设计师 \
  --api-key "$AGENT_HUB_API_KEY" \
  --workspace "$AGENT_HUB_WORKSPACE_ID"

# List the agents you have published
agent-hub-control listings mine --api-key "$AGENT_HUB_API_KEY"

Use an agent inside Codex / Claude / Cursor (no install)

Prefer zero-install portability? Export the Markdown "copy prompt" and paste the system prompt into your coding agent's instructions — it behaves as that agent with no API key or CLI required:

npx agent-hub-control listings export <slug> --format md

License

MIT