| Entity | Relation | Why |
|---|---|---|
| 2602.22302 (AgentAssert) | 直接集成 | AgentAssay 的 trace-first offline analysis 包含 "contract checking" 模块,明确引用 AgentAssert 的 behavioral contracts 作为可在 traces 上离线验证的属性 |
| 2604.06392 (Qualixar OS) | 测试对象候选 | Qualixar OS 的 12 种拓扑 + Forge 自动团队设计产生高度非确定性行为,正是 AgentAssay 的 stochastic testing 设计目标 |
| 2604.14228 (Claude Code) | 工业参照 | Claude Code 的 27% "无此工具就不会尝试" 的质变工作说明 agent regression 检测需要超越 pass/fail 的行为指纹方法 |
AgentAssay 与 AgentAssert 形成"测试+治理"组合:AgentAssert 定义 contracts,AgentAssay 验证 contracts 在多次执行中的 stochastic satisfaction [2603.02601]。AgentAssay 的 Theorem 3.1 (verdict soundness) 通过 Wilson CI 保证 false positive rate $\leq \alpha$,这与 AgentAssert 的 $(p,\delta,k)$-satisfaction 在概念上映射:两者都将 agent reliability 建模为概率事件 [2602.22302]。
| 维度 | AgentAssay | AgentAssert |
|---|---|---|
| 关注点 | Regression detection(版本间变化检测) | Runtime enforcement(部署时行为约束) |
| 检测目标 | 行为分布漂移(Hotelling's $T^2$) | 行为违约(JSD + compliance score) |
| 时间点 | CI/CD pipeline(部署前) | 运行时(部署后) |
| 判定语义 | Three-valued (Pass/Fail/Inconclusive) | Continuous drift score $D(t) \in [0,1]$ |
| Token 效率 | 78% trial reduction via SPRT | <10ms overhead per action |
| 核心创新 | Behavioral fingerprinting (86% power vs 0% pass-rate) | JSD distributional drift as leading indicator |
核心 delta: AgentAssay 检测 跨版本变化 (regression = candidate worse than baseline),AgentAssert 检测 跨时间漂移 (drift = behavior deviating from spec) [2603.02601] [2602.22302]。两者的统计方法论(Wilson CI vs OU model, Hotelling's $T^2$ vs JSD)针对不同假设检验结构。
Qualixar OS 的 quality assurance pipeline 包含 consensus judge、Goodhart detection、JSD 漂移监控 [2604.06392]。与 AgentAssay 的差异:
Claude Code 的 "1.6% 决策逻辑 + 98.4% 确定性基础设施" 结构 [2604.14228] 暗示:regression testing 应区分 infrastructure changes(确定性,传统测试可覆盖)vs decision logic changes(非确定性,需要 AgentAssay 的 stochastic testing)。当 agent 的行为变化不影响 pass rate(如 tool 使用模式改变)但影响用户体验时,behavioral fingerprinting 是唯一检测手段 [2603.02601]。
AgentAssay 在 agent lifecycle 中的定位:
Development → AgentAssay (CI/CD gate) → Deployment → AgentAssert (runtime monitoring) → Qualixar OS (orchestration QA)
AgentAssay 是 pre-deployment quality gate,AgentAssert 是 post-deployment continuous monitoring。两者形成闭环:AgentAssay 的 baseline traces 可作为 AgentAssert 的 reference distribution $P_{\text{ref}}$ 来源。
采纳信号: Apache 2.0, ~20K LoC, 751 tests, 10 framework adapters, Zenodo DOI。相比 AgentAssert/SkillFortify(无公开仓库或少量代码),AgentAssay 的工程成熟度最高。