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

agentrealm

v1.0.2

Published

Agentless sandbox workspaces for AI agents

Readme

agentrealm

Agentless sandbox workspaces for AI agents

npm License: MIT Node.js Release


What is a realm?

A realm is a lightweight, agentless sandbox workspace for AI agents.

In a traditional agent workspace, one agent permanently guards the space — it's always watching, always running. A realm is different: no agent lives there. Any AI agent (or human) can enter when needed, do focused work, and leave. When the work is complete, simply delete the realm or keep it archived.

Think of it as a shared project folder with built-in structure, a context loader, and a work diary — designed to be understood and entered by any agent without prior knowledge of the project.

Agent Workspace vs Realm

| | Agent Workspace | Realm | |---|---|---| | Persistent agent | ✅ Always watching | ❌ Agentless | | Entry model | One dedicated agent | Any agent | | Context loading | Agent-managed | realm prompt <name> | | Lifecycle | Ongoing | Scoped → delete when done | | Use case | Long-lived assistant | Focused task or project | | Overhead | High | Low |


Install

npm i -g agentrealm

Three binary aliases installed: realm (primary), agentrealm, agent-realm.


Quick Start

# Create a new realm
realm new my-project

# Load context into an agent session
realm prompt my-project

# Copy context to clipboard (then paste into your agent)
realm prompt my-project --copy

# List all realms
realm ls

# Add a diary entry
realm diary my-project "Finished the API integration, tests passing"

# When you're done, you can delete the realm or leave it archived
# realm rm my-project --purge

Commands

| Command | Description | |---------|-------------| | realm new <name> [--dir <path>] [--with-diary] | Create a new realm | | realm ls | List realms | | realm cd <name> | Print realm directory (cd $(realm cd foo)) | | realm prompt <name> | Build context bundle — stdout, clipboard, or file | | realm rm <name> [--purge] [--yes] | Remove from registry; --purge deletes directory | | realm diary <name> [message] | Append diary entry or open in $EDITOR | | realm skill | Print path to bundled SKILL.md |

realm prompt options

--memory          Include MEMORY.md if present
--diary <date>    Include historical diary file (YYYY-MM-DD)
--diaries-list    List available archived diaries
--copy            Copy output to clipboard
--out <file>      Write output to file

Realm File Structure

~/realms/my-project/
├── INDEX.md        # Read order + quick load instructions
├── REALM.md        # Purpose, rules, and context
├── TOOLS.md        # Tool checklist for this realm
├── DIARY.md        # Rolling work log (optional: --with-diary)
├── MEMORY.md       # Accumulated knowledge (manual, optional)
└── diaries/        # Archived diary files (auto-rotated at 200 lines)
    └── 2026-04-18.md

The registry lives at ~/.realm.yml:

version: 1
realms:
  my-project:
    dir: /Users/you/realms/my-project
    created: 2026-04-18T08:55:00.000Z
    description: ""

Why "agentless" matters

When an AI agent enters a workspace, it usually needs to know a lot of context to be useful: what's the purpose? What tools are available? What's been tried before? This typically lives in the agent's memory or a long system prompt.

With realms, the context travels with the workspace — not the agent. Run realm prompt my-project and any agent instantly has everything it needs. Agents stay stateless and interchangeable. Realms stay self-describing.

This unlocks:

  • Multi-agent collaboration — different models for different subtasks, no coordination overhead
  • Resume from anywhere — any agent, any session, full context in seconds
  • Clean boundaries — one realm per project, sealed when done, archived forever

AgentSkill Integration

agentrealm ships a bundled AgentSkill that tells agents how to use realms:

realm skill    # prints path to skill/SKILL.md

Register it with your agent system to make realm-entry automatic.


MIT License

Copyright (c) 2026 Exis. See LICENSE.