Skip to content
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ lsp-ws-proxy/
ruby-on-rails-sample-app/
.python-version
.vscode/
.vscode-test/
vscode-*/.vscode-test/
.idea/
dist/
fil-result/
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Cue
# CUE - the Code-Understanding-Engine

> Transform any codebase into an intelligent multilayer graph for AI-powered code understanding

Expand Down Expand Up @@ -35,18 +35,21 @@ graph TB
CH["Code Hierarchy Layer<br/>• AST→Symbols<br/>• Classes<br/>• Functions<br/>• Variables"]
DOC["Documentation Layer<br/>• Concepts<br/>• Entities<br/>• Auto-Link"]
SEM["Semantic Layer<br/>• LLM Summaries<br/>• Code Descriptions<br/>• Context"]
EXT["\+ Add Custom Layers<br/>• Github PR Layer<br/>• Security Layer<br/>• Metrics Layer<br/>• Your Layer Here"]
end

subgraph "Processing Components"
LSP["LSP Integration<br/>• References<br/>• Symbols<br/>• Workspace"]
TS["Tree-Sitter Parsing<br/>• AST Parse<br/>• Language Specific"]
LLM["LLM Integration<br/>• Summaries<br/>• Context<br/>• Planning"]
end

EXT["\+ Add Custom Layers<br/>• Github PR Layer<br/>• Security Layer<br/>• Metrics Layer<br/>• Your Layer Here"]
end

VSCode --> Core[Cue Core Engine]
VSCode --> Neo4j
MCP --> Core
MCP --> Neo4j
Neo4j --> Core

FS --> LSP
Expand Down