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

controller-benchmark-schemas

v0.1.2

Published

Schemas and validators for benchmark condition records, compiler receipts, and trust-boundary artifacts.

Readme

controller-benchmark-schemas

Published by SproutSeeds. Research stewardship: Fractal Research Group (frg.earth).

Schemas and validators for benchmark condition records, compiler receipts, and trust-boundary artifacts.

Install

npm install controller-benchmark-schemas

For local development inside this repo:

cd packages/controller-benchmark-schemas
npm test
npm pack --dry-run

What This Is

controller-benchmark-schemas is a small infrastructure package for projects that want stable, machine-readable contracts around benchmark artifacts.

It currently ships schemas and validation helpers for:

  • benchmark condition records
  • condition-record compile receipts
  • benchmark shell receipts
  • compiler coverage and trust receipts

These contracts were developed inside the partial reprogramming controller program, but the package itself is not retinal-, ocular-, or cell-type-specific.

The reusable layer is:

  • one benchmarked condition
  • one compile step
  • one evaluation run
  • one explicit trust boundary

That pattern can travel beyond a single biological domain, including beyond the current ocular benchmark lane that helped discover it.

What This Is Not

controller-benchmark-schemas is not:

  • a tissue-specific ontology
  • a matrix parser
  • a model training package
  • a wet-lab protocol library
  • a claim that the underlying biology is solved

It is a contract layer for benchmark artifacts.

Included Schemas

  • condition-record
  • condition-record-compile-receipt
  • benchmark-shell-receipt
  • compiler-coverage-trust-receipt

Quick Start

import {
  CONDITION_RECORD_SCHEMA,
  getSchema,
  validateConditionRecord,
} from "controller-benchmark-schemas";

const record = {
  condition_id: "VITA_CTRL_003",
  study_family_id: "gill_2022",
  accession_bundle: "GSE165180",
  phase_layer: "maturation_phase_bulk_plus_abstention",
  primary_evidence_class: "observed_temporal",
  supporting_evidence_classes: ["bulk_proxy_support"],
  age_signal_score: 0.83,
  age_signal_status: "strong_positive",
  identity_pressure_level: "low",
  identity_status: "bounded_support",
  risk_pressure_level: "low",
  risk_status: "bounded_support",
  active_negative_family_ids: [],
  negative_family_roles: [],
  negative_family_tiers: [],
  condition_summary:
    "Gill successful maturation branch with real later-phase timing and relatively favorable proxy identity profile.",
  source_trace: {
    source_kind: "study_specific_rule",
    derived_from: [
      "/abs/compiler-rules/gill_2022-v0.json",
      "/abs/controller-benchmark-study-corpus-v0.csv",
    ],
    notes: ["Compiled from a study-specific rule pack."],
  },
  provenance: {
    reviewer: "Codex",
    reviewed_on: "2026-04-02",
    status: "draft",
    benchmark_links: [],
  },
};

console.log(validateConditionRecord(record));
console.log(CONDITION_RECORD_SCHEMA.$id);
console.log(getSchema("benchmarkShellReceipt").title);

Expected result:

{ valid: true, errors: [] }

Package Positioning

The strongest use case is not:

"Turn a research program into npm branding."

The strongest use case is:

"Make benchmark artifacts explicit enough that multiple tools can validate, inspect, and reuse them without relying on prose memory."

API Surface

Schema exports

  • CONDITION_RECORD_SCHEMA
  • CONDITION_RECORD_COMPILE_RECEIPT_SCHEMA
  • BENCHMARK_SHELL_RECEIPT_SCHEMA
  • COMPILER_COVERAGE_TRUST_RECEIPT_SCHEMA
  • getSchema(name)
  • listSchemas()

Validation exports

  • validateConditionRecord(value)
  • validateConditionRecordCompileReceipt(value)
  • validateBenchmarkShellReceipt(value)
  • validateCompilerCoverageTrustReceipt(value)

Current Boundary

This package intentionally validates structure and constrained vocabulary.

It does not perform generic JSON Schema evaluation, and it does not infer biological correctness. That is the right first step for a package whose job is to stabilize artifact contracts.