Command line
The Rules block ships four top-level kis commands: rules runs a rule set over JSON inputs,
optionally with the bounding-box document and page image beside each one; ocr detects form
controls on a scanned page; bbox inspects a bounding-box document without running any rules; and
hocr2bbox converts hOCR into the .bbox files the others consume.
kis rules is the only command that runs rules. kis ocr page and kis ocr doc used to be a
separate implementation of it and have been removed.
| Command | What it does | Runs rules |
|---|---|---|
kis rules | Runs a rule set over JSON inputs, one execution per input or one over all of them | yes |
kis ocr checkbox | Detect checkboxes on a page and print their states | no |
kis ocr radio | Detect radio buttons on a page and print their states | no |
| kis bbox tables | Detect and print every table | no |
| kis bbox table | Print the one table nearest an anchor | no |
| kis bbox phrase | Find a phrase, with page, coordinates and context | no |
| kis bbox snippet | Extract text between two phrases | no |
| kis bbox snippets | Extract several named snippets in one pass | no |
| kis hocr2bbox | Convert hOCR to .bbox JSON | no |
The document surface is not CLI-only. rules.svc reaches the same capabilities — the document
model, OCR ingestion, field, form and checkbox extraction, tables and repeaters, matching and
confidence, and the document bindings a rule calls. What differs is where the input comes from:
these commands read .json and .bbox files from disk, while the service takes the same document
input on its execute-rule request. The kis bbox subcommands are local inspection tools — they
print what they found and run no rules. See
Running the service.
Installing the commands
Section titled “Installing the commands”All four commands are proxy stubs on the kis binary. Each one forwards its arguments verbatim to a
separately installed rules plugin executable, which is where the actual implementation lives. kis
looks for that executable in this order and takes the first executable match:
- The directory containing the running
kisbinary. ~/.kisai/bin/.- Every entry of
$KIS_PLUGIN_PATH. - Every entry of
$PATH.
kis also passes the program name you typed to the plugin, so kis rules --help prints
Usage: kis rules [flags].
Global flags
Section titled “Global flags”Because the proxy commands disable flag parsing, flags for kis itself must come before the
command name. Anything after it is forwarded to the plugin untouched.
kis --quiet rules -r rules/ -i pages/| Flag | Short | Type | Default | Meaning |
|---|---|---|---|---|
--quiet | -q | bool | false | Suppress non-error output |
--tenant | string | "" | Tenant override | |
--log-level | -l | string | error | trace, debug, info, warn, error |
--log-to | string | stderr | stderr, stdout, or a file path | |
--log-format | string | text | text or json | |
--env-file | string | "" | Env YAML file to use instead of ~/.kisai/env.yaml |
The plugin itself understands -l/--log-level and --env-file anywhere after the command name, so
kis rules -l debug ... works. The other four are interpreted only in the leading position.
Environment variables on this path: KIS_PLUGIN_PATH (extra plugin search directories), KIS_ENV
(selects the active env.yaml block), KIS_ENV_FILE (overrides the global env file), and
KIS_DEBUG, KIS_QUIET, KIS_TENANT, KIS_LOGLEVEL, KIS_LOGTO, KIS_LOGFORMAT, which seed the
context handed to the plugin.
Flag defaults from env.yaml
Section titled “Flag defaults from env.yaml”Before a command runs, any flag you did not type on the command line is filled from env.yaml. Keys
are the flag’s long name verbatim — lowercase, no prefix, no command nesting.
# ./env.yaml, or ~/.kisai/env.yamldefault: workers: 4 pattern: "page*.json" log-level: infoTwo files feed flag defaults, lowest precedence first: the global file ($KIS_ENV_FILE or
~/.kisai/env.yaml), then ./env.yaml. Within each file only the block named by $KIS_ENV is read,
falling back to default. Resolution is: explicit flag > env.yaml > compiled-in default. The
ambient OS environment never feeds flag values. env-file cannot be set this way — it selects the
file being loaded.
kis rules
Section titled “kis rules”kis rules -r <rulefile|ruledir> [input...]Runs a rule set over JSON inputs. Each input’s top-level keys become the facts a rule reads.
A positional argument may be a directory (globbed with -p), a .json or .bbox path (the
extension is stripped), or a bare name resolved against -i. With no positional arguments the -i
directory itself is globbed. Duplicates are removed.
kis rules -r rules/ -i pages/kis rules -r rules/ pages/page1.jsonkis rules -r rules/ pages/*.jsonkis rules -r rules/ --with-bbox --with-image -i pages/kis rules -r rules/ --with-bbox --mode doc -o result.json pages/kis rules -r rules/ -i pages/ --updatekis rules -r rules/ --validate --strict| Flag | Short | Type | Default | Meaning |
|---|---|---|---|---|
--rules | -r | string slice | — (required) | Rule file or directory of rules |
--input | -i | string | . | Base directory for resolving inputs |
--pattern | -p | string | *.json | Basename glob for directory arguments, non-recursive |
--skip-pattern | string slice | nil | Extra basename globs to exclude | |
--mode | string | each | each runs once per input, doc merges every input and runs once | |
--output | -o | string | "" | Directory in --mode each, file in --mode doc; stdout when unset |
--update | bool | false | Merge results into the source .json (--mode each only) | |
--key | -k | string | "" | Nest the result under this key |
--ruleset | string | rules | Name the rule set is compiled and executed under | |
--workers | -w | int | 1 | Parallel executions in --mode each, clamped to [1, inputs] |
--facts-key | string | pages | In --mode doc, the key holding the per-input facts array | |
--facts | -f | string slice | nil | Extra fact file, key=path or bare path |
--vars | -v | string slice | nil | key=value facts, injected as strings |
--bbox | -b | string slice | nil | Bounding-box document to inject, [name=]path (default name bbox) |
--with-bbox | bool | false | Load <input>.bbox beside each input | |
--require-bbox | bool | false | Implies --with-bbox; an input without a sidecar is dropped | |
--bbox-name | string | per mode | Name the sidecar is injected under: page in each, doc in doc | |
--with-image | bool | false | Load the page image beside each input and attach it to the sidecar | |
--require-image | bool | false | Implies --with-image; an input without one is dropped | |
--image | string slice | nil | Page image for a named document, [name=]path | |
--schema | string slice | nil | A .schema file to register (repeatable) | |
--schemas | string slice | nil | Directory of *.schema files, non-recursive | |
--recursive | -R | bool | false | Recurse when discovering rule files |
--validate | bool | false | Check rule calls against the registered facts; execute nothing | |
--strict | bool | false | With --validate, exit non-zero on any error diagnostic | |
--history | bool | false | Print the history of value changes | |
--audit | bool | false | Print the audit log | |
--history-audit | string | "" | Directory for the -hist-audit.json sidecars | |
--debug | bool | false | Print load, worker and write progress |
--rules, --facts, --vars, --bbox, --image, --schema and --schemas are repeatable and
also split on commas, so -r a.grl,b.grl is two values and a path containing a comma breaks.
*-hist-audit.json is always excluded from input matching, in addition to any --skip-pattern you
give. An invalid --skip-pattern glob fails up front with invalid --skip-pattern "<pat>": <err>.
Fan-out: —mode each and —mode doc
Section titled “Fan-out: —mode each and —mode doc”--mode each (the default) runs the rule set once per input, across --workers goroutines. Each
input’s own JSON keys are its facts.
--mode doc merges every input’s .bbox into one multi-page document under --bbox-name, injects
the per-input facts as an array under --facts-key, and runs the rule set exactly once. Merging
renumbers pages: each page’s number, and each word’s page, becomes a sequential index over the
whole merged document. There is no --workers — it is a single execution.
kis rules -r rules/ --with-bbox --mode doc -i pages/kis rules -r rules/ --with-bbox --mode doc --facts-key documents pages/A .bbox that does not parse fails the merge, naming the file.
Output modes
Section titled “Output modes”With neither -o nor --update, results go to stdout:
kis rules -r classify.grl -i pages --with-bbox --history --audit page1--- History for /work/pages/page1.json --- 1. [DetectInvoice] doctype = "invoice"
--- Audit for /work/pages/page1.json --- 1. [DetectInvoice] executed 2. [DetectInvoice] matched the phrase 'Invoice Number'
Result for /work/pages/page1.json:{ "doctype": "invoice"}Processed 1/1 input(s) successfullyThe executed audit entry is added by the engine for every rule that fires; the second line is the
rule’s own audit.Log call.
-o writes the rule results alone to the mirrored path under that directory, leaving the source
untouched. --update merges the results back into the source .json. An execution that produced an
empty result map writes nothing at all.
-o used to write nothing without --update, so -o out/ --update is the idiom in older scripts.
It still works: -o wins, and a warning notes that --update was redundant.
warning: --update is redundant with -o and was ignored; -o writes the rule results and leaves the source untouchedkis rules -r rules/ -i pages/ -o results/ -k rules_resultkis rules -r rules/ -i pages/ --updateIn --mode doc, -o names a file, and a directory of that name is refused up front rather than
failing inside the write.
Injecting facts, variables and documents
Section titled “Injecting facts, variables and documents”kis rules -r rules/ -i pages/ -f ref=lookup.json -v env=prod -b mydoc=pages/page1.bbox-f key=path nests the file’s contents under key; a bare -f path merges the file’s top-level
keys into the fact root. -v values are always strings — -v threshold=10 gives a rule the string
"10", never the number. Variables overlay facts loaded from -f.
For a sidecar per input, use --with-bbox, and name it to match what your rules call:
kis rules -r classify.grl -i pages/ --with-bbox --bbox-name pageAn explicitly named -b of the same name overrides the discovered sidecar rather than racing it.
Page images: —with-image
Section titled “Page images: —with-image”--with-image loads the page image sitting beside each input — same basename, .png, .jpg,
.jpeg, .tif or .tiff, first match wins in that order — and attaches it to the sidecar document.
This is what makes checkbox and radio state read from ink rather than be guessed from OCR glyphs. It
requires --with-bbox, since the image attaches to a document, and it cannot combine with
--mode doc, since visual fusion is per page and that mode produces one multi-page document. Both
combinations are refused up front.
kis rules -r forms.grl -i pages/ --with-bbox --with-imagekis rules -r forms.grl -i pages/ --with-bbox --image page=scan-hi-res.pngAn image that is found but cannot be decoded is an error, not a silent downgrade to text-only:
decoding page image <path>: image: unknown format. A sidecar image that is simply absent leaves the
run text-only unless --require-image was given, which drops the input and reports it.
Registering schemas
Section titled “Registering schemas”kis rules -r rules/ --schema schemas/invoice.schema -i pages/kis rules -r rules/ --schemas schemas/ --mode doc pages/The filename minus .schema is the name rules call it by, so invoice.schema registers as
invoice. --schemas is non-recursive. Duplicate names across --schema and --schemas are a hard
error. See Schema-driven extraction.
Checking a rule set without running it
Section titled “Checking a rule set without running it”kis rules -r rules/ --validatekis rules -r rules/ --validate --strict--validate resolves every call in the rule set against the registered facts and prints diagnostics
without reading any input, so no -i is needed. The bounding-box plugin is registered
unconditionally under --validate so bbox.* calls are checked too. Files that failed to parse are
listed first — they are not in the rule set to be checked at all — then error diagnostics with their
snippet, then warnings rolled up by kind. --strict turns any error, or any unparsed file, into a
non-zero exit.
Bad:3: error: bbox has no method NoSuchMethod then bbox.NoSuchMethod("page");
1 diagnostic(s): 1 error(s), 0 warning(s)kis ocr
Section titled “kis ocr”kis ocr checkbox <image|hocr|bbox>...kis ocr radio <image|hocr|bbox>...Detects form controls on a page and prints their states as JSON. These run no rules. Full flag detail is in Extraction.
Which name a rule uses
Section titled “Which name a rule uses”| Invocation | Flag that sets the name | Default name |
|---|---|---|
kis rules -b [name=]file | the name= prefix | bbox |
kis rules --with-bbox | --bbox-name | page |
kis rules --with-bbox --mode doc | --bbox-name | doc |
The same run over HTTP
Section titled “The same run over HTTP”rules.svc runs a document rule set from the same inputs. Facts sit at the top level of the request
body exactly as they do in an input .json, and documents arrive under the reserved bbox key,
keyed by the name the rules address them by — the HTTP counterpart of -b <key>=<file> and
--bbox-name.
curl -X POST https://rules.example.com/rule -H 'Authorization: Bearer <tenant-jwt>' -H 'X-Customer: acme' -H 'X-Product: erp' -H 'X-Env: prod' -H 'X-Tenant: eu1' -d @request.json{ "name": "rules", "doctype_hint": "invoice", "bbox": { "page": { "pages": [ { "number": 1, "width": 1224, "height": 1584, "words": [] } ] } }}Each document value is the .bbox JSON kis hocr2bbox produces, sent inline instead of read from
disk. The response is the out map — the same object kis rules prints under Result for .... The
name match is as strict as it is on the CLI: bbox.Get("page") needs a bbox entry called page.
kis bbox
Section titled “kis bbox”Read-only analysis of .bbox files. No rules are loaded and nothing is written back to the input.
Every subcommand concatenates its repeatable -i/--input values with its positional file
arguments and treats the result as one input list, so shell globs and -i mix freely. All pages
across all inputs are renumbered sequentially into one merged document before analysis. -i,
--snip and -H are taken literally — they do not split on commas, so repeat the flag instead.
A miss is not an error. No matches found for phrase: "<p>", No snippet found between "<s>" and "<e>", No table found near anchor: <a> and No tables detected. are all printed to the output
stream — so they land in an -o file too — and the command exits 0. Of the checks these commands
run on what they found, only bbox table -H validation failure exits non-zero. An unreadable input
file always exits non-zero.
kis bbox tables
Section titled “kis bbox tables”kis bbox tables [files...]| Flag | Short | Type | Default | Meaning |
|---|---|---|---|---|
--input | -i | string array | nil | Path to a bounding-box file (repeatable) |
--format | -f | string | text | text, json or csv |
--output | -o | string | "" (stdout) | Output file path |
kis bbox tables data/page1.bboxkis bbox tables *.bbox -f csv -o tables.csv=== Table 1 (Page 1) ===Dimensions: 2 rows x 3 columns
Invoice | Number | INV-42Total | | 120.00Cells are padded to the widest value in their column, minimum width 3. When the table has detected
headers the text output adds a Headers: ... line and a dashed separator under the header rows.
-f json emits {"tables":[{index,page,rows,cols,header_rows,headers?,data}]}. -f csv prefixes
each table with a # Table N (Page P) comment line and separates tables with a blank line.
kis bbox table
Section titled “kis bbox table”kis bbox table -a "<anchor>" [files...]| Flag | Short | Type | Default | Meaning |
|---|---|---|---|---|
--anchor | -a | string | — (required) | Anchor text; the nearest table is returned |
--input | -i | string array | nil | Path to a bounding-box file (repeatable) |
--header | -H | string array | nil | An expected column header (repeatable) |
--format | -f | string | text | text, json or csv |
--output | -o | string | "" (stdout) | Output file path |
kis bbox table -a "Price List" -H "Item" -H "Price" -H "Qty" doc.bboxkis bbox table -a "Summary" -f json -o table.json doc.bboxEvery -H value must be present or the command prints
Header validation failed: missing headers: <list> (found: <list>) and exits non-zero. A table with
no detected header row fails the same way, with Header validation failed: table has no headers.
Comparison is case-insensitive and trims whitespace.
The JSON and CSV shapes differ from tables: table -f json emits a bare object with no index
field, and table -f csv emits bare rows with no # Table comment line. A consumer cannot treat the
two interchangeably.
kis bbox phrase
Section titled “kis bbox phrase”kis bbox phrase -p "<phrase>" [files...]| Flag | Short | Type | Default | Meaning |
|---|---|---|---|---|
--phrase | -p | string | — (required) | Phrase to search for; multi-word is supported |
--input | -i | string array | nil | Path to a bounding-box file (repeatable) |
--before | -B | int | 3 | Context lines before each match |
--after | -A | int | 3 | Context lines after each match |
--format | -f | string | text | text or json |
--output | -o | string | "" (stdout) | Output file path |
--case-insensitive | bool | false | Ignore case; matching is case-sensitive by default | |
--fuzzy | bool | false | Enable Levenshtein fuzzy matching | |
--max-dist-word | int | 2 | Max edit distance per word (fuzzy only) | |
--max-dist-total | int | 3 | Max total edit distance for the phrase (fuzzy only) |
kis bbox phrase -p "Invoice Number" data/page1.bboxkis bbox phrase -p "Inviice Numbr" --fuzzy --max-dist-word 2 --max-dist-total 3 doc.bboxFound 1 match(es) for phrase "Invoice Number"
=== Match 1 (Page 1) ===Location: (72.0, 100.0) - (195.0, 112.0)Line: 1
>> Invoice Number INV-42 Total 120.00-f json emits {phrase,count,matches:[{index,page,line_index,box:{x0,y0,x1,y1},matched_text, lines_before?,lines_after?}]}. Fuzzy mode marks the text header (fuzzy), adds Edit Distance: and
Matched Words: lines, and adds fuzzy, matched_words and total_distance to the JSON.
kis bbox snippet
Section titled “kis bbox snippet”kis bbox snippet -s "<start>" -e "<end>" [files...]| Flag | Short | Type | Default | Meaning |
|---|---|---|---|---|
--start | -s | string | — (required) | Starting phrase, included in the output |
--end | -e | string | — (required) | Ending phrase, excluded unless --include-end |
--input | -i | string array | nil | Path to a bounding-box file (repeatable) |
--format | -f | string | text | text or json |
--output | -o | string | "" (stdout) | Output file path |
--case-insensitive | bool | false | Ignore case when matching the two phrases | |
--include-end | bool | false | Include the ending phrase in the output | |
--fuzzy | int | 0 | Max Levenshtein distance per word; 0 is exact | |
--debug | bool | false | Dump phrase-matching diagnostics to the output stream |
kis bbox snippet -s "Invoice" -e "Total" --include-end data/page1.bboxkis bbox snippet -s "TERMS AND CONDITIONS" -e "SIGNATURE" --fuzzy 2 doc.bboxText output is === Snippet (Page A to B) ===, the two phrases, a blank line, then the extracted
lines. -f json emits {start_phrase,end_phrase,start_page,end_page,line_count,text,lines}, where
text is lines joined by newlines.
--debug writes line and page counts, every start- and end-phrase match, a direct case-insensitive
line scan, per-word block listings with their coordinates, and a spatial comparison of the first two
matched blocks — all to the output stream, so do not combine it with -o and a JSON consumer.
kis bbox snippets
Section titled “kis bbox snippets”kis bbox snippets --snip "name|start|end" [--snip ...] [files...]| Flag | Short | Type | Default | Meaning |
|---|---|---|---|---|
--snip | string array | — (required) | "name|start phrase|end phrase" (repeatable) | |
--input | -i | string array | nil | Path to a bounding-box file (repeatable) |
--output | -o | string | "" (stdout) | Output file path |
--case-insensitive | bool | false | Ignore case for every snippet | |
--include-end | bool | false | Include the ending phrase for every snippet | |
--fuzzy | int | 0 | Max Levenshtein distance per word; 0 is exact |
Each --snip value is split on the first two pipes, every part is whitespace-trimmed, and none may
be empty. Output is always a single JSON object mapping snippet name to extracted text — there is no
format flag.
kis bbox snippets --snip "hdr|Invoice Number|Total" data/page1.bboxkis bbox snippets --snip "header|Invoice|Total" --snip "footer|Terms|END" -i pages/page1.bbox{ "hdr": "Invoice Number INV-42"}A snippet that is not found maps to "" and the command still exits 0.
kis hocr2bbox
Section titled “kis hocr2bbox”kis hocr2bbox -i <file.hocr|dir> [flags]Converts hOCR into the .bbox JSON that every other command consumes. Input comes from -i only;
positional arguments are ignored without a warning.
| Flag | Short | Type | Default | Meaning |
|---|---|---|---|---|
--input | -i | string | "" | hOCR file, or a directory of them |
--output | -o | string | "" | Output file (single input) or directory (directory input) |
--workers | -w | int | 4 | Parallel conversions, directory mode only |
--clean | bool | false | OCR text cleanup: normalise unicode, fix quotes and dashes, drop garbage characters | |
--clean-form | bool | false | Form-aware cleanup that preserves and normalises checkbox and radio indicators | |
--verbose | -v | bool | false | Log each parser warning with its type, element, text and context |
kis hocr2bbox -i pages/scan1.hocr --cleankis hocr2bbox -i pages/ -o bbox/ -w 8 --clean-form -vOutput is one pretty-printed .bbox file per input, named after the input basename with the
extension replaced. With no -o it lands beside the input. Directory mode globs *.hocr
non-recursively. --clean-form takes precedence when both cleanup flags are given.
The produced document, abridged to one word — hOCR line and paragraph grouping is carried through as
lines and paragraphs arrays beside words on each page:
{ "pages": [ { "number": 1, "width": 1224, "height": 1584, "words": [ { "text": "Invoice", "box": { "x0": 100, "y0": 100, "x1": 260, "y1": 140 }, "confidence": 0.96, "page": 1, "line_id": 1 } ] } ]}--input is not marked required. Omitting it fails with stat : no such file or directory — note
the empty path — rather than a required-flag message. A directory containing no *.hocr files logs a
warning and exits 0, which at the default log level looks like a silent success; add -l info to see
it.
The history and audit sidecar
Section titled “The history and audit sidecar”--history and --audit print their section and also record it in a
<basename>-hist-audit.json sidecar. --history-audit <dir> routes the sidecars to a directory,
mirroring each input’s relative path from -i, and on its own asks for both sections — naming an
output directory is only meaningful if something is written there.
Nothing is written unless one of those three flags asked for it. --mode doc writes one sidecar,
named after the first resolved input.
{ "history": [ { "rule_id": "ClassifyStatement", "key": "document_type", "value": "BANK_STATEMENT" } ], "audit": [ { "rule_id": "ClassifyStatement", "message": "executed" }, { "rule_id": "ClassifyStatement", "message": "header matched" } ]}Exit codes and errors
Section titled “Exit codes and errors”Every command exits non-zero on failure. The rule-running commands print a per-input line, continue with the remaining inputs, print the count, then exit 1 if anything failed — partial success is still exit 1.
ERROR: /work/pages/page3.json: executing rules on /work/pages/page3.json: executing ruleset rules: evaluating expression in rule 'ClassifyStatement' the when raised an error. got non existent key headerProcessed 2/3 file(s) successfully1 file(s) failed to processRule-evaluation errors arrive fully wrapped like that: the CLI’s per-input context, then
executing ruleset <name>:, then the engine’s own message. Read the tail first — it names the rule
and the thing it could not resolve.
Those ERROR: lines go to stderr, and so do the warning: lines about dropped inputs. Results and
the closing Processed N/M input(s) successfully go to stdout.
kis propagates the plugin’s exit code verbatim, forwards SIGINT, SIGTERM and SIGHUP to it,
and reports a signal-terminated plugin as 128+N. Usage text is suppressed on error at every level,
so a failing command prints only its error line.
| Message | Cause |
|---|---|
Error: '<command>' is not installed. | The rules plugin is not on any search path |
required flag(s) "rules" not set | -r omitted; same shape for anchor, phrase, start, end, snip |
flag needs an argument: --fuzzy | --fuzzy with no value on bbox snippet / bbox snippets |
no inputs resolved (...) | Nothing matched — a hard error, not a no-op. Under --require-bbox, usually every .json lacked its .bbox; the warning: line above names them |
at least one input file is required (use positional args or -i flag) | A kis bbox subcommand got neither -i nor a file |
invalid var format "<v>": expected key=value | A -v entry with no = |
invalid fact specification "<spec>": key and filepath must not be empty | A -f entry like =path or key= |
invalid bbox specification "<spec>": key and filepath must not be empty | A -b entry like =path or key= |
invalid snippet definition "<s>": expected "name|start phrase|end phrase" | A --snip value that did not split into three non-empty parts |
invalid --skip-pattern "<pat>": <err> | A --skip-pattern that is not a valid glob |
stat : no such file or directory | kis hocr2bbox run without -i |
... the when raised an error. got non existent key <fact> | A rule read a fact the input did not supply |
Header validation failed: missing headers: <list> (found: <list>) | A bbox table -H value is absent |
Header validation failed: table has no headers | bbox table -H on a table with no detected header row |
Rule-evaluation failures surface here too. A missing fact key, a wrong document name or a bad function call aborts the whole execution for that input; see Troubleshooting.
Migrating from the forked commands
Section titled “Migrating from the forked commands”kis rules, kis ocr page and kis ocr doc were three copies of one implementation. They are now
one: kis rules. The other two were removed, and folding them in changed a handful of behaviours.
| Behaviour | Was | Now |
|---|---|---|
Positional arguments to kis rules | Parsed and then ignored without a warning | Resolved, like every other command |
-o on kis rules | Wrote nothing without --update | Writes |
-o together with --update | kis rules needed both to write anywhere; kis ocr page silently preferred -o | -o wins, with a warning that --update was redundant |
--ruleset on kis rules | Parsed and ignored; always rules | Honoured |
-hist-audit.json on the ocr commands | Written on every run | Written only when --history, --audit or --history-audit asks |
| Bounding-box document on the ocr commands | Handed over as parsed content, so no page image attached | Handed over as a file path, so it does |
-b documents | Parsed and handed over as content | Handed over as a file path |
| Recursion flag | -R on rules, --recursive-rules on the ocr commands | -R / --recursive; the old spelling still parses |
--with-bbox-name | rules only | Folded into --bbox-name; the old spelling still parses |
--schema / --schemas | ocr commands only | Available on kis rules |
--validate / --strict | rules only | Unchanged, and now the only surface |
--skip-pattern | ocr commands only | Available on kis rules |
| Per-input errors | stdout on rules, stderr on the ocr commands | stderr |
| Inputs dropped for a missing sidecar | Silent | Counted and named in a warning: line on stderr |
kis.ai monolithic binary | Had no ocr command tree | Has it |
Input discovery is a single non-recursive glob everywhere. -R affects rule file discovery only.
A --require-bbox input whose sidecar is missing is dropped when it came from a directory glob or a
shell-expanded path — the glob simply matched a file that is not an input — and is an error when you
named the prefix yourself, since a name you typed cannot be glob noise. Either way the drop is
reported:
warning: skipped 1 input(s) with no .bbox sidecar: page3.jsonContinue with
Section titled “Continue with”- Quickstart — the shortest path from an hOCR file to a rule result.
- Writing rules — rule anatomy, salience and what actually compiles.
- Extraction — fields, checkboxes and schema-driven extraction.
- Rules over documents — the
bboxnamespace a rule calls. - Running the service —
rules.svc, the execute-rule route, tenancy headers and how rule sets arrive. - Error reference — external error codes.