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-motebit

v0.6.10

Published

Scaffold a motebit agent project — npm create motebit

Downloads

1,989

Readme

create-motebit

Create a cryptographically signed agent identity.

Quick Start

npm create motebit my-agent
cd my-agent
npm install
node verify.js

4 commands from zero to a verified agent identity.

What it creates

my-agent/
  motebit.md       Signed agent identity (Ed25519)
  verify.js        Verification example
  package.json     Node project with @motebit/verify
  .env.example     Environment variable template
  .gitignore       Secrets excluded

Verify

npx create-motebit verify
npx create-motebit verify path/to/motebit.md

What is a motebit.md?

A motebit.md is a human-readable, cryptographically signed agent identity file. It gives your AI agent:

  • Sovereign identity — an Ed25519 keypair that proves who the agent is, with a W3C did:key for interoperability
  • Governance — trust mode, risk thresholds, operator controls
  • Privacy — sensitivity levels, retention rules, fail-closed defaults
  • Memory — decay parameters, confidence thresholds

The identity file is YAML frontmatter signed with Ed25519. Any tool can verify it using the @motebit/verify package.

Rotate your key

If your private key is compromised or you want to refresh, rotate to a new keypair:

npx create-motebit rotate                          # Interactive
npx create-motebit rotate --reason "Routine refresh"  # With reason
npx create-motebit rotate path/to/motebit.md --yes    # Non-interactive

This creates a cryptographic succession record — both old and new keys sign the transition, proving you authorized the change. The motebit_id stays the same. Trust, credentials, and history transfer because the chain is verifiable by anyone.

Options

npm create motebit [dir]          Scaffold with identity generation
npm create motebit [dir] --yes    Non-interactive (requires MOTEBIT_PASSPHRASE)
npm create motebit [dir] --service  Create a service identity
npx create-motebit verify [path]  Verify a motebit.md signature
npx create-motebit rotate [path]  Rotate key with signed succession record

-v, --version         Print version
-h, --help            Print help
--reason "..."        Reason for key rotation (with rotate)

Agent capabilities

Once running with the motebit CLI, your scaffolded agent has access to:

  • Verifiable credentials — automatically earned as the agent operates. Three credential types: gradient (intelligence metrics), reputation (task success rate), and trust (peer interaction history).
  • Delegation — submit tasks to other agents via MCP, with Ed25519-signed execution receipts and chain-of-custody tracking.
  • Execution ledger — a signed, tamper-evident audit trail for every goal execution, including tool calls, delegation receipts, and step-by-step timelines.
  • Budget and settlement — economic layer for delegated tasks. Lock budget before delegation, settle on receipt verification, release or dispute on failure.

See the delegation guide for the full flow.

License

MIT — see LICENSE.

"Motebit" is a trademark. The MIT License grants rights to this software, not to any Motebit trademarks, logos, or branding. You may not use Motebit branding in a way that suggests endorsement or affiliation without written permission.