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

@razroo/iso-contract

v0.1.0

Published

Deterministic artifact contracts for AI-agent workflows: validate, parse, and render structured records without model calls.

Readme

@razroo/iso-contract

Deterministic artifact contracts for agent workflows.

Agents are good at prose and weak at remembering exact artifact formats. iso-contract moves those formats into local JSON contracts that scripts and agents can validate, parse, and render without model calls.

It is local-only, dependency-free, and MCP-free. Use it for records such as tracker rows, batch outcomes, report headers, scan candidates, or any other workflow artifact that must remain machine-readable.

Install

npm install -D @razroo/iso-contract

CLI

iso-contract list --contracts contracts.json
iso-contract explain jobforge.tracker-row --contracts contracts.json

iso-contract validate jobforge.tracker-row \
  --contracts contracts.json \
  --input @tracker-row.json

iso-contract render jobforge.tracker-row \
  --contracts contracts.json \
  --input @tracker-row.json \
  --format tsv

iso-contract parse jobforge.tracker-row \
  --contracts contracts.json \
  --format tsv \
  --input "812	2026-04-26	Example Labs	Staff Agent Engineer	Applied	4.2/5	yes	[812](reports/812-example-labs-2026-04-26.md)	Submitted"

Every command accepts --json for machine-readable output.

Contract Shape

{
  "contracts": [
    {
      "name": "jobforge.tracker-row",
      "version": "1.0.0",
      "fields": [
        { "name": "num", "type": "integer", "required": true },
        { "name": "date", "type": "date", "required": true },
        { "name": "status", "type": "enum", "values": ["Evaluated", "Applied"] },
        { "name": "score", "type": "score" }
      ],
      "formats": {
        "tsv": {
          "style": "delimited",
          "delimiter": "tab",
          "fields": ["num", "date", "status", "score"]
        }
      }
    }
  ]
}

Supported field types:

  • string
  • integer
  • number
  • boolean
  • enum
  • date
  • datetime
  • url
  • markdown-link
  • score
  • json

Supported render/parse formats:

  • json
  • named delimited formats such as tsv
  • named markdown-table-row formats

Library API

import {
  getContract,
  loadContractCatalog,
  renderRecord,
  validateRecord,
} from "@razroo/iso-contract";

const catalog = loadContractCatalog(JSON.parse(rawContracts));
const contract = getContract(catalog, "jobforge.tracker-row");
const validation = validateRecord(contract, record);
const tsv = renderRecord(contract, record, "tsv").text;

Fit With The iso Stack

  • iso-contract defines artifact shape.
  • iso-ledger records domain events about those artifacts.
  • iso-orchestrator controls durable workflow execution.
  • iso-guard audits whether workflow policy was followed.
  • iso-trace observes what agents actually did.

For JobForge, contracts can replace repeated prompt prose for TSV rows, pipeline entries, scan candidates, report headers, and subagent outcomes.