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

@unifyplane/apply-runtime

v0.1.0

Published

Deterministic apply runtime. Applies compiled plans and records evidence.

Readme

UnifyPlane Apply Runtime

Status: Active · Architecture Locked System Type: Pipeline Runtime (Non-Authoritative) Repository: unifyplane-apply-runtime


PURPOSE

UnifyPlane Apply Runtime is a deterministic runtime that applies compiled plans, invokes external validators, and records immutable evidence.

It does not define correctness, authority, business logic, or generation logic.

Its sole responsibility is to apply what has already been decided elsewhere, observe outcomes, and emit evidence.


IDENTITY (AUTHORITATIVE)

UnifyPlane Apply Runtime applies compiled plans deterministically and records evidence. It invokes external validators but does not define correctness, authority, or execution.

This identity is locked.


LIFECYCLE MODEL

PLAN -> APPLY -> VALIDATE -> EVIDENCE

Where:

PLAN A compiled, explicit instruction set produced upstream.

APPLY Deterministic execution of plan steps performed by this runtime.

VALIDATE Structural and/or semantic validation performed by external Validator SDKs.

EVIDENCE Immutable, machine-verifiable observation written to the consumer system.

Validation is a stage, not the identity of this runtime.


WHAT THIS RUNTIME DOES

  • Applies compiled plans deterministically
  • Dispatches plan steps in a defined order
  • Invokes external Validator SDKs
  • Collects and emits ValidatorResult outputs
  • Writes immutable evidence to downstream systems

WHAT THIS RUNTIME DOES NOT DO

This repository explicitly does not:

  • define validation logic
  • decide correctness or legitimacy
  • own authority or meaning
  • generate artifacts
  • mutate canonical domain state
  • perform Change Impact Analysis (CIA)
  • act as an agent or reasoning system

If logic belongs to authority, semantics, generation, or decision-making, it does not belong here.


ROLE SEPARATION (NON-NEGOTIABLE)

MDM / Domain Repository Owns meaning, contracts, versions, and approvals. Never runs validators.

Validator SDK Owns structural and semantic correctness. Pure, deterministic, side-effect free. Returns ValidatorResult only.

Apply Runtime (this repository) Applies plans, invokes validators, and records evidence. Never decides correctness or authority.


CIA POSITIONING

Change Impact Analysis (CIA) is drift-first and advisory.

This runtime:

  • emits evidence consumed by CIA
  • does not perform CIA
  • does not mutate canonical state

Generators and transformers are explicitly out of scope.


FINAL INVARIANT

This runtime observes and applies. It never decides, generates, or governs.

Any behavior outside this invariant is a defect.

Runtime & Tooling Declaration (Authoritative)

  • Runtime model: CommonJS | ESM
  • TypeScript module target: commonjs | NodeNext
  • JSON loading strategy: require() | ESM-compliant JSON loading
  • Test runner: jest | vitest | none
  • Build contract:
    • npm run build MUST succeed
    • dist/ MUST be Node-executable without ts-node/tsx