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

@restormel/state

v0.2.1

Published

Restormel State — append-only agent memory events, deterministic materialized views, and correlation hooks for context-packs and observability.

Readme

@restormel/state

Restormel State — append-only agent memory events, deterministic materialized views, and correlation helpers for @restormel/context-packs and @restormel/observability.

Non-goals

  • Vector databases, embeddings, or RAG retrieval services
  • Orchestration / checkpoint runners (LangGraph-style)
  • Storage backends or hosted dashboards (hosts persist events; this package projects them in memory)

Install

npm install @restormel/state

Depends on @restormel/context-packs for ContextPackRetrievalInput correlation typing.

Verify install

Scoped packages are public; a bare 404 on install is usually registry or auth misconfiguration, not a missing release.

npm view @restormel/state version
mkdir -p /tmp/rm-state-smoke && cd /tmp/rm-state-smoke && npm init -y && npm install @restormel/state@latest

Compatibility with @restormel/context-packs

Use the peerDependencies range published on npm for @restormel/context-packs (see this package’s package.json). Bump minors together when correlation field shapes change; check both packages’ CHANGELOG.md for migration notes.

Module format

ESM only ("type": "module", Node ≥ 20). Use "moduleResolution": "node16" or "bundler" in TypeScript.

Host integration (persistence)

Storage is host-owned. Prefer an append-only log with monotonic ordering (e.g. recorded_at ascending; tie-break with StateEvent.id and ts). StateEvent.id must be unique within each batch you append. See docs/restormel/RESTORMEL-STATE.md for the canonical model.

Usage

import {
  attachCorrelationToRetrievalInput,
  projectWorkingMemory,
  workingMemoryToPromptBlock,
  type MemoryPolicy,
  type StateEvent,
} from "@restormel/state";

const policy: MemoryPolicy = {
  maxCellsPerScope: 20,
  maxApproxTokensPerScope: 8000,
};

const events: StateEvent[] = [
  {
    type: "memory_cell_upsert",
    id: "ev-1",
    ts: new Date().toISOString(),
    scope: "session",
    cell_id: "fact-1",
    text: "User prefers dark mode.",
    run_id: "run-123",
  },
];

const view = projectWorkingMemory(events, policy);
const block = workingMemoryToPromptBlock(view);

const packInput = attachCorrelationToRetrievalInput(
  { claims: [], relations: [], arguments: [], seed_claim_ids: [] },
  { run_id: "run-123", state_sequence: view.last_sequence }
);

SOPHIA (Stoa)

Stoa-specific event builders live only in SOPHIA — they are not part of this package. Copy the reference module from docs/restormel/state-sophia-integration.md into your app.

API (summary)

| Export | Role | |--------|------| | projectWorkingMemory | Fold + policy prune → WorkingMemoryView | | workingMemoryToPromptBlock | Scopes → newline prompt text | | workingMemoryToDebugJson | Operator/support JSON snapshot | | attachCorrelationToRetrievalInput | Set restormel_correlation on context-pack input | | observabilityCorrelationFromView | run_id + tail event + scope counts for traces/logs | | StateEvent, MemoryPolicy, WorkingMemoryView, … | Types |

Publishing

Tag platform-v*publish-restormel-platform.yml (after @restormel/context-packs). See CHANGELOG.md.

Docs