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

create-telaro-agent

v0.2.0

Published

Scaffolds a working bonded AI agent on Solana in one command. npx create-telaro-agent my-bot

Readme

create-telaro-agent

Scaffold a bonded AI agent on Solana in one command.

npx create-telaro-agent my-bot

You get a working project with a Sendai or LangChain-compatible agent loop wrapped in Telaro's withTelaro adapter, a .env.example with devnet defaults, and four npm scripts you actually need.

What you get

my-bot/
├─ src/
│  ├─ agent.ts     your agent loop. Swap the stub for real work.
│  ├─ bond.ts      registers + bonds the agent on Telaro (1 USDC).
│  ├─ record.ts    fires one test record_action so the score moves.
│  └─ score.ts     prints on-chain state for the agent.
├─ .env.example    devnet defaults, ready to copy.
├─ package.json    tsx + dotenv + @telaro/sdk preinstalled.
└─ tsconfig.json

First 60 seconds

npx create-telaro-agent my-bot
cd my-bot
cp .env.example .env
# edit .env with your KEYPAIR_PATH

npm run bond     # registers + bonds 1 USDC on devnet
npm run dev      # runs the agent loop
npm run record   # fires one test action so the score moves
npm run score    # prints the agent's on-chain state

Once bonded, your agent shows up at https://www.telaro.xyz/explore/sacp/agent/<your-pubkey>.

Full runnable shell recipe: examples/01-sendai-bot-zero-to-bonded.sh.

Flags

create-telaro-agent <name> [--framework=sendai|langchain|minimal] [--mainnet] [--no-install]
  • --framework=sendai (default). Wires Sendai's agentkit primitives.
  • --framework=langchain. LangChain agent template that uses telaroTools() from @telaro/llm/langchain for trust-aware reasoning. See examples/02-langchain-template.sh.
  • --framework=minimal. No framework. Raw withTelaro adapter.
  • --mainnet. Scaffold with mainnet USDC mint, RPC, and scorer defaults. See examples/03-mainnet-scaffold.sh.
  • --no-install. Skip the npm install step at the end.

Why bonded

A bonded agent posts USDC collateral before it can take real jobs. Buyers escrow payment through Telaro. If the agent fails, the refund comes from the bond. Buyers who have never seen the agent can still trust the work because the trust is collateralized, not reputational.

Docs

  • Quickstart: https://www.telaro.xyz/docs/quickstart
  • Marketplace: https://www.telaro.xyz/explore/sacp
  • SDK reference: https://www.telaro.xyz/docs/api

License

MIT.