Determinability Checker
/install determinability-checker
Determinability Checker
Causal Sufficiency Determinability Checker
Algorithm implementation based on the paper Target Determinability under Partial Causal Observation (Wang, 2026).
Core Question
Before an Agent calls other skills, it asks itself:
"Based on current evidence, am I sufficient to make this judgment?"
Determinability Results
| Result | Meaning | Agent Action |
|---|---|---|
| DETERMINED | Evidence is sufficient; target is zero-error determinable | Execute immediately; no wasted tokens |
| NOT_DETERMINED | Evidence is insufficient; indistinguishable counterexample exists | Return missing-evidence list; guide next skill to call |
Theoretical Foundation
- Theorem 10.1 (Finite Model Checking): The algorithm returns Determined if and only if the target is zero-error determinable; returns NotDetermined with a counterexample pair certificate.
- Theorem 8.2 (Constrained Evidence Coverage): An evidence subset covers all conflict edges if and only if the target becomes determinable from the joint observation.
- Quotient Factorization (Lemma 7.1): D is determinable from Omega if and only if D is constant on every observation equivalence class, if and only if D = g composed with Omega.
Usage Example
Request
{
"session_id": "audit-001",
"question": "Does the final output have a valid verification event?",
"configs": [
{"config_id": "C1", "tool": "code", "has_verif": true, "verif_hash": "valid", "output": "correct", "target": 1},
{"config_id": "C2", "tool": "code", "has_verif": false, "verif_hash": "none", "output": "correct", "target": 0}
],
"omega_field": "output",
"target_field": "target",
"evidence_fields": ["tool", "has_verif", "verif_hash"]
}
Response
{
"session_id": "audit-001",
"question": "Does the final output have a valid verification event?",
"determinability": "NOT_DETERMINED",
"can_proceed": false,
"counterexample": {
"config1": "C1",
"config2": "C2",
"observation": "correct",
"target1": 1,
"target2": 0
},
"missing_evidence": ["tool", "has_verif", "verif_hash"],
"next_skill_suggestion": "Supplement the following evidence items: tool, has_verif, verif_hash",
"message": "Non-determinability proven: configs C1 and C2 share observation correct but differ on target (1 vs 0)."
}
Cognitive Emergence Lab
[email protected]
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install determinability-checker - 安装完成后,直接呼叫该 Skill 的名称或使用
/determinability-checker触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Determinability Checker 是什么?
Causal Sufficiency Determinability Checker — Meta-Skill Gatekeeper based on JEP Paper CheckDeterminability Algorithm. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 58 次。
如何安装 Determinability Checker?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install determinability-checker」即可一键安装,无需额外配置。
Determinability Checker 是免费的吗?
是的,Determinability Checker 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Determinability Checker 支持哪些平台?
Determinability Checker 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Determinability Checker?
由 JEP (Judgment Event Protocol)(@schchit)开发并维护,当前版本 v1.0.2。