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

@parmanasystems/execution-runtime

v1.98.43

Published

Runtime orchestration layer for Parmana Systems.

Readme

@parmanasystems/execution-runtime

High-level orchestration layer for Parmana Systems governed execution.

npm


Overview

@parmanasystems/execution-runtime is the orchestration layer that sits above @parmanasystems/execution. It wires together policy evaluation, replay protection, signing, and verification into a single executeFromSignals call - the primary entry point for most Parmana Systems integrations.

Most applications should use @parmanasystems/core, which re-exports everything from this package. Use this package directly only if you need the runtime orchestration layer without the full SDK surface.


Install

npm install @parmanasystems/execution-runtime

Usage

import {
  executeFromSignals,
  MemoryReplayStore,
} from "@parmanasystems/execution-runtime";
import { LocalSigner, LocalVerifier } from "@parmanasystems/execution";
import crypto from "crypto";

const { privateKey, publicKey } = crypto.generateKeyPairSync("ed25519", {
  privateKeyEncoding: { type: "pkcs8", format: "pem" },
  publicKeyEncoding:  { type: "spki",  format: "pem" },
});

const signer      = new LocalSigner(privateKey);
const verifier    = new LocalVerifier(publicKey);
const replayStore = new MemoryReplayStore();

const attestation = await executeFromSignals(
  {
    policyId:      "loan-approval",
    policyVersion: "1.0.0",
    signals: {
      credit_score:  712,
      requested_usd: 50000,
    },
  },
  signer,
  verifier,
  replayStore
);

console.log(attestation.execution_state); // "completed"
console.log(attestation.decision.action); // "approve"
console.log(attestation.signature);       // Ed25519 over canonical attestation JSON

Redis replay store (production)

import { executeFromSignals, RedisReplayStore } from "@parmanasystems/execution-runtime";
import Redis from "ioredis";

const replayStore = new RedisReplayStore(new Redis(process.env.REDIS_URL));

const attestation = await executeFromSignals(context, signer, verifier, replayStore);

Exports

| Export | Description | |---|---| | executeFromSignals | Primary execution entry point - evaluates a policy, signs the result, returns ExecutionAttestation | | MemoryReplayStore | In-process replay store for development and testing | | RedisReplayStore | Distributed replay store for production use |


Relationship to other packages

| Package | Role | |---|---| | @parmanasystems/execution | Deterministic evaluation engine and attestation primitives | | @parmanasystems/execution-runtime | Orchestration: wires evaluation, signing, verification, replay | | @parmanasystems/core | Unified public SDK - re-exports both of the above |


Documentation

Full docs: docs.manthan.systems
Package page: docs.manthan.systems/packages/execution


License

Apache-2.0

Runtime Requirements

Parmana Systems packages are ESM-only.

Requirements:

  • Node.js >= 20.19
  • Native ES module support

Example:

` s import { verifyDecision } from "@parmanasystems/verifier";