Skip to content

Commit 527a93e

Browse files
authored
Enhance README with jCodeMunch cost-saving details
Added a section detailing how jCodeMunch reduces token costs for AI agents when exploring codebases.
1 parent 99c5a76 commit 527a93e

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
### Cut code-reading token costs by up to **99%**
2+
3+
Most AI agents explore repositories the expensive way:
4+
open entire files → skim thousands of irrelevant lines → repeat.
5+
6+
**jCodeMunch indexes a codebase once and lets agents retrieve only the exact symbols they need** — functions, classes, methods, constants — with byte-level precision.
7+
8+
| Task | Traditional approach | With jCodeMunch |
9+
| ---------------------- | -------------------- | --------------- |
10+
| Find a function | ~40k tokens | ~200 tokens |
11+
| Understand module API | ~15k tokens | ~800 tokens |
12+
| Explore repo structure | ~200k tokens | ~2k tokens |
13+
14+
Index once. Query cheaply forever.
15+
Precision context beats brute-force context.
16+
17+
---
18+
119
# jCodeMunch MCP
220

321
### Make AI agents cheaper and faster on real codebases

0 commit comments

Comments
 (0)