Skip to main content

Beyond Prompt and Pray

Building policy-governed AI agents from scratch.

Most agent code is "prompt and pray" — you wire up a model, hand it tools, and hope it stays in scope. This is the open, inspectable alternative: an agent loop you can read in an afternoon, with typed actions, runtime gates that detect and stop risky or out-of-scope behavior before it executes, multi-axis budgets, human escalation, and a tamper-evident audit log. Everything runs on the standard library plus pydantic — the baseline works with no license and no GMS.

For production-grade guarantees — geometric plausibility, 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

  • Governed agent loop — generator-based, every step inspectable
  • Runtime gatesALLOW / DENY / ESCALATE, stop bad actions before they run
  • Typed actionsToolCall / AskUser / Finish / Escalate
  • Budgets — token / time / tool-call / dollar caps, first-class
  • Human escalation — reviewer protocol, not an error path
  • Tamper-evident audit — hash-chained record of every decision
  • GMS-optional — baseline runs free; geometric guarantees via knowlytix

Install

pip install forgeloop                 # core: loop, typed actions, tools, gates, audit, planning, memory
pip install "forgeloop[ml]"           # + open-weight model tools (torch, transformers)
pip install "forgeloop[gms]"          # + the licensed GMS backend (knowlytix; see below)

Quickstart

A gate (or policy) is just (action, state) -> ALLOW / DENY / ESCALATE:

from forgeloop.core import ToolCall
from forgeloop.governance import pii_policy

action = ToolCall(tool_name="send_reply", arguments={"message": "Your SSN is 123-45-6789."})
verdict = pii_policy(action, None)
print(verdict.decision.value, "—", verdict.reason)   # escalate — detected PII: ssn

Those policies compose into a GovernanceHarness that runs gates before each agent action. For the full live ALLOW / DENY / ESCALATE stream and the hash-chained audit trail, see the runnable demos in beyond-ship-and-pray.

The GMS upgrade (open-core)

forgeloop runs fully without a license. The GMS-backed features — geometric plausibility gate, calibrated admissibility, signed verdicts — require the licensed knowlytix package, installed separately. forgeloop imports it lazily:

import forgeloop.gms as gms
gms.available()   # True if the licensed backend is installed
gms.require()     # returns knowlytix, or raises with install instructions

The production-grade, GMS-native edition is the Beyond Prompt 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

forgeloop-0.1.3.tar.gz (106.1 kB view details)

Uploaded Source

Built Distribution

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

forgeloop-0.1.3-py3-none-any.whl (138.8 kB view details)

Uploaded Python 3

File details

Details for the file forgeloop-0.1.3.tar.gz.

File metadata

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

File hashes

Hashes for forgeloop-0.1.3.tar.gz
Algorithm Hash digest
SHA256 9fe18716dfab283128e2e2949690ecb5d3d27f94f9f1385680e60b5c1351577a
MD5 1f6abac793abb92c62294f92c9c70557
BLAKE2b-256 80a9252dee4a20b0dcc847f5706ab2f8f744114382493ea2595c908678628ea7

See more details on using hashes here.

Provenance

The following attestation bundles were made for forgeloop-0.1.3.tar.gz:

Publisher: publish.yml on knowlytix/beyond-prompt-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 forgeloop-0.1.3-py3-none-any.whl.

File metadata

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

File hashes

Hashes for forgeloop-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 73700a368b8dfe000cfa1e363163d14eccdde64ccf397171cb56ae37c81d8c9f
MD5 b77b045e97578dbbb671eb20fcc4afb7
BLAKE2b-256 952741e727dc18b931cf586c4e3a76ada0921b9fe2a9644ccab066da80114aca

See more details on using hashes here.

Provenance

The following attestation bundles were made for forgeloop-0.1.3-py3-none-any.whl:

Publisher: publish.yml on knowlytix/beyond-prompt-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