File size: 2,209 Bytes
dee1165
 
7388ed8
 
 
 
 
 
 
 
 
dee1165
7388ed8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
license: gpl-3.0
tags:
  - code-analysis
  - static-analysis
  - evaluation
  - software-engineering
  - call-graph
language:
  - en
pretty_name: CodeTruth Agent V3  Module 3 Evaluation
---

# CodeTruth Agent V3 — Module 3 Evaluation

Reproducible validation evidence for **Module 3 (Repository Reasoning Engine)**
of CodeTruth Agent V3, frozen at tag `v3.0.0-module3`.

CodeTruth is a **deterministic, AI-model-free static analysis tool**. Module 3
adds inheritance and dispatch reasoning (C3 MRO, super()) over the Module 2 call
graph, with zero fabricated edges. Every unresolved call carries a documented
reason.

## Contents

**Inheritance resolution baselines** (before/after the reasoning layer):

| File | What it shows |
|---|---|
| `inheritance_baseline_PRE.json` | Inheritance resolution BEFORE C3 MRO / super() reasoning. |
| `inheritance_baseline.json` | Inheritance resolution AFTER — the measured delta. |

**Five-domain validation reports** (full analysis output per domain):

| File | Domain | Repository |
|---|---|---|
| `flask_web_report.json` | Web | Flask |
| `fluids_scientific_report.json` | Scientific computing | fluids |
| `click_cli_report.json` | CLI tooling | click |
| `poliastro_aerospace_report.json` | Aerospace / astrodynamics | poliastro |
| `pydicom_medical_report.json` | Medical imaging | pydicom |
| `pydicom_cve_2026_32711_impact.json` | Security-fix scoping | pydicom (CVE-2026-32711) |

## Validation summary

Verified across five engineering domains, six report types each, three
documentation paradigms. Every number reconciles; `guesses: 0` throughout.

Security-fix scoping on **CVE-2026-32711** (a CWE-22 path traversal in pydicom's
FileSet) pointed at the exact vulnerable methods the official advisory identifies
— `FileInstance.path`, `FileSet.copy/write` — while making **zero fabricated
security claims**. The vulnerability itself is a missing data-flow containment
check, which static call-graph analysis correctly does not claim to detect.

## Related

- **Code:** https://github.com/Zeeshan78699/CodeTruthAgent (tag `v3.0.0-module3`)
- **Companion datasets:** CodeTruthAgent-V3-Module1-Evaluation ·
  CodeTruthAgent-V3-Module2-Evaluation