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

@dominusnode/pi-extension

v1.2.0

Published

Dominus Node pi-mono extension — 26 tools for rotating proxy, wallet, agentic wallets, teams, and payments

Downloads

284

Readme

@dominusnode/pi-extension

Pi extension providing 53 tools for the Dominus Node rotating proxy and management platform.

What is Pi?

Pi (pi-mono) is a TypeScript/Node.js agentic coding framework by Mario Zechner. It powers OpenClaw and supports building AI agent workflows with type-safe tool definitions using @sinclair/typebox.

Installation

As a Pi Package (recommended)

npm install @dominusnode/pi-extension

Declare in your project's package.json:

{
  "pi": {
    "extensions": ["./node_modules/@dominusnode/pi-extension/dist"]
  }
}

Manual Extension

Copy or symlink the dist/ folder into your Pi extensions directory:

~/.pi/agent/extensions/dominusnode/   # global
.pi/extensions/dominusnode/           # project-local

Authentication

export DOMINUSNODE_API_KEY="dn_live_your_key_here"

Get your API key at dominusnode.com → Dashboard → API Keys.

Available Tools (53 total)

| Tool | Description | |------|-------------| | dominusnode_proxied_fetch | Fetch a URL through rotating IPs (DC or residential) | | dominusnode_check_balance | Get wallet balance | | dominusnode_check_usage | Bandwidth usage stats | | dominusnode_get_proxy_config | Proxy endpoint details | | dominusnode_list_sessions | Active proxy sessions | | dominusnode_create_agentic_wallet | Create agent sub-wallet | | dominusnode_fund_agentic_wallet | Fund agent sub-wallet | | dominusnode_check_agentic_balance | Sub-wallet balance | | dominusnode_list_agentic_wallets | All sub-wallets | | dominusnode_agentic_transactions | Sub-wallet transaction history | | dominusnode_freeze_agentic_wallet | Freeze sub-wallet | | dominusnode_unfreeze_agentic_wallet | Unfreeze sub-wallet | | dominusnode_delete_agentic_wallet | Delete sub-wallet | | dominusnode_create_team | Create team with shared wallet | | dominusnode_list_teams | List teams | | dominusnode_team_details | Team details and balance | | dominusnode_team_fund | Fund team wallet | | dominusnode_team_create_api_key | Create team API key | | dominusnode_team_usage | Team bandwidth stats | | dominusnode_update_team | Update team settings | | dominusnode_update_team_member_role | Change member role | | dominusnode_topup_paypal | Top up via PayPal | | dominusnode_topup_stripe | Top up via Stripe | | dominusnode_topup_crypto | Top up via crypto (BTC/ETH/USDC/...) | | dominusnode_x402_info | x402 micropayment config | | dominusnode_update_wallet_policy | Set spending limits/domain restrictions | | dominusnode_get_proxy_status | Proxy gateway status and pool health | | dominusnode_get_transactions | Wallet transaction history | | dominusnode_get_forecast | Spending forecast and projected costs | | dominusnode_check_payment | Check crypto payment status by invoice ID | | dominusnode_get_daily_usage | Daily bandwidth usage breakdown | | dominusnode_get_top_hosts | Top hosts by bandwidth usage | | dominusnode_register | Register a new account | | dominusnode_login | Log in to an existing account | | dominusnode_get_account_info | Get account profile information | | dominusnode_verify_email | Verify email with token | | dominusnode_resend_verification | Resend email verification link | | dominusnode_update_password | Change account password | | dominusnode_list_keys | List personal API keys | | dominusnode_create_key | Create a new personal API key | | dominusnode_revoke_key | Revoke a personal API key | | dominusnode_get_plan | Get current subscription plan | | dominusnode_list_plans | List available plans | | dominusnode_change_plan | Change subscription plan | | dominusnode_team_delete | Delete a team | | dominusnode_team_revoke_key | Revoke a team API key | | dominusnode_team_list_keys | List team API keys | | dominusnode_team_list_members | List team members | | dominusnode_team_add_member | Add a member to a team | | dominusnode_team_remove_member | Remove a member from a team | | dominusnode_team_invite_member | Invite a user to a team by email | | dominusnode_team_list_invites | List pending team invitations | | dominusnode_team_cancel_invite | Cancel a pending team invitation |

Proxy Usage

# Datacenter pool ($3/GB — fastest)
curl -x "http://dc-country-US:${DOMINUSNODE_API_KEY}@proxy.dominusnode.com:8080" \
  "https://target-site.com/page"

# Residential pool ($5/GB — appears as regular user)
curl -x "http://residential-country-GB:${DOMINUSNODE_API_KEY}@proxy.dominusnode.com:8080" \
  "https://target-site.com/page"

Agentic Wallet Pattern (for Pi swarms)

Give each sub-agent its own wallet with a spending cap:

1. dominusnode_create_agentic_wallet(label="research-agent-1", spendingLimitCents=500)
2. dominusnode_fund_agentic_wallet(walletId=<id>, amountCents=1000)
3. Sub-agent uses its wallet ID for proxy authentication
4. dominusnode_check_agentic_balance(walletId=<id>) — monitor spend
5. dominusnode_freeze_agentic_wallet(walletId=<id>) — suspend if needed

Security

  • SSRF protection: Private IPs, RFC1918, CGNAT, loopback, link-local, Teredo/6to4, IPv4-mapped IPv6, hex/octal/decimal normalization, zone ID stripping
  • DNS rebinding protection: Hostname resolved before each request; private IPs in DNS results are blocked
  • .localhost / .local / .internal / .arpa TLDs blocked
  • OFAC compliance: Requests to sanctioned countries (CU, IR, KP, RU, SY) are rejected
  • Credential scrubbing: API keys redacted from all error messages
  • Prototype pollution prevention: Recursive key stripping on all parsed JSON
  • HTTP method restriction: Only GET, HEAD, OPTIONS permitted via proxied_fetch
  • 10 MB response cap + 4000 character truncation
  • Redirect following disabled to prevent open redirect abuse

Pricing

| Pool | Price | Best for | |------|-------|----------| | Datacenter | $3.00/GB | Fast scraping, APIs, speed-sensitive tasks | | Residential | $5.00/GB | Bypassing geo-blocks, appearing as real user |

License

MIT — see LICENSE