← 返回
未分类 中文

Determinability Checker

Causal Sufficiency Determinability Checker — Meta-Skill Gatekeeper based on JEP Paper CheckDeterminability Algorithm
因果充分性确定性检查器——基于JEP论文CheckDeterminability算法的元技能守门员
schchit
未分类 clawhub v1.0.2 1 版本 100000 Key: 无需
★ 0
Stars
📥 318
下载
💾 0
安装
1
版本
#audit#causality#determinability#gatekeeper#jep#latest#meta-skill

概述

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

ResultMeaningAgent Action
-----------------------------
DETERMINEDEvidence is sufficient; target is zero-error determinableExecute immediately; no wasted tokens
NOT_DETERMINEDEvidence is insufficient; indistinguishable counterexample existsReturn 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

yuqiang@humanjudgment.org

版本历史

共 1 个版本

  • v1.0.2 当前
    2026-05-07 22:34 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

Claimback Radar

schchit
扫描邮件和账单,提取账单信息,检测退款机会和订阅风险,生成可执行的省钱建议。
★ 0 📥 450

Judgment Event Protocol

schchit
记录并验证加密签名、防篡改的判断、授权、终止和验证事件,用于 AI 代理决策审计。
★ 0 📥 364

JEP-Guard Audit

schchit
JEP‑Guard 审计技能 — 严格遵循 JEP‑04/JAC‑01 标准的审计链,配备友好的 API 接口
★ 0 📥 315