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

@ethglobal-openagent/openclaw-eliza-keeperhub

v1.2.3

Published

KeeperHub ElizaOS actions wrapped as native OpenClaw tools

Downloads

648

Readme

@ethglobal-openagent/openclaw-eliza-keeperhub

npm License

KeeperHub's ElizaOS actions as native OpenClaw tools — install once, use from any OpenClaw agent in plain English.


Skill Install

npx agentskills install keeperhub

5-Minute Quickstart

Step 1: Install the plugin

openclaw plugin install @ethglobal-openagent/openclaw-eliza-keeperhub

Step 2: Configure (~/.openclaw/openclaw.json — OpenClaw sets this automatically, you can set apiKey manually)

{
  "plugins": {
    "entries": {
      "keeperhub-eliza": {
        "config": {
          "apiKey": "kh_...",
          "testnetOnly": true
        },
        "enabled": true
      }
    }
  }
}

Step 3: Start OpenClaw and talk to it

openclaw
> Check my wallet balance on Base
→ Your Base wallet: 0x1234...abcd
  ETH: 0.05 | USDC: 100.00

> Supply 50 USDC to Aave on Base
→ Executing aave-v3/supply... tx: 0xabc...

Get your API key at app.keeperhub.com → Settings → API Keys.


Architecture

OpenClaw agent
  └── @ethglobal-openagent/openclaw-eliza-keeperhub
        └── @keeperhub/elizaos (ElizaOS actions)
              └── KeeperHub REST API

OpenClaw genuinely uses the ElizaOS plugin — not raw API calls.


All 23 Tools

Tools are exposed with the eliza_ prefix, sourced from the underlying @keeperhub/elizaos plugin actions.

| OpenClaw Tool | Source ElizaOS Action | What It Does | |---------------|----------------------|--------------| | eliza_keeperhub_transfer | KEEPERHUB_TRANSFER | Transfer ETH or ERC-20 tokens | | eliza_keeperhub_contract_read | KEEPERHUB_CONTRACT_READ | Read any smart contract | | eliza_keeperhub_list_workflows | KEEPERHUB_LIST_WORKFLOWS | List available workflows | | eliza_keeperhub_execute_workflow | KEEPERHUB_EXECUTE_WORKFLOW | Run a workflow by ID | | eliza_keeperhub_generate_workflow | KEEPERHUB_GENERATE_WORKFLOW | Create workflow from plain English | | eliza_keeperhub_check_execution | KEEPERHUB_CHECK_EXECUTION | Poll execution status + tx hash | | eliza_keeperhub_protocol_action | KEEPERHUB_PROTOCOL_ACTION | Execute any DeFi protocol action | | eliza_keeperhub_list_chains | KEEPERHUB_LIST_CHAINS | List 19 supported blockchains | | eliza_keeperhub_register_agent | KEEPERHUB_REGISTER_AGENT | Register on-chain identity (ERC-8004) | | eliza_keeperhub_pay_and_run | KEEPERHUB_PAY_AND_RUN | Run paid workflow via x402/MPP | | eliza_keeperhub_notify | KEEPERHUB_NOTIFY | Send Discord/Slack/email notification | | eliza_keeperhub_chainlink_ccip | KEEPERHUB_CHAINLINK_CCIP | Cross-chain transfer via CCIP | | eliza_keeperhub_run_code | KEEPERHUB_RUN_CODE | Execute JavaScript in sandbox | | eliza_keeperhub_action_schema | KEEPERHUB_ACTION_SCHEMA | Get schema for any protocol action | | eliza_keeperhub_wallet_balance | KEEPERHUB_WALLET_BALANCE | Check wallet balance across chains | | eliza_keeperhub_ens_resolve | KEEPERHUB_ENS_RESOLVE | Resolve ENS name → address | | eliza_keeperhub_estimate_gas | KEEPERHUB_ESTIMATE_GAS | Estimate gas before a transaction | | eliza_keeperhub_check_and_execute | KEEPERHUB_CHECK_AND_EXECUTE | Atomic condition check + transaction | | eliza_keeperhub_list_protocols | KEEPERHUB_LIST_PROTOCOLS | Browse 396 DeFi protocol actions | | eliza_keeperhub_search_actions | KEEPERHUB_SEARCH_ACTIONS | Search protocol actions by keyword | | eliza_keeperhub_workflow_version | KEEPERHUB_WORKFLOW_VERSION | Get workflow version history | | eliza_keeperhub_provision_wallet | KEEPERHUB_PROVISION_WALLET | Provision new agentic wallet | | eliza_keeperhub_chainlink_price | KEEPERHUB_CHAINLINK_PRICE | Get latest Chainlink oracle price |


Links

  • GitHub: https://github.com/dhruv457457/keeperhub-eth-global/tree/staging/packages/openclaw-adapter-elizaos
  • KeeperHub platform: https://app.keeperhub.com
  • ElizaOS plugin (direct): npm install @keeperhub/elizaos
  • OpenClaw LangChain adapter: openclaw plugin install @ethglobal-openagent/openclaw-keeperhub
  • Python version: pip install keeperhub-langchain

License

MIT