decision-table
Provides deterministic decision and constraint evaluation for AI agents. Supports ruleset validation, fact evaluation, and constraint checking via MCP tools.
README
Decision Table
Decision Table is a deterministic decision and constraint primitive for AI agents. It moves bounded business judgments out of model reasoning and into a strict, versioned, executable IR.
The product name and stable package, CLI, plugin, Skill, and MCP identifiers are
recorded in docs/PRODUCT_IDENTITY.md.
The first release provides:
decision.evaluate: evaluate facts withfirst,unique,collect, orpriorityhit policy;decision.validate: validate the model and conservatively prove duplicate, overlap, or shadowed rules where supported;constraint.check: check a proposed candidate and return violations, missing inputs, and configured repair hints;constraint.check_approved: when configured by the host, perform a read-only check against an exact approved ruleset that the caller cannot replace or backdate;- one shared TypeScript core, a JSON CLI, and an MCP server plus Codex plugin.
Install in Codex
codex plugin marketplace add tetracoralla/decision-table --ref main
codex plugin add decision-table@decision-table
Start a new Codex task after installation so the Skill and MCP tools load from
the installed plugin. No npm account, npm package, or source build is required;
the plugin contains a prebuilt MCP server and only needs Node.js 20.19 or later
on PATH.
The repository root is the marketplace and plugins/decision-table is the
installable plugin. See docs/INSTALLATION.md for
updates, removal, and verification.
Use ordinary requests such as:
- “Validate this decision ruleset before I use it.”
- “Evaluate this ruleset with these facts.”
- “Check whether this proposed action satisfies these constraints.”
Decision Table is distributed from GitHub as a Codex plugin. The Node package in this repository is private and exists only for building, testing, and local library development; it is not published to npm.
Develop from source
npm install
npm run check
For local plugin development, add this repository directory itself as a
marketplace and validate the source plugin with npm run check:plugin.
CLI
npm run cli -- validate examples/payment-approval.decision.json
npm run cli -- evaluate examples/payment-approval.decision.json \
--facts examples/payment-approval.facts.json \
--expected-version 1.0.0
npm run cli -- check examples/email-marketing.constraint.json \
--candidate examples/email-marketing.candidate.json \
--facts examples/email-marketing.facts.json
All output is JSON. Use - in place of an input path to read that one document
from stdin. Options not defined for the selected command are rejected. The
ruleset, facts, and candidate documents share one cumulative 256 KiB limit.
For exact content pinning, pass both --expected-version and
--expected-fingerprint <sha256>.
Approved checks and host enforcement
Inline constraint.check is advisory because its caller supplies the ruleset.
For read-only analysis with a host-approved policy, bind the ruleset before
starting the MCP server:
import {
createApprovedConstraintChecker,
createConstraintExecutionGuard,
fingerprintRuleset,
} from "@openadam/decision-table";
const expected = {
id: approvedRuleset.id,
version: approvedRuleset.version,
fingerprint: fingerprintRuleset(approvedRuleset),
};
const checker = createApprovedConstraintChecker({ ruleset: approvedRuleset, expected });
The bundled stdio server exposes constraint.check_approved when its host sets
DECISION_TABLE_APPROVED_CONSTRAINT_JSON to the same strict binding object.
The Agent cannot replace the policy or backdate the check, but it still supplies
candidate and facts, so this read-only MCP tool is not an execution boundary.
For a governed side effect, keep candidate construction, trusted fact loading, checking, and execution inside a host-owned context:
const guard = createConstraintExecutionGuard(checker, async (action, run) =>
database.transaction(async (transaction) =>
run({
candidate: candidateFromActualAction(action),
facts: await loadTrustedFacts(transaction, action),
execute: (sameActionSnapshot) =>
executeActualAction(transaction, sameActionSnapshot),
}),
),
);
const outcome = await guard.execute(actualToolArguments);
The guard snapshots the actual action, blocks the executor unless constraints return valid, and passes that same frozen snapshot to execution. The host-owned context is where a transaction or lock must keep volatile facts valid through the side effect. The guard is a library boundary and is intentionally not an Agent-callable MCP tool.
Ruleset shape
Conditions are tagged data, never executable strings:
{
"op": "compare",
"left": { "kind": "fact", "path": "amount" },
"comparator": "gte",
"right": { "kind": "literal", "value": "10000" }
}
Decimal inputs are strings. Missing paths produce UNKNOWN; they are not
coerced to false. Datetimes require a real ISO calendar value, explicit
offset, seconds, and no more than millisecond precision. See examples/ and
docs/PRODUCT_MODEL.md for the complete product boundary.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。