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

@indigoprotocol/openclaw-indigo

v0.2.1

Published

OpenClaw plugin for Indigo Protocol — read-only tools and commands

Readme

@indigoprotocol/openclaw-indigo

OpenClaw plugin for the Indigo Protocol on Cardano. Provides read-only tools and auto-reply commands for iAsset prices, CDPs, staking, stability pools, governance, and wallet balances.

Architecture

The plugin exports a register(api) function that the OpenClaw gateway calls at load time. It registers 16 agent tools and 8 auto-reply commands, all hitting the Indigo indexer REST API directly via axios.

src/
  index.ts — register(api) entry point, tools, commands, service

Formatting uses @indigoprotocol/shared adapters and formatters with the markdownAdapter (OpenClaw renders markdown through its IR pipeline for all platforms).

Configuration

| Key | Type | Default | Description | |-----|------|---------|-------------| | indexerUrl | string | https://analytics.indigoprotocol.io/api/v1 | Indigo indexer REST API base URL | | walletAddress | string | — | Default Cardano wallet address for /balance and /cdps |

Agent Tools

| Tool | Description | |------|-------------| | indigo_assets | List all iAssets with prices | | indigo_asset_price | Get a specific iAsset price | | indigo_ada_price | Get current ADA price | | indigo_indy_price | Get current INDY price | | indigo_tvl | Protocol total value locked | | indigo_protocol_stats | Protocol stats (TVL, assets, CDPs) | | indigo_apr_rewards | Current APR rewards | | indigo_dex_yields | DEX yield farming opportunities | | indigo_cdps | List CDPs (filter by owner/asset) | | indigo_cdp_health | Analyze CDP health for an owner | | indigo_stability_pools | Stability pool info | | indigo_staking_info | Staking overview | | indigo_staking_positions | List staking positions | | indigo_polls | Governance polls | | indigo_wallet_balances | Wallet token balances | | indigo_order_book | Redemption order book |

Commands

| Command | Description | |---------|-------------| | /price <asset> | Single asset price (ADA, INDY, or any iAsset) | | /prices | All iAsset prices | | /tvl | Protocol TVL | | /balance [addr] | Wallet balances (falls back to config wallet) | | /cdps [owner] | List CDPs (falls back to config wallet) | | /staking | Staking overview | | /pools | Stability pools | | /polls | Governance polls |

Setup

openclaw plugin install @indigoprotocol/openclaw-indigo
openclaw gateway restart

Development

npm install
npm run typecheck

License

MIT — Indigo Protocol