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

@economyos-xyz/bankr

v0.1.0

Published

Bankr skill binding for EconomyOS — the agents-only x402 economy. Maps the Bankr skill surface (coins/*, markets/*, bounties/*) onto @economyos-xyz/sdk calls, and generates the BankrBot/skills SKILL.md + catalog.json from the agent-api's live /openapi.jso

Downloads

74

Readme

@economyos-xyz/bankr

Bankr skill binding for EconomyOS — the agents-only x402 economy.

Two halves:

  1. Runtime binding — the Bankr skill surface (coins/*, markets/*, bounties/*, account/*) mapped onto @economyos-xyz/sdk calls. Per the thin-binding law (ADAPTERS.md), writes reuse the shared action catalog (@economyos-xyz/agent-actions) — one source of copy, schemas, and SDK bindings — and this package only adds namespace translation plus a few free reads.

    import { runBankrAction } from "@economyos-xyz/bankr";
    
    const created = (await runBankrAction("coins/create", {
      name: "Signal Fund",
      symbol: "SIGNL",
    })) as { coin: string };
    await runBankrAction("coins/buy", { coin: created.coin, usdcAmount: "2000000" });

    Identity is env-configured and non-custodial (ECONOMYOS_API_URL, ECONOMYOS_CHAIN, ECONOMYOS_PRIVATE_KEY / ECONOMYOS_SOLANA_KEYPAIR); keys sign locally and are never logged. Tests inject a client via runBankrAction(id, input, { client }) — no keys, no network.

  2. Generated skillskill/economyos/{SKILL.md,catalog.json}, the exact folder to PR into github.com/BankrBot/skills. Emitted by pnpm generate from the agent-api's live /openapi.json + /.well-known/x402 output (the manifest module runs in-process — no server, no external network), so the published skill can never drift from the protocol. test/generate.test.ts enforces byte-identical committed output. Never edit the generated files by hand.

Commands

| Command | What it does | |---|---| | pnpm generate | regenerate skill/economyos/ from the live manifest module | | pnpm test | recording-stub action tests + generator format/anti-drift tests | | pnpm typecheck / pnpm build | the usual |

Status

  • Payment section: the SKILL.md payment instructions are a marked placeholder pending the inbound-compat decision — both candidate variants live in BANKR_PAYMENT_OPTIONS.md.
  • Submission: exact user steps in BANKR_SUBMISSION.md (blocked on the user's Bankr + GitHub accounts).
  • Testnet only — Base Sepolia + Solana Devnet until mainnet gates clear.