Blog  Tag

Tag Archive

Tag: authoring

Posts connected to the authoring topic.

Forward-Chaining Inference: Rules That React to Their Own Results

Jul 18, 2026   

Turn on Inference and your rules re-fire as their actions change the facts other rules read — one firing at a time by salience, only where inputs actually changed, until the run reaches a stable state.

Derived Facts: Values Your Rules Compute for Themselves

Jul 18, 2026   

Stop passing in values you could compute. Derived facts are context values resolved on demand from other values — defaults, shared definitions, expressions, even lazy AI classifications — evaluated only when a rule actually reads them.

The Expression Language: ctx.price * ctx.qty, Anywhere a Value Goes

Jul 18, 2026   

A small, deterministic expression language for computed values and conditions: read context with ctx.key, 32 built-in functions across strings, math, dates and arrays, null-safe with coalesce, and validated as you type.

Collection Conditions: One Clause Instead of a Loop

Jul 18, 2026   

Aggregates and quantifiers let a single condition reason about a whole array. Sum the line items and compare, or ask whether any element clears a threshold — no extra rules, no manual unrolling.

A Redesigned RuleSet Editor, Now With a Decision Table

Jul 14, 2026   

The RuleSet editor has been rebuilt around a DMN-style decision table: every rule is a row, every context key is a column, and you can author conditions and outputs inline without opening a single dialog.