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

@adlc/rails-guard

v1.11.0

Published

Rail-freeze enforcement and suppression-marker gate — blocks builder edits to frozen paths (C5).

Readme

rails-guard

Rail-freeze enforcement and suppression-marker gate (ADLC C5).

Blocks builder edits to declared frozen rail paths during P4, and greps added diff lines for suppression markers that escape test/lint coverage. On a clean pass it can record a rails-diff-empty proof in the gate manifest.

ADLC Phase

C5 — P3/P4 enforcement. Sits in the CI gate between P3 (charter / planning) and P4 (builder execution). Guards two invariants simultaneously:

  1. Rail-freeze: declared rail paths (test files, contract types, CI config) must not be touched by the builder during P4.
  2. Suppression-marker gate: newly added .skip(, .only(, xfail, @ts-ignore, @ts-expect-error, eslint-disable, # noqa, #[ignore] lines are blocked unless the active ticket's body contains an explicit allow-suppression: <marker> declaration. Prose documentation files (.md, .markdown) are exempt from this scan — a marker in prose is never an executed suppression, and docs (including this README) legitimately name the markers when describing the rule. .mdx is not exempt: it compiles to JSX/TS and can carry operative suppressions, so it is scanned like code.

Usage

rails-guard [--base <ref>] [--ticket <id>] [--tickets <path>] \
            [--rails <glob>...] [--record] [--json]

Flags

| Flag | Default | Description | |------|---------|-------------| | --base <ref> | HEAD | Git ref to diff against | | --ticket <id> | — | Load rails and allow-suppression declarations from this ticket | | --tickets <path> | .adlc/tickets.json | Path to tickets file | | --rails <glob> | — | One or more frozen-path globs (repeatable; overrides ticket.rails) | | --record | off | On a clean pass, append a manifest entry to .adlc/manifest.jsonl | | --json | off | Emit machine-readable JSON result | | --help | — | Print this help and exit 0 |

Rail source resolution

  1. If --rails globs are supplied they are used directly.
  2. Otherwise --ticket must be provided; rails come from ticket.rails.
  3. If neither is available the tool exits 1 (operational error).

allow-suppression declarations

To permit a specific suppression marker, add this exact text to the ticket body:

allow-suppression: @ts-ignore
allow-suppression: .skip(

One declaration per line; case-sensitive; marker text must match exactly.

Examples

# Check that no frozen test files were touched, fail on any suppression
rails-guard --rails "test/**" --rails "schema/**"

# Use rails declared in ticket T42; allow .skip( for known broken test
rails-guard --ticket T42 --tickets .adlc/tickets.json

# Diff against a feature branch base commit
rails-guard --rails "test/**" --base origin/main

# CI gate with machine-readable output + manifest record on clean pass
rails-guard --rails "test/**" --json --record

Output

Human-readable (default)

Clean:

rails-guard: all checks passed

Violations:

rails-guard: 2 violation(s) found
  [rail-edit]   test/auth.test.ts  (matched globs: test/**)
  [suppression] src/foo.ts:12  marker: @ts-ignore
                  // @ts-ignore

JSON (--json)

{
  "tool": "rails-guard",
  "base": "HEAD",
  "ticket": "T42",
  "railGlobs": ["test/**"],
  "railGlobError": null,
  "railsDiffEmpty": true,
  "suppressionsClean": false,
  "passed": false,
  "violations": [
    {
      "file": "src/foo.ts",
      "type": "suppression",
      "marker": "@ts-ignore",
      "lineNo": 12,
      "line": "// @ts-ignore"
    }
  ]
}

Manifest record (--record, clean pass only)

Appended to .adlc/manifest.jsonl:

{
  "ts": "2026-06-10T12:00:00.000Z",
  "type": "rails-check",
  "ticket": "T42",
  "base": "HEAD",
  "railsDiffEmpty": true,
  "suppressionsClean": true,
  "railFiles": {
    "test/auth.test.ts": "abc123...",
    "schema/types.ts": "def456..."
  }
}

railFiles contains the SHA-256 of every repo file that matches a rail glob at the time of the clean pass — a content-addressed snapshot usable for auditing.

Exit codes

| Code | Meaning | |------|---------| | 0 | Gate passes — no violations | | 1 | Operational error — not a git repo, bad input, no rails resolvable | | 2 | Gate fails — violations found (list printed to stderr / JSON) |

Violation types

| type | Meaning | |--------|---------| | rail-edit | A changed file matches a frozen rail glob | | suppression | An added line contains a suppression marker not declared in the ticket |

Immutable trust roots (CI gate)

The CI backstop adlc rails-guard-ci freezes a second set of paths on top of the active ticket's rails: the immutable trust roots (#140). A trust root is a file whose contents decide what the gate enforces — the config, the ticket-store manifest, CODEOWNERS, the deployed workflow, and the gate's own sources. They are frozen unconditionally, because a PR that can edit the enforcer can edit away its own enforcement.

The default set lives in DEFAULT_IMMUTABLE_TRUST_ROOTS (lib/ci/trust-roots.mjs) and applies to every repo with no configuration:

.adlc/config.json                  .adlc/admin.pub
.adlc/tickets/.store.json          .github/workflows/adlc-rails-guard.yml
CODEOWNERS · .github/CODEOWNERS · docs/CODEOWNERS
docs/ci/rails-guard.yml            scripts/rails-guard-ci.mjs
packages/rails-guard/lib/ci/**     packages/rails-guard/bin/rails-guard-ci.mjs
packages/rails-guard/bin/rails-guard.mjs
packages/rails-guard/lib/trust-root-authorization.mjs

package.json and .npmrc are NOT in the default set. They were briefly added during the 1.11.0 development window and removed again before release: every Node repo has them and edits them constantly, so freezing them by default turns an ordinary dependency bump into a denied PR that the consuming repo cannot opt out of. A repo that does want them frozen — the ADLC repo itself does, because its documented entry points resolve through scripts and npm execution flags — declares them with --trust-root.

Extending the set

--trust-root <path> (repeatable) adds a repo-specific trust root. It only ever extends the defaults; nothing on the command line can shrink them. Supplying them this way is safe because the caller that passes them is itself a default trust root, so a PR cannot drop the arguments without editing a frozen file.

adlc rails-guard-ci --base origin/main \
  --trust-root .github/workflows/ci.yml \
  --trust-root package.json

Changing a trust root

A diff that modifies, deletes, or renames a trust root exits 2 unless the #141 ceremony authorizes it: apply the trust-root-change label and obtain an approving review from a non-author CODEOWNER of the changed path. The alternative is the protected-base admin path. Authorization lifts only the specific trust-root paths the ceremony approved — never a rail a ticket declared.

Version-only exemption. A change to a package manifest (package.json, plugin.json, marketplace.json) whose only differences are version fields and lockstep @adlc/* dependency repins is a mechanical release bump, not a trust-root change, and passes without the ceremony (ADR 0012). Any other edit — a scripts change, a third-party dependency bump — is a trust-root change. .npmrc is not a manifest and has no exemption.

Sibling tools

  • flail-detector (C6): uses --record manifest entries to verify no builder session slipped past the gate.
  • consensus-fix (C7): runs every candidate fix through rails-guard before accepting it as a survivor.
  • merge-forecast: reads manifest.jsonl to surface gate history alongside merge risk.

Core gaps

None. All required APIs (globMatch, hashFiles, appendEntry, changedFiles, gitDiff, loadTickets) are present in @adlc/core.