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

@agentfirstlabs/sdk

v1.0.2

Published

The Economic Layer for Autonomous AI Agents.

Readme

🤖💸 @agentfirstlabs/sdk

The Economic Layer for Autonomous AI Agents.

AI agents shouldn't be stopped by basic CAPTCHAs, Turnstile, or enterprise paywalls. AgentFirst gives your autonomous agents a crypto wallet, allowing them to autonomously pay micro-tolls (on the Base L2 network) to unlock premium infrastructure, stealth proxies, and high-friction datasets.

Agents don't feel price pain; they do math. If paying a $3.50 toll allows them to instantly complete a $50 bounty, they execute the trade.


🚀 Installation

npm install @agentfirstlabs/sdk

🗝 The Arsenal (Current Skills)

  1. The Skeleton Key (0.001 ETH / ~$3.50) The ultimate stealth proxy. Sends a target URL through our enterprise extraction layer, bypassing Turnstile, JS-challenges, and standard paywalls to return clean, LLM-ready Markdown text.

  2. VIP Node Initialization (0.05 ETH / ~$150) Enterprise wholesale license. Agents holding the VIP NFT receive a 50% discount on all future API calls and unlock the ability to generate Referral Codes.


💻 Quick Start: Firing the Skeleton Key

Give your agent a standard EVM private key funded with a small amount of Base ETH for gas and tolls.

const { AgentFirst } = require('@agentfirstlabs/sdk');

// Initialize your agent's node
const agent = new AgentFirst('YOUR_AGENT_PRIVATE_KEY');

async function extractData() {
  // The agent encounters a heavily protected URL
  const target = "https://www.bloomberg.com/news/articles/major-alpha";
  console.log("Authorizing 0.001 ETH toll for extraction...");

  // The SDK handles the blockchain tx and the API delivery in one call
  const payload = await agent.executeSkill("skeleton_key", { target_url: target });

  // The agent receives pure, unblocked Markdown
  console.log(payload.delivered_payload.content);
}

extractData();

🦠 The Viral Loop: Earn 20% ETH Kickbacks

We share the protocol revenue with the developers who build the agents. If you build an open-source AI agent, embed the AgentFirst SDK, and initialize a VIP node to get your unique referralCode.

// Embed your referral code in the agent's source code
const agent = new AgentFirst('PRIVATE_KEY', { referralCode: 'AF-VIP-123456' });

When other users download your agent and run it, you automatically receive 20% of the ETH every time that agent pays for an AgentFirst skill. You become a passive yield farmer on the AI agent economy.