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

@ordinatio/core

v1.1.1

Published

Shared types, covenants, construction standards, admission pipeline, council orchestrator, intermittent machine, and Pugil integration bridge for the Ordinatio architecture.

Readme

@ordinatio/core

Shared types, covenants, construction standards, admission pipeline, council orchestrator, intermittent machine, and Pugil integration bridge for the Ordinatio architecture.

This is the foundational package that all other @ordinatio/* packages depend on for shared type definitions, architectural primitives, and governance infrastructure.

559 tests. Zero runtime dependencies.

What's in the box

| Module | Location | Purpose | |--------|----------|---------| | Covenants | src/covenants/ | 17 module covenants (12 Canonical + 5 Ecclesial), capability registry, covenant types | | Construction Standards | src/construction/ | Book V codified: covenant validator, Builder's Questions, boundary checker, complexity meter, pre-disputation audit, module scaffolder | | Admission Pipeline | src/admission/ | Book VI codified: 5 mechanical gates (structural, permission, conflict, governance, sandbox), pipeline orchestrator, module registry, council admission workflow | | Council Orchestrator | src/council/ | Book II codified: Scholastic Method engine, 8 Offices, artifact helpers (SHA-256), artifact validator, office briefs, stall detection, freeze/resume | | Intermittent Machine | src/execution/ | Book IV codified: wake-on-event execution, awakening classification, budget tracking, governance evaluation, pause/resume via ContinuationToken | | Pugil Bridge | src/council/pugil-bridge.ts | Converts Vitest test results into TrialReportContent artifacts for Council consumption |

Installation

npm install @ordinatio/core

Pugil Integration Bridge

The Pugil bridge converts test suite results into Council-consumable trial_report artifacts. Used by all @ordinatio/* packages that implement Pugil reporters.

import {
  buildTrialReport,
  createTrialArtifact,
  assessOverall,
  extractIssues,
} from '@ordinatio/core';
import type { PugilTestResult, PugilSuiteResult, PugilTestCategory } from '@ordinatio/core';

// Build a trial report from test results
const report = buildTrialReport(suiteResult);

// Create an artifact for Council consumption
const artifact = createTrialArtifact(report, cycleId);

Test categories: unit, integration, chaos, adversarial, concurrency

Testing

pnpm --filter @ordinatio/core test:run
# 559 tests

Documentation

Pugil Integration

This package includes a Pugil reporter that generates Council-consumable trial_report artifacts from test results.

# Normal test run (no Pugil overhead)
pnpm --filter @ordinatio/core test:run

# With Pugil trial report generation
PUGIL_ENABLED=true pnpm --filter @ordinatio/core test:run

# With Council cycle integration
PUGIL_ENABLED=true PUGIL_CYCLE_ID=cycle-core-v1 pnpm --filter @ordinatio/core test:run
  • Config: src/pugil.config.ts — maps test files to categories (unit, integration, adversarial, chaos, concurrency)
  • Reporter: src/pugil-reporter.ts — Vitest custom reporter, writes to pugil-reports/
  • Types: PugilTestResult, PugilTestCategory from @ordinatio/core

License

MIT