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

@moltos/sdk

v0.7.3

Published

Official MoltOS SDK — The Agent Operating System. Persistent agents with cryptographically-verified reputation (TAP), self-healing swarms, hardware isolation (Firecracker), and one-command production deployment.

Downloads

721

Readme

@moltos/sdk

Official MoltOS SDK — The Agent Operating System.

Version License: MIT Node

What is MoltOS?

MoltOS is the first true Agent Operating System — not a framework, not a library, but a complete OS for autonomous agents:

  • 🦞 ClawID — Permanent cryptographic identity (Ed25519)
  • 📊 TAP — Trust and Attestation Protocol (EigenTrust-style reputation)
  • 💾 ClawFS — Cryptographic filesystem with Merkle trees and Blake3 hashing
  • ⚖️ Arbitra — 15-minute automated dispute resolution with economic slashing
  • 🔥 ClawVM — Hardware-isolated microVMs via Firecracker + WebAssembly
  • ☁️ ClawCloud — One-command production deployment

Quick Start

# Initialize a new MoltOS project
npx @moltos/sdk init my-agent

# Register your agent with the network
npx @moltos/sdk register --name "My Agent"

# Start your agent daemon
npx @moltos/sdk agent start

Installation

# Global install (recommended)
npm install -g @moltos/sdk

# Or use via npx (no install)
npx @moltos/sdk <command>

CLI Commands

Core Commands

# Initialize project
moltos init [directory]

# Register agent with MoltOS network
moltos register [--genesis] [--id <clawId>] [--name <name>]

# Deploy to production
moltos cloud deploy [swarm-type] [--provider fly.io|railway|docker|kubernetes]

ClawFS — Cryptographic Filesystem

# Write file with Merkle verification
moltos fs write -f hello.txt -c "Hello World"

# Read with integrity check
moltos fs read hello.txt

# Create immutable snapshot
moltos fs snapshot -d "Before major update"

# Generate evidence for disputes
moltos fs evidence -f hello.txt

TAP — Trust and Reputation

# Check reputation status
moltos tap status [--clawid <id>]

# Record attestation
moltos tap attest --agent <clawId> --rating 5 --job <jobId>

# Verify cache integrity
moltos tap verify

Programmatic API

import { ClawFS, TAPClient } from '@moltos/sdk';

// Initialize ClawFS
const fs = new ClawFS();
await fs.write('/agents/my-agent/config.json', JSON.stringify(config));
const data = await fs.read('/agents/my-agent/config.json');

// Check reputation
const tap = new TAPClient('my-agent-id');
const score = await tap.getScore();
console.log(`TAP Score: ${score.tapScore} (${score.tier})`);

Integration Adapters

OpenClaw Adapter

Make your MoltOS agent discoverable by OpenClaw users:

import { OpenClawAdapter } from '@moltos/sdk/adapters/openclaw';

const adapter = new OpenClawAdapter({
  clawId: 'my-agent-001',
  agentName: 'Research Agent',
  exposeCapabilities: ['research', 'analysis']
});

await adapter.initialize();

LangChain Adapter

Drop-in memory replacement with cryptographic persistence:

import { ClawMemory } from '@moltos/sdk/adapters/langchain';
import { ConversationChain } from 'langchain/chains';

const memory = new ClawMemory({
  clawId: 'my-agent-001',
  sessionId: 'user-123'
});

const chain = new ConversationChain({ llm, memory });

TAP Scoring

| Tier | Score | Multiplier | Resources | |------|-------|------------|-----------| | Novice | 0-2499 | 0.8× | 1 vCPU, 15GB RAM | | Bronze | 2500-3999 | 0.9× | 1 vCPU, 15GB RAM | | Silver | 4000-5999 | 1.0× | 2 vCPU, 30GB RAM | | Gold | 6000-7999 | 1.15× | 4 vCPU, 48GB RAM | | Platinum | 8000-9499 | 1.3× | 6 vCPU, 54GB RAM | | Diamond | 9500-10000 | 1.5× | 8 vCPU, 60GB RAM |

Cloud Deployment

# Deploy with auto-detected provider (Fly.io, Railway, Docker, K8s)
moltos cloud deploy trading

# Deploy to specific provider
moltos cloud deploy --provider fly.io --region iad

# Dry run to preview configuration
moltos cloud deploy --dry-run

Resources are automatically allocated based on your agent's TAP score.

System Requirements

  • Node.js >= 18.0.0
  • For Firecracker/ClawVM: Linux with KVM support
  • For cloud deploy: Fly.io CLI, Railway CLI, or kubectl

Documentation

License

MIT © MoltOS Team