DSAIL Quickstarts Guides Compare REST MCP tools Errors

DSAIL, for agents

Turn a written policy into rules a program can check, and get the same answer every time. What DSAIL is, what it answers, and the one-page route in from each surface.

DSAIL takes a policy written in English, turns it into a formal ruleset, and returns — for every assertion in that ruleset — exactly one of four results over the claim values you extract from a document: TRUE, FALSE, UNKNOWN or AMBIGUOUS. A FALSE comes with the rule that decided, with a counterexample. Given the same ruleset and the same claim values, the bytes that come back are identical every time, through every door.

There is no model in the loop. The service never calls a language model: you extract the claim values, on your own model, using the prompt pack the service generates from the ruleset. What crosses the wire is a schema-bounded claim dictionary, never the document.

What it is for

What it is not

Not an authorization engine (see OPA and Cedar); not an output filter or jailbreak defence (see guardrail frameworks); not a document store; not an extraction service. It compiles rules and solves them, and it stops there.

The route in, per surface

Each quickstart is install, one command, a result.

You are working inPage
claude.ai (a custom connector)Quickstart: claude.ai
ChatGPT (a private app)Quickstart: ChatGPT
Claude CodeQuickstart: Claude Code
Codex CLIQuickstart: Codex
Anything that speaks HTTPQuickstart: REST

The sequence, always

  1. Restate the policy in plain English and get the user's confirmation before writing any DSAIL.
  2. compile the DSAIL source until it is clean. The result is a content hash that addresses exactly these bytes, plus the claim manifest: every question a document will be asked.
  3. Show the ruleset to a person (review), and record their approval against the hash.
  4. Fetch the prompt pack, run the extraction on your model, and check the claim dictionary. Read each assertion's result in the rules' own four words.

Contract, before you connect

Every page here is markdown; llms.txt at the root lists all of them.