Skip to content
This repository was archived by the owner on May 20, 2026. It is now read-only.

Commit 56e09a2

Browse files
author
SIN-Agent
committed
feat(gitnexus): universal code intelligence
1 parent 74ddf4b commit 56e09a2

2 files changed

Lines changed: 37 additions & 0 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@ __pycache__/
33
.DS_Store
44
.env
55
*.pyc
6+
7+
# GitNexus Knowledge Graph Index
8+
.gitnexus/

.gitnexus.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
version: "1.0"
2+
3+
project:
4+
name: "stealth-mind"
5+
root: "."
6+
7+
output:
8+
path: ".gitnexus"
9+
10+
analysis:
11+
extract:
12+
imports: true
13+
calls: true
14+
inheritance: true
15+
type_references: true
16+
dataflow: true
17+
max_file_size_kb: 2048
18+
ignore:
19+
- "**/node_modules/**"
20+
- "**/dist/**"
21+
- "**/build/**"
22+
- "**/__pycache__/**"
23+
- "**/.venv/**"
24+
- "**/.git/**"
25+
- "**/graphify-out/**"
26+
- "**/*.min.*"
27+
- "**/*.generated.*"
28+
- "**/logs/**"
29+
30+
cache:
31+
enabled: true
32+
directory: ".gitnexus/cache"
33+
34+
strict: false

0 commit comments

Comments
 (0)