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

@mnemopay/toolkit

v0.1.0

Published

MnemoPay agent toolkit — the capability layer (runtime, agents, browser, computer-control, vision, voice, scrape, knowledge, tools, coding-agent, research-agent) that pairs with @mnemopay/sdk's portable trust layer. One install for the full agent stack.

Downloads

73

Readme

@mnemopay/toolkit

The MnemoPay agent toolkit — the capability layer that pairs with @mnemopay/sdk's portable trust layer. One install pulls in the runtime, the specialist agents, and the perception/action surface an autonomous agent needs to do work.

npm install @mnemopay/toolkit

What's in the box

| Category | Package | What it does | |---|---|---| | Runtime | @kpanks/cli | CLI runner — agent runtime entry point | | Runtime | @kpanks/api | HTTP API server — PraetorHTTP, no Express | | Runtime | @kpanks/router | Multi-LLM routing with prompt caching + Batch API | | Runtime | @kpanks/agents | Agent orchestration core | | Runtime | @kpanks/sandbox | Sandbox factory — Mock / Local / Docker (hardened) / Firecracker stub | | Specialist | @kpanks/coding-agent | Coding agent — file/git/test tools + native unified-diff applier (16 tools) | | Specialist | @kpanks/research-agent | Research agent — web search, source fetch, structured synthesis | | Perception | @kpanks/browser | DOM-first browser automation (lazy playwright-core, Stagehand-shaped a11y outline) | | Perception | @kpanks/computer-control | Computer-use session — audit + activity-bus streaming | | Perception | @kpanks/vision | Native screen capture (PowerShell / screencapture / grim) + vision tools | | Perception | @kpanks/voice | Native TTS — Kokoro 82M default + Azure Speech, license-family enforceable | | Perception | @kpanks/scrape | Native fetch + SSRF guard + JSON-LD + sitemap + X.com syndication | | Knowledge | @kpanks/knowledge | Knowledge base — vector + chunking | | Knowledge | @kpanks/tools | Tool registry primitives |

How it pairs with @mnemopay/sdk

@mnemopay/sdk is the trust layer — payments, memory, identity, Agent Credit Score (300–850), governance (FiscalGate, Article 12 audit bundles), and cross-rail portability. Every action your agent takes can be priced, signed, and audited.

@mnemopay/toolkit is the capability layer — what your agent uses to actually do things in the world.

You can use either alone or both together. Together they form the full MnemoPay agent platform.

import MnemoPay from "@mnemopay/sdk";
import { runMission } from "@mnemopay/sdk";          // governance
import { CodingAgent } from "@kpanks/coding-agent";  // capability

const agent = MnemoPay.quick("my-agent");
// ... charter + budget + tools, run via runMission

On the package names

The toolkit ships under @mnemopay/toolkit as a meta-package; the underlying capability packages remain published at @kpanks/* for backward compatibility. New code should depend on @mnemopay/toolkit to get the curated set; advanced users can install individual @kpanks/* packages directly.

Status

  • v0.1.0 — initial meta-package release. Pulls in 14 @kpanks/* packages at ^0.1.0.
  • The Praetor brand the toolkit grew out of has been retired in favor of the unified MnemoPay platform; see [project_mnemopay_platform_2026_05_06] for the consolidation plan.

License

Apache-2.0. Built by J&B Enterprise LLC.

Links

  • Site: https://mnemopay.com/toolkit
  • SDK (trust layer): https://www.npmjs.com/package/@mnemopay/sdk
  • GitHub (sub-packages): https://github.com/mnemopay/praetor (legacy mono-repo, will sunset)