适配器能力矩阵
Published adapter capability matrix (goal.md §13.1). Levels: A0 package/version detection, A1 build/typecheck/test observation, A2 static symbol resolution, A3 runtime symbol instrumentation, A4 clean Sample + Contract verification. No adapter pretends a level it does not have.
npm
node-typescript@1.0.0
npmpnpmyarn
-
✓
A0
从 lockfile 检测包与版本
支持
-
✓
A1
观测构建、类型检查与测试结果
支持
-
✓
A2
静态符号解析 —— 用了哪个 API
支持
-
—
A3
运行时插桩 —— 直接观测调用本身
不支持
-
✓
A4
以 contract 验证干净样本
支持
符号置信度
PROBABLE
依据 import 与调用点推断
Reference ecosystem. Lockfile-resolved versions (package-lock v2/v3, pnpm-lock v9, yarn classic). Static import/member analysis without a type checker yields PROBABLE symbols; EXACT reserved for future TS type-info integration. Verifier adapter node-typescript@1 supports clean resolve/compile/contract.
pipuv
-
✓
A0
从 lockfile 检测包与版本
支持
-
✓
A1
观测构建、类型检查与测试结果
支持
-
✓
A2
静态符号解析 —— 用了哪个 API
支持
-
—
A3
运行时插桩 —— 直接观测调用本身
不支持
-
—
A4
以 contract 验证干净样本
不支持
符号置信度
PROBABLE
依据 import 与调用点推断
Resolved versions from uv.lock, pinned requirements, poetry.lock (best-effort). AST-free regex import analysis; dynamic attribute access degrades to UNKNOWN. Sample verification uses the shared container verifier only when a contract is expressible without native builds.
go
-
✓
A0
从 lockfile 检测包与版本
支持
-
✓
A1
观测构建、类型检查与测试结果
支持
-
✓
A2
静态符号解析 —— 用了哪个 API
支持
-
—
A3
运行时插桩 —— 直接观测调用本身
不支持
-
—
A4
以 contract 验证干净样本
不支持
符号置信度
PROBABLE
依据 import 与调用点推断
go.mod/go.sum resolved versions; go/parser import + selector analysis. EXACT requires go/types integration, not claimed in v1.
cargo
-
✓
A0
从 lockfile 检测包与版本
支持
-
✓
A1
观测构建、类型检查与测试结果
支持
-
✓
A2
静态符号解析 —— 用了哪个 API
支持
-
—
A3
运行时插桩 —— 直接观测调用本身
不支持
-
—
A4
以 contract 验证干净样本
不支持
符号置信度
PROBABLE
依据 import 与调用点推断
Cargo.lock resolved versions; use-statement analysis. Macro-expanded and dynamic usage degrades to UNKNOWN (goal.md §13.5 conservative start).
A3 is not provided by any Public v1 adapter (goal.md §19).