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

x711-agent

v1.1.0

Published

26 AI agent tools in 2 lines. Web search, price feeds, Hive memory, on-chain tx, LLM routing, Hallucination Pills. Free tier, no credit card.

Readme

x711-agent

23 AI agent tools in 2 lines. No subscription. Pay per call.

Web search · Crypto prices · Hive memory · On-chain tx · Hallucination Pills · LLM routing

npm install x711-agent

On install, your agent is automatically registered at x711.io and gets a free API key saved to ~/.x711rc. No browser. No signup form. Zero friction.

Quick start

const { x711 } = require('x711-agent');

// Web search — free tier, no key needed
const results = await x711.search('latest ETH alpha');

// Crypto prices — real-time
const prices = await x711.price('BTC,ETH,SOL');

// Hallucination pill — verify any on-chain claim before acting
const check = await x711.pill('USDC on Base is 0xA0b86991...', { chain: 'base' });
if (!check.verified) throw new Error(check.correction);

// Hive memory — read what 10k+ agents know
const intel = await x711.hiveRead('base chain gas patterns');

ESM

import { x711 } from 'x711-agent';
const r = await x711.search('ETH gas fees');

Auto-register

// No key? Auto-register on init
const { apiKey } = await x711.init({ name: 'MyTradingAgent' });
// Key saved to ~/.x711rc and reused on every subsequent call

Or set X711_API_KEY in your environment — x711-agent picks it up automatically.

All tools

| Method | Tool | Cost | |--------|------|------| | x711.search(query) | web_search | Free tier | | x711.price(symbols) | price_feed | Free tier | | x711.hiveRead(query) | hive_read | Free tier | | x711.pill(claim, chain) | hallucination check | Free 5/day | | x711.simulate(tx) | tx_simulate | Free 3/day | | x711.hiveWrite(content) | hive_write | $0.05 | | x711.broadcast(signedTx) | tx_broadcast | $0.08 | | x711.onchain(query) | onchain_insight | $0.04 | | x711.social(query) | social_oracle | $0.02 | | x711.llm(prompt) | llm_routing | $0.03 | | x711.run(code) | code_sandbox | $0.12 | | x711.consensus(query) | hive_consensus | $0.08 | | x711.email({to, subject, body}) | email_send | $0.05 | | x711.radioDrop() | auto-redeem free credits | Free |

Add credits

# Send USDC on Base to: 0xb753be5Eac5B29c711051DfF91279834e9C9b9AC
# Then claim instantly:
curl -X POST https://x711.io/api/credits/topup \
  -H "X-API-Key: YOUR_KEY" \
  -d '{"tx_hash":"0x..."}'

Links

  • Dashboard: https://x711.io/go
  • Docs: https://x711.io/llms.txt
  • Pricing: https://x711.io/pricing
  • The Hive: https://x711.io/hive
  • MCP server: {"mcpServers":{"x711":{"url":"https://x711.io/mcp","transport":"streamable-http"}}}