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

@lit-protocol/aw-tool-registry

v0.1.0-23

Published

Use this package to manage and access tools that your AI Agents can execute. The Tool Registry helps you register, discover, and validate tools across different Lit networks.

Readme

@lit-protocol/aw-tool-registry

Use this package to manage and access tools that your AI Agents can execute. The Tool Registry helps you register, discover, and validate tools across different Lit networks.

What You Can Do

  • Register tools with their IPFS CIDs and metadata
  • Look up tools by name or IPFS CID
  • Manage which tools are available on different networks
  • Get tool metadata and execution information
  • List all available tools for a specific network

Installation

pnpm add @lit-protocol/aw-tool-registry

Built-in Tools

We provide several tools out of the box:

  • ERC20Transfer: Transfer ERC20 tokens
  • UniswapSwap: Execute Uniswap swaps
  • SignEcdsa: Perform ECDSA signing operations

These tools are automatically registered when you import the package.

Usage Examples

import { 
  getToolByName, 
  getToolByIpfsCid, 
  listToolsByNetwork,
  type LitNetwork 
} from '@lit-protocol/aw-tool-registry';

// Looking up a tool by IPFS CID (commonly used by the signer)
const toolByCid = getToolByIpfsCid('QmYourIpfsCid');
if (toolByCid) {
  const { tool, network } = toolByCid;
  // Access tool metadata, parameters, policies
  console.log(tool.name, tool.description);
}

// Listing tools for a network (used by CLI for tool selection)
const network: LitNetwork = 'datil-dev';
const networkTools = listToolsByNetwork(network);
networkTools.forEach(tool => {
  console.log(`${tool.name}: ${tool.description}`);
});

// Getting a specific tool (used for policy management)
const erc20Tool = getToolByName('ERC20Transfer', network);
if (erc20Tool) {
  // Access tool's policy definitions
  const policy = erc20Tool.policy;
}

Adding a New Tool to the Registry

To add a new tool to the registry, follow these steps:

  1. Add the tool package as a dependency in package.json:
{
  "dependencies": {
    "@lit-protocol/aw-tool": "workspace:*",
    "@lit-protocol/aw-tool-your-tool": "workspace:*"  // Your new tool
  }
}
  1. Import the tool in src/lib/registry.ts:
import type { AwTool } from '@lit-protocol/aw-tool';
import { YourTool } from '@lit-protocol/aw-tool-your-tool';
  1. Register the tool at the bottom of registry.ts:
registerTool('YourTool', YourTool);

That's it! The tool will now be available through all registry functions like getToolByName, listToolsByNetwork, etc.

Note: Your tool package must implement the AwTool interface from @lit-protocol/aw-tool. For information on creating a new tool package, refer to the Agent Wallet Documentation.

Dependencies

This package builds on:

  • @lit-protocol/aw-tool: Core interfaces and types
  • @lit-protocol/aw-tool-erc20-transfer: ERC20 transfer implementation
  • @lit-protocol/aw-tool-uniswap-swap: Uniswap swap implementation
  • @lit-protocol/aw-tool-sign-ecdsa: ECDSA signing implementation

Need Help?