| Entity | Relation | Why |
|---|---|---|
| 2604.06392 (Qualixar OS) | 互补集成 | Qualixar OS 的 Claw Bridge 兼容层导入 OpenClaw 格式 skills;SkillFortify 验证这些 skills 的安全性。两者形成"编排+安全"双层防御 |
| 2602.22302 (AgentAssert) | 同一作者双文互补 | AgentAssert = behavioral contracts (what agent should do);SkillFortify = supply chain integrity (what skills can do)。论文 §11.3 明确声明互补性 |
| 2505.02279 (Agent Interop) | 协议层被保护对象 | MCP servers 是 SkillFortify 三种分析格式之一;MCP protocol 无 capability model 是 SkillFortify 要填补的安全缺口 |
SkillFortify 保护的正是 Agent Interop 协议(特别是 MCP)所暴露的攻击面:"a server that claims to 'search files' may also execute arbitrary shell commands, and the protocol provides no mechanism to detect or prevent this" [2603.00195]。
| 维度 | SkillFortify | Qualixar OS |
|---|---|---|
| 保护层面 | 供应链(安装前静态分析) | 运行时(编排质量保障) |
| 形式化程度 | 5 个形式化定理 + 完整证明 | 工程集成(JSD 阈值、Goodhart 检测规则) |
| 信任模型 | Trust score algebra + exponential decay | Bayesian POMDP 路由 + cross-model entropy |
| 覆盖格式 | Claude Code skills, MCP servers, OpenClaw | 导入 OpenClaw/NemoClaw/DeerFlow/GitAgent |
| 保证类型 | Soundness (Theorem 4.9: 无违规 = 无越权) | 统计检测(JSD 超阈值 → 告警) |
核心 delta: SkillFortify 提供 install-time guarantee(安装前证明 skill 不越权),Qualixar OS 提供 run-time detection(运行时检测行为漂移)[2603.00195] [2604.06392]。两者形成 defense-in-depth。
同一作者的姐妹工作,论文明确声明互补性 [2603.00195]:
MCP specification 定义 tool schema 但不定义 capability requirements [2505.02279]。SkillFortify 的 capability lattice $\mathbb{L}_{\text{cap}}$ 填补了这个缺口:
tools: [{name: "search_files", ...}] → 语义描述curl | sh(如 install scripts)或合法读取 env vars 的 skills 可能触发 findings——真实 FPR 可能显著高于 0%。SkillFortify 在 agent 安全栈中的定位:
Protocol layer (MCP/A2A) → Supply chain security (SkillFortify) → Behavioral contracts (AgentAssert) → Runtime orchestration (Qualixar OS)
从传统软件安全类比:SkillFortify ≈ npm audit + SLSA + Snyk(供应链层),AgentAssert ≈ runtime assertions + monitoring(行为层),Qualixar OS ≈ Kubernetes + service mesh(编排层)。
采纳信号: MIT license, pip install skillfortify, GitHub 公开。与 AgentAssert 形成同一作者的完整安全栈叙事。但无独立第三方验证或生产部署报告。
capabilities: {filesystem: "read", network: "none"}),使 SkillFortify 验证成为 MCP 协议合规性检查而非外部工具。