ZeeshanSaud commited on
Commit
41afef1
·
verified ·
1 Parent(s): 5d096bd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -0
README.md CHANGED
@@ -1,3 +1,47 @@
1
  ---
2
  license: gpl-3.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: gpl-3.0
3
  ---
4
+
5
+ # CodeTruth Agent V3 — Module 2 — Evaluation Data
6
+
7
+ Raw validation output from **CodeTruth Agent V3, Module 2: Repository
8
+ Graph Engine** — a deterministic, AST-based engine that maps a Python
9
+ repository's structure as 6 graphs: functions, classes, modules, imports,
10
+ dependencies, and resolved function/method calls.
11
+
12
+ Code: https://github.com/Zeeshan78699/CodeTruthAgent
13
+ Release: https://github.com/Zeeshan78699/CodeTruthAgent/releases/tag/v3.0.0-module2
14
+
15
+ ## What's in this dataset
16
+
17
+ - **Per-repository graphs** (69 `graph_*.json` files, e.g.
18
+ `graph_django.json`, `graph_redis.json`) — full output from Module 2,
19
+ one file per repository in the 69-repository validation set. Each
20
+ contains `function_graph`, `class_graph`, `module_graph`,
21
+ `import_graph`, `dependency_graph`, `call_graph`, `unresolved`,
22
+ `cyclic_clusters`, `governance_gate`, and (where applicable)
23
+ `language_composition`.
24
+ - **`MODULE2_FULL_SUMMARY.{csv,json,md}`** — aggregate results across all
25
+ 69 repositories (files scanned, functions, classes, resolved calls,
26
+ unresolved breakdown, governance gate per repo).
27
+ - **`LANGUAGE_ADAPTERS_SUMMARY.{csv,json,md}`** — results from the
28
+ multi-language extension scaffold (Java, JavaScript/TypeScript, C/C++
29
+ adapters) across the same 69 repositories.
30
+
31
+ ## Headline numbers
32
+
33
+ - 69 repositories, 0 crashes
34
+ - 49,379 Python files, 515,610 functions, 84,468 classes
35
+ - 1,005,321 resolved call edges
36
+ - 65/69 governance gate APPROVED, 4/69 correctly BLOCKED (non-Python repos)
37
+
38
+ ## Why these files are here (not on GitHub)
39
+
40
+ Two of the per-repo graphs (`graph_transformers.json`, `graph_odoo.json`)
41
+ exceed GitHub's 100MB file-size limit, and several others exceed its 50MB
42
+ recommendation. All 69 are hosted here together for completeness and
43
+ reproducibility.
44
+
45
+ ## License
46
+
47
+ GPLv3, matching the source project.