Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,59 @@
|
|
| 1 |
---
|
| 2 |
license: gpl-3.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: gpl-3.0
|
| 3 |
+
tags:
|
| 4 |
+
- code-analysis
|
| 5 |
+
- static-analysis
|
| 6 |
+
- evaluation
|
| 7 |
+
- software-engineering
|
| 8 |
+
- call-graph
|
| 9 |
+
language:
|
| 10 |
+
- en
|
| 11 |
+
pretty_name: CodeTruth Agent V3 — Module 3 Evaluation
|
| 12 |
---
|
| 13 |
+
|
| 14 |
+
# CodeTruth Agent V3 — Module 3 Evaluation
|
| 15 |
+
|
| 16 |
+
Reproducible validation evidence for **Module 3 (Repository Reasoning Engine)**
|
| 17 |
+
of CodeTruth Agent V3, frozen at tag `v3.0.0-module3`.
|
| 18 |
+
|
| 19 |
+
CodeTruth is a **deterministic, AI-model-free static analysis tool**. Module 3
|
| 20 |
+
adds inheritance and dispatch reasoning (C3 MRO, super()) over the Module 2 call
|
| 21 |
+
graph, with zero fabricated edges. Every unresolved call carries a documented
|
| 22 |
+
reason.
|
| 23 |
+
|
| 24 |
+
## Contents
|
| 25 |
+
|
| 26 |
+
**Inheritance resolution baselines** (before/after the reasoning layer):
|
| 27 |
+
|
| 28 |
+
| File | What it shows |
|
| 29 |
+
|---|---|
|
| 30 |
+
| `inheritance_baseline_PRE.json` | Inheritance resolution BEFORE C3 MRO / super() reasoning. |
|
| 31 |
+
| `inheritance_baseline.json` | Inheritance resolution AFTER — the measured delta. |
|
| 32 |
+
|
| 33 |
+
**Five-domain validation reports** (full analysis output per domain):
|
| 34 |
+
|
| 35 |
+
| File | Domain | Repository |
|
| 36 |
+
|---|---|---|
|
| 37 |
+
| `flask_web_report.json` | Web | Flask |
|
| 38 |
+
| `fluids_scientific_report.json` | Scientific computing | fluids |
|
| 39 |
+
| `click_cli_report.json` | CLI tooling | click |
|
| 40 |
+
| `poliastro_aerospace_report.json` | Aerospace / astrodynamics | poliastro |
|
| 41 |
+
| `pydicom_medical_report.json` | Medical imaging | pydicom |
|
| 42 |
+
| `pydicom_cve_2026_32711_impact.json` | Security-fix scoping | pydicom (CVE-2026-32711) |
|
| 43 |
+
|
| 44 |
+
## Validation summary
|
| 45 |
+
|
| 46 |
+
Verified across five engineering domains, six report types each, three
|
| 47 |
+
documentation paradigms. Every number reconciles; `guesses: 0` throughout.
|
| 48 |
+
|
| 49 |
+
Security-fix scoping on **CVE-2026-32711** (a CWE-22 path traversal in pydicom's
|
| 50 |
+
FileSet) pointed at the exact vulnerable methods the official advisory identifies
|
| 51 |
+
— `FileInstance.path`, `FileSet.copy/write` — while making **zero fabricated
|
| 52 |
+
security claims**. The vulnerability itself is a missing data-flow containment
|
| 53 |
+
check, which static call-graph analysis correctly does not claim to detect.
|
| 54 |
+
|
| 55 |
+
## Related
|
| 56 |
+
|
| 57 |
+
- **Code:** https://github.com/Zeeshan78699/CodeTruthAgent (tag `v3.0.0-module3`)
|
| 58 |
+
- **Companion datasets:** CodeTruthAgent-V3-Module1-Evaluation ·
|
| 59 |
+
CodeTruthAgent-V3-Module2-Evaluation
|