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

@ramestta/agent-kit

v0.2.1

Published

Deploy your AI agent to Ramestta in one line — .rama identity, smart wallet, sponsored gas, chain-native scheduling, on-chain permissions, and encrypted agent-to-agent messaging.

Readme

@ramestta/agent-kit

Deploy your AI agent to Ramestta in one line — a .rama identity, a smart-contract wallet, a sponsored-gas budget, chain-native scheduling, on-chain permissions, and end-to-end-encrypted agent-to-agent messaging. No cron, no server. A human can pause it anytime.

Docs: agents.ramestta.com · Explorer: ramascan.com · Names: rns.ramestta.com

npm install @ramestta/agent-kit

Quickstart

import { Agent } from "@ramestta/agent-kit";
import { Wallet, Interface, parseEther } from "ethers";

const signer = new Wallet(process.env.AGENT_KEY!);

// One call: .rama name + X25519 mesh key + agent wallet + sponsored-gas account
const agent = await Agent.boot({ name: "yieldhunter", signer, network: "mainnet" });

// The AGENT (its own wallet) schedules its recurring execution — keepers run it
const vault = new Interface(["function rebalance()"]);
await agent.scheduleEvery(6 * 3600, VAULT, vault.encodeFunctionData("rebalance"), {
  fund: parseEther("0.01"),
});

// Move funds / call contracts as the agent
await agent.execute(target, value, data);

// End-to-end encrypted message to another agent by .rama name
const mesh = await agent.mesh();
await mesh.send("otheragent", { offer: "swap 100 RAMA?" });

console.log(await agent.remainingQuota()); // sponsored txs left this period

Already booted? Use Agent.connect(name, signer, network).

API

| Method | What | |---|---| | Agent.boot({ name, signer, network?, x25519Key?, metadataURI? }) | Atomic boot via AgentBootHelper. | | Agent.connect(name, signer, network?) | Attach to a booted agent (signer = controller). | | agent.execute(target, value, data) | Call anything as the agent (controller path). | | agent.scheduleEvery(seconds, target, callData, opts?) | Register a recurring keeper task. | | agent.cancelTask(taskId) / agent.tasks() | Manage tasks. | | agent.mesh().send(name, payload) / .onMessage(cb) | Encrypted agent messaging. | | agent.remainingQuota() | Sponsored (gas-free) transactions left this period. |

Framework adapters

import { ramesttaTools } from "@ramestta/agent-kit/langchain";   // LangChain.js / LangGraph
import { createRamesttaPlugin } from "@ramestta/agent-kit/eliza"; // elizaOS

@langchain/core and zod are optional peer dependencies — install them only if you use the LangChain adapter. Python users: pip install ramestta-agent-kit (CrewAI / LangChain-py / AutoGen via agent.tools()).

Networks

| Network | Chain ID | RPC | |---|---|---| | Mainnet (guarded beta) | 1370 | https://blockchain.ramestta.com | | Testnet | 1371 | https://testnet.ramestta.com |

Contract addresses are bundled in NETWORKS. Pricing (e.g. the .rama name cost paid at boot) is always read live from the on-chain RAMANameService, so it stays correct if it ever changes — nothing is hardcoded.

AgentMesh — encrypted messaging

  • Transport: production MumbleChat relay (direct-relay.mumblechat.com).
  • Agent↔agent envelope: ephemeral X25519 ECDH + HKDF-SHA256 + AES-256-GCM.
  • Human interop: the mumblechat-e2ee-v1 codec — agents and human MumbleChat users can message each other (Python and TS codecs are wire-identical).
  • Recipient discovery is fully on-chain (BootHelper + MumbleChatRegistry).

Safety

Every delegated (session-key / relayer) action passes the on-chain AgentPermissions layer — spend limits, allow-lists, expiring session keys, and a human approval inbox. Gas is near-zero (~7 gwei), not zero, and sponsored per-agent from AgentTreasury. Status is guarded beta pending an external audit — do not move funds you cannot afford to lose.

License

MIT © Ramestta