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

noosphere-relayer

v2.1.4

Published

Local-file or Walrus Memory relay server for Noosphere cross-agent project memory

Downloads

373

Readme

noosphere-relayer

Local-file or Walrus Memory relay server for Noosphere cross-agent project memory.

The relayer is the HTTP side of Noosphere: agents and the noosphere CLI store and recall project memory through it, it keeps a restart-safe durable queue in front of the configured backend, and it provides the durable index that ACP exact-state synchronization depends on.

Quick start

Requires Node.js 22 or newer.

npm install
npm run demo

Demo mode stores memories in a gitignored local JSON file on this machine — no credentials needed, no cross-machine memory.

To use Walrus Memory instead:

cp env.example .env

Create or manage credentials in the Walrus Memory dashboard, then set:

MEMWAL_NETWORK=mainnet
MEMWAL_ACCOUNT_ID=0x...
MEMWAL_PRIVATE_KEY=...
NOOSPHERE_MEMORY_BACKEND=walrus-memory
DEMO_MODE=false

Start with npm start. The relayer validates the Sui account, its active state, and the registered delegate key before serving memory operations.

HTTP surface

Memory:

  • POST /v1/actions — store a memory (idempotent via Idempotency-Key)
  • POST /v1/projects/:project_id/recall — semantic recall
  • GET /v1/projects/:project_id/recall?q=… — the same recall over a query string, with optional limit and action_type
  • GET /v1/projects/:project_id/context — prompt-ready context
  • GET /v1/projects/:project_id/bootstrap — instructions plus current context for any HTTP-capable agent

ACP exact state (see the protocol reference):

  • GET /v1/acp/capabilities — deployment mode, durability, quotas, and the server-owned relayer_index_id
  • /v1/projects/{project_id}/acp/snapshots[/{snapshot_id}]
  • /v1/projects/{project_id}/acp/heads
  • /v1/projects/{project_id}/acp/history

Local project control (loopback only — every route below answers 404 to a non-loopback caller):

  • GET/POST /v1/local/projects — list and register watched projects
  • GET /v1/local/projects/state — last checkpoint, pending upload count, and latest failure per project
  • POST /v1/local/projects/:project_id/{pause,resume,retry,forget}
  • GET /v1/local/credentials/status — configured memory backend and account
  • POST /v1/local/credentials/setup — select a backend and store credentials

Discovery: GET /.well-known/noosphere.json, /openapi.json, /health, /ready.

Reliability

  • writes enter an atomic durable queue before upload;
  • idempotency receipts survive restarts;
  • temporary failures use exponential backoff and respect upstream cooldowns;
  • explicit user memories are prioritized before background checkpoints;
  • readiness exposes pending jobs and the next upload slot.

Security and deployment

The relayer binds to 127.0.0.1 by default. Public or non-loopback deployments fail closed unless NOOSPHERE_API_TOKEN is set, and browser access is restricted to configured CORS_ORIGINS.

The managed Walrus Memory relayer receives plaintext to create embeddings and apply Seal encryption before blobs reach Walrus storage — it is part of the trust boundary, not a zero-knowledge flow.

Full details in the repository:

Development

npm run check
npm test
npm run test:live   # real Walrus store and recall, kept out of routine tests

vendor/acp-protocol/ is a mirror of the repository's shared protocol package for the Docker build context; parity with the source is enforced by the noosphere-mcp distribution test.