
This page names every place the tool touches: the one network call it makes, the two places it writes, the packages it ships, and what an audit cannot promise. Where a claim lives in the source, its path is on this page.
A measurement makes exactly one kind of network call: to the local model runtime, on this machine's loopback address by default. The source has four places that send a document, and each one first passes a guard that refuses any host that is not this machine, with the refusal written in plain words.
The guard is not a habit, it is enforced: a structural test walks every source file, finds each send site, and fails the suite if a fifth site appears without the guard. The only way around it is an explicit flag written into the command line, where an auditor can see it.
Run the test suite. The structural test walks the sources, finds every send site, and fails if one of them has lost its guard.
npm testfails if a send site loses its guardWhere it livessrc/tiers.ts:523 · src/frontiere.test.ts:33
Inference runs locally, on four sets of model weights, pinned by revision and by SHA‑256 per file, cached on disk and verified before anything is written. Two nuances, because they matter to a bank:
The pinned revisions and the per-file hashes live in the source; the refusal to run on altered weights is itself tested.
npm testrefuses to run on absent or altered weightsWhere it livessrc/poids.ts:66 · src/poids.test.ts:129
Four things, and nothing exotic:
The engine requirement is declared in the manifest; the memory floor is written into every timing record the bench refuses to publish.
node --versionyours, against the declared minimumWhere it livespackage.json:53 · src/tiers.ts:295
The tool reads only the files you name by flag. It never scans a disk.
It writes to exactly two places: its own records, under its repository root, in a folder that git ignores so nothing measured on your data can travel into a public repository; and one report deposited beside the file you pointed it at, named after that file. The one record that is versioned — the egress observation — has your file paths replaced by a placeholder before it is written, and a journal header records no machine name and no user name.
One production dependency and two development dependencies; 77 packages in the lockfile, each with a content hash, of which 51 install on a given machine (the rest are per‑platform variants). Their licences are classified by a generator, not by hand: 50 permissive, 1 with obligations, 0 blocking, 0 undetermined, re‑checked on every test run. A CycloneDX software bill of materials ships with the tool.
The repository itself has no install‑time script beyond wiring its own git hooks. Two transitive production packages do carry install scripts; on macOS and Windows they touch nothing beyond the npm registry, and on one platform — linux/x64 — one of them fetches optional GPU providers from a second registry at install time. npm ci --ignore-scripts neutralises both, and loses nothing on the documented CPU path.
The licence table and the test count are generated, and each carries a checker that fails the suite when the document drifts from the sources.
node src/licences.ts --checkfails when the licence table driftsnode src/readme.ts --checkfails when the test count driftsThe licence is PolyForm Noncommercial: source‑available. Anyone may read, study and fork the code with no time limit, and an evaluation grant lets any organisation run it on its own data, internally, for thirty days. One honest limit: it is not an OSI‑approved licence, and some organisations exclude such licences by policy.
The tool also watches itself run, sampling open connections during a measurement, and publishes what it saw. That record carries its own stated limit: sampling can show presence, never absence. The guarantee on this page is the guarded code path and the test that patrols it, not the observation.
And the figures here are guarded the same way as everywhere on this site: 596 tests across 66 files, a sentence generated from the sources and re‑checked on every test run, so it cannot silently rot.