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
Copy file name to clipboardExpand all lines: AGENTS.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,12 @@
4
4
This repository is mapped into architectural layers designed from its own source,
5
5
with per-symbol intents you can search and trace.
6
6
7
-
**Before planning or implementing a feature**, trace it instead of grepping:
7
+
### ⛔ FORBIDDEN TOOL BEHAVIORS
8
+
-**DO NOT use `grep_search`, `ripgrep`, or `find_by_name` as your primary discovery tool.** Blind text searching is strictly prohibited for codebase exploration, feature lookup, and understanding component flows.
9
+
-**DO NOT guess symbol locations or execution paths.**
10
+
11
+
### ✅ MANDATORY FIRST-STEP PROTOCOL
12
+
Whenever the user asks where a feature lives, how a component works, or what a symbol connects to, your first tool call MUST be `run_command` with one of the following:
Copy file name to clipboardExpand all lines: README.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -108,6 +108,27 @@ Surfaces orphaned components, unreferenced models, and unused files for human re
108
108
109
109
---
110
110
111
+
## 📊 Retrieval Benchmark: SWE-bench Lite
112
+
113
+
To evaluate codebase localization performance against industry baselines, TLDRGraph was benchmarked on **40 real-world GitHub issues** from the standard **SWE-bench Lite** dataset (measuring ground-truth modified file identification from natural language problem statements):
|**TLDRGraph (AST Zero-Token)**|**60.0%**|**75.0%**|**82.5%**|**0.672**|**~2,400 tokens**| 23.44 ms |
123
+
|**TLDRGraph (4-5 Line LLM Enriched)**|**62.5%**|**72.5%**|**80.0%**|**0.682**|**~3,200 tokens**| 23.93 ms |
124
+
125
+
> **Key Takeaways:**
126
+
> -**State-of-the-Art MRR (0.682)**: Combining agent-designed architectural layers with deep semantic intent achieves **0.682 MRR** and **62.5% Recall@1** (beating Mem0's 35.0%, Chunked RAG's 42.5%, Aider's 55.0%, and Graphify's 57.5%).
127
+
> -**Broad Multi-Layer Recall**: **TLDRGraph (AST Zero-Token)** scores **75.0% Recall@5** and **82.5% Recall@10** with **0 LLM tokens spent**.
128
+
> -**2.5×–4.0× Token Efficiency**: Compact, structured intent flows require only **~2,400–3,200 tokens** compared to ~8,200 tokens for Aider, ~9,500 tokens for Graphify, ~12,000 tokens for Mem0, and ~28,500 tokens for raw file chunking.
129
+
130
+
---
131
+
111
132
## 🤖 Works with any coding agent
112
133
113
134
TLDRGraph is driven **by** your agent, not the other way around. It never needs
0 commit comments