Skip to main content

Beyond Ship and Pray

Testing and validating agentic AI systems.

Most teams ship an agent and pray it behaves in production. This is the open alternative — a discipline for proving it first and watching it after. Before deployment: design-of-experiments test suites, fault injection, trajectory scoring, groundedness/hallucination checks, and a validation report you can hand to a reviewer. At runtime: gates that detect and stop out-of-scope, risky, or policy-violating actions before they execute (ALLOW / DENY / ESCALATE), with a tamper-evident, hash-chained audit trail.

The baseline runs with no license and no GMS. For production-grade detection — geometric hallucination judging, calibrated admissibility, signed verdicts — the optional GMS backend (knowlytix) snaps in via a lazy seam. Clone it, run the baseline, see exactly where GMS lifts detection and validation.

Part of the "Beyond … and Pray" series: governed agents · trustworthy RAG · test & validate · LLMs from scratch

What's inside

  • Validation reports — DoE test design, fault injection, coverage, trajectory scoring
  • Catalog-driven test suites — build scenarios from base/factor catalogs, emit SFT data, and score a system-under-test (proofloop.suite)
  • Runtime monitoringALLOW / DENY / ESCALATE gates that stop bad actions live
  • Hallucination & groundedness checks — catch unsupported claims pre- and post-deploy
  • Tamper-evident audit — hash-chained record of every decision and stop
  • Two runnable demos — validation-report generator + live monitoring view
  • GMS-optional — baseline runs free; geometric judging & calibration via knowlytix

Install

pip install proofloop                 # testing + validation + runtime monitoring
pip install "proofloop[ml]"           # + open-weight model tools
pip install "proofloop[gms]"          # + the licensed GMS backend (knowlytix)

proofloop builds on forgeloop (the governed agent loop) and adds the testing, validation, and monitoring layer.

Quickstart

Declare the behavior space you care about; get a balanced test matrix that covers it (instead of cherry-picked cases):

from proofloop.evaluation import balanced_design, coverage_report

FACTORS = {"risk": ["benign", "pii", "injection"], "channel": ["email", "chat"]}
design = balanced_design(FACTORS, num_cases=6, seed=7)
print(coverage_report(design, FACTORS))
# -> {'risk': {'benign': 2, 'pii': 2, 'injection': 2}, 'channel': {'email': 3, 'chat': 3}}

Build a full test suite from catalogs

For richer suites, proofloop.suite builds scenarios from base/factor catalogs, holds ground truth invariant, and scores a system-under-test — all on the open baseline (no GMS required):

from proofloop import suite as ts

cat = ts.Catalog.load()                                   # bundled base/factor/profile catalogs
sv = ts.resolve(cat, ["exact_recall"], ["clarity"], mode="embedded")
src = ts.UserBaseSource([{"query": "What is the overdraft fee?", "answer": "35"}])
scenarios = ts.compose(sv, src.items(), n_runs=30, seed=7)

rows = ts.evaluate.run(scenarios, my_sut)                 # my_sut(query, context="") -> answer
print(ts.evaluate.summary(rows))                          # {'n': 30, 'accuracy': ...}

The open-core seam runs the same call sites; knowlytix upgrades three of them: simple_designgraphdoe_design (Sobol space-filling), UserBaseSourceCatalogBaseSource (mine a GMS store), and weak_linkattribute (calibrated logistic factor attribution).

Run the two demos

The headline capabilities — a validation report and live runtime monitoring — are runnable demos. Clone the repo (the demos aren't shipped in the wheel):

git clone https://github.com/knowlytix/beyond-ship-and-pray
cd beyond-ship-and-pray
pip install proofloop                       # pulls forgeloop from PyPI automatically
python demos/runtime_monitoring.py          # live ALLOW / DENY / ESCALATE + audit chain
python demos/validation_report.py           # DoE report -> demos/out/validation_report.html

Both run on the open baseline with no license. With the licensed knowlytix backend and a trained store, the same demos show the real geometric gate — see demos/README.md.

The GMS upgrade (open-core)

proofloop runs fully without a license. GMS-backed detection — geometric hallucination judging, factor attribution, signed verdicts — requires the licensed knowlytix package, imported lazily:

import forgeloop.gms as gms
gms.available()   # True if the licensed backend is installed

The GMS-native chapters (notebooks 2028: knowledge graphs, GEODE, base sourcing, enrichment/training capstones) need the backend. It's a one-time setup: get a free developer license, install knowlytix, and every GMS notebook runs.

The production-grade, GMS-native edition is the Beyond Ship and Pray, Pro Edition — see knowlytix.ai.

License

Apache-2.0. © 2026 Knowlytix.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

proofloop-0.1.5.tar.gz (44.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

proofloop-0.1.5-py3-none-any.whl (48.3 kB view details)

Uploaded Python 3

File details

Details for the file proofloop-0.1.5.tar.gz.

File metadata

  • Download URL: proofloop-0.1.5.tar.gz
  • Upload date:
  • Size: 44.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for proofloop-0.1.5.tar.gz
Algorithm Hash digest
SHA256 6488f4f55be8308939344d0b1298231380cd9f8724da7f01eb5fda2c6771665b
MD5 906ab2245ff4400702157e9020f8e873
BLAKE2b-256 357a42e7bca7f5e7dff0b0ee050ca20d525ca0923c55daf9528541150bcb914d

See more details on using hashes here.

Provenance

The following attestation bundles were made for proofloop-0.1.5.tar.gz:

Publisher: publish.yml on knowlytix/beyond-ship-and-pray

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file proofloop-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: proofloop-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 48.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for proofloop-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 64c08db72514f728f626ad5397527a9ad77c9e4080de75fd1ac0612d527e8fd6
MD5 ac487f4a887c12ca62589488702ed32a
BLAKE2b-256 72960c6c723db05b5c994ba1e080bb02b4010a1dc562bd0316fc924edc351a60

See more details on using hashes here.

Provenance

The following attestation bundles were made for proofloop-0.1.5-py3-none-any.whl:

Publisher: publish.yml on knowlytix/beyond-ship-and-pray

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page