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/elizaos-keeperhub

v0.3.2

Published

KeeperHub plugin for ElizaOS — onchain workflow automation for AI agents

Readme

@keeperhub/elizaos

npm License

KeeperHub plugin for ElizaOS — 19 actions for DeFi, transfers, and workflow automation.


Skill Install

npx agentskills install keeperhub

Install

npm install @keeperhub/elizaos

5-Minute Quickstart

// npm install @keeperhub/elizaos @elizaos/core
// export KEEPERHUB_API_KEY=kh_...

import { AgentRuntime, ModelProviderName } from "@elizaos/core";
import { createKeeperHubPlugin } from "@keeperhub/elizaos";

const plugin = createKeeperHubPlugin({
  apiKey: process.env.KEEPERHUB_API_KEY!,
  testnetOnly: true,
});

const runtime = new AgentRuntime({
  modelProvider: ModelProviderName.OPENAI,
  character: {
    name: "DeFi Agent",
    bio: ["I help with onchain DeFi operations via KeeperHub."],
    plugins: [plugin],
  },
});

// Agent now responds to:
// "Check my wallet balance" → calls keeperhub_wallet_balance
// "Send 0.01 ETH to vitalik.eth" → ENS resolve + transfer
// "What's the best USDC yield on Base?" → protocol_action with Aave

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


All 19 Actions

| Action | Trigger Phrases | What It Does | |--------|----------------|--------------| | KEEPERHUB_LIST_WORKFLOWS | "list workflows", "show automations" | List all KeeperHub workflows | | KEEPERHUB_EXECUTE_WORKFLOW | "run workflow", "execute workflow" | Run a workflow by ID | | KEEPERHUB_GENERATE_WORKFLOW | "create workflow", "automate this" | Generate workflow from plain English | | KEEPERHUB_CHECK_EXECUTION | "check status", "execution status" | Poll execution status + tx hash | | KEEPERHUB_TRANSFER | "send ETH", "transfer tokens" | Transfer ETH or ERC-20 tokens | | KEEPERHUB_CONTRACT_READ | "read contract", "call view function" | Read any smart contract | | KEEPERHUB_LIST_CHAINS | "supported chains", "what networks" | List 19 supported blockchains | | KEEPERHUB_PROTOCOL_ACTION | "supply to Aave", "swap on Uniswap" | Execute any of 396 DeFi protocol actions | | KEEPERHUB_ESTIMATE_GAS | "how much gas", "estimate cost" | Estimate gas before a transaction | | KEEPERHUB_CHECK_AND_EXECUTE | "if balance > X then transfer" | Atomic condition check + transaction | | KEEPERHUB_REGISTER_AGENT | "register on-chain", "ERC-8004" | Register agent identity (mints NFT) | | KEEPERHUB_PAY_AND_RUN | "pay and run", "paid workflow" | Execute paid workflow via x402/MPP | | KEEPERHUB_NOTIFY | "send notification", "alert via Discord" | Send Discord/Slack/email notification | | KEEPERHUB_CHAINLINK_CCIP | "cross-chain transfer", "bridge via CCIP" | Cross-chain token transfer | | KEEPERHUB_RUN_CODE | "run JavaScript", "execute code" | Execute JS in KeeperHub sandbox | | KEEPERHUB_ACTION_SCHEMA | "what params does Aave need" | Get schema for any protocol action | | KEEPERHUB_WALLET_BALANCE | "check my balance", "wallet balance" | Check wallet balance across chains | | KEEPERHUB_ENS_RESOLVE | "resolve ENS", "what address is vitalik.eth" | Resolve ENS name → address | | KEEPERHUB_WORKFLOW_VERSION | "workflow history", "versions" | Get workflow version history |


Safety

createKeeperHubPlugin({
  apiKey: process.env.KEEPERHUB_API_KEY!,

  // Block all mainnet writes — safe for development
  testnetOnly: true,

  // Restrict to specific chains
  allowedChainIds: ["11155111", "84532"], // Sepolia, Base Sepolia
})

Links

  • GitHub: https://github.com/dhruv457457/keeperhub-eth-global/tree/staging/packages/elizaos-plugin
  • KeeperHub platform: https://app.keeperhub.com
  • API docs: https://app.keeperhub.com/api/openapi
  • Python LangChain: pip install keeperhub-langchain
  • TS LangChain: npm install @ethglobal-openagent/langchain-keeperhub
  • OpenClaw (ElizaOS): openclaw plugin install @ethglobal-openagent/openclaw-eliza-keeperhub

License

MIT