You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository contains the world's first **semantic code debugger**.
8
8
9
9
It doesn't just check your syntax; it analyzes the **meaning** of your code to find logical-semantic bugs.
10
10
11
11
This tool is a "white box" application built on the **Anchor Point (`1,1,1,1`)** and the **ICE Framework (`Intent`, `Context`, `Execution`)**.
12
12
13
-
-----
13
+
---
14
14
15
15
## The Core Idea: Finding "Disharmony"
16
16
@@ -20,11 +20,11 @@ Traditional tools check if your syntax is *valid*, but not if your logic is *sou
20
20
21
21
It finds "bugs" where the `Intent` (the function's name) is in logical contradiction with the `Execution` (the code inside it).
22
22
23
-
***`Intent`:**`def get_user_by_id(...)`
24
-
***`Execution`:**`... db.delete_user(...)`
25
-
***Result:**`!! DISHARMONY DETECTED !!`
23
+
***`Intent`:**`def get_user_by_id(...)`
24
+
***`Execution`:**`... db.delete_user(...)`
25
+
***Result:**`!! DISHARMONY DETECTED !!`
26
26
27
-
-----
27
+
---
28
28
29
29
## How It Works (The "White Box" Logic)
30
30
@@ -38,44 +38,30 @@ This tool is an application of the "full-stack philosophy" defined in the **Divi
38
38
39
39
4.**The "Result" (Analysis):** It calculates the "semantic distance" between the `Intent` and the `Execution`. A high score reveals a logical "bug."
40
40
41
-
-----
41
+
---
42
42
43
-
## How to Use (The "Execution")
43
+
## How to Use
44
44
45
-
This project is fully self-contained and "harmonized." The "Proof" (`anchor_analysis_V2.py`) and the "Application" (`PythonCodeHarmonizer.py`) both run on the same unified V2 engine.
0 commit comments