ai-first-cli 1.2.2 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ai/dependencies.json +15 -0
- package/ai/graph/knowledge-graph.json +12 -0
- package/ai-context/ai_context.md +7 -7
- package/ai-context/ai_rules.md +2 -2
- package/ai-context/architecture.md +17 -17
- package/ai-context/dependencies.json +34 -2
- package/ai-context/entrypoints.md +1 -1
- package/ai-context/graph/knowledge-graph.json +14 -199
- package/ai-context/index-state.json +192 -45
- package/ai-context/modules.json +685 -284
- package/ai-context/project.json +1 -1
- package/ai-context/repo_map.json +5317 -2019
- package/ai-context/repo_map.md +751 -17
- package/ai-context/schema.json +1 -1
- package/ai-context/summary.md +13 -8
- package/ai-context/symbols.json +65349 -5
- package/ai-context/tech_stack.md +4 -3
- package/dist/commands/ai-first.js +0 -0
- package/dist/core/adapters/baseAdapter.d.ts +1 -1
- package/dist/core/adapters/baseAdapter.d.ts.map +1 -1
- package/dist/core/adapters/baseAdapter.js +50 -12
- package/dist/core/adapters/baseAdapter.js.map +1 -1
- package/dist/core/semanticContexts.d.ts.map +1 -1
- package/dist/core/semanticContexts.js +22 -60
- package/dist/core/semanticContexts.js.map +1 -1
- package/install.sh +143 -17
- package/package.json +1 -1
- package/src/core/adapters/baseAdapter.ts +61 -12
- package/src/core/semanticContexts.ts +24 -66
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"dependencies": {
|
|
3
|
+
"chokidar": "^5.0.0",
|
|
4
|
+
"ora": "^9.3.0",
|
|
5
|
+
"sql.js": "^1.10.0"
|
|
6
|
+
},
|
|
7
|
+
"devDependencies": {
|
|
8
|
+
"@types/node": "^20.0.0",
|
|
9
|
+
"@vitejs/plugin-vue": "^6.0.4",
|
|
10
|
+
"typescript": "^5.0.0",
|
|
11
|
+
"vitepress": "^1.6.4",
|
|
12
|
+
"vitest": "^4.1.0",
|
|
13
|
+
"vue": "^3.5.30"
|
|
14
|
+
}
|
|
15
|
+
}
|
package/ai-context/ai_context.md
CHANGED
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
## Quick Overview
|
|
8
8
|
|
|
9
9
|
- **Pattern**: Flat / Simple Structure
|
|
10
|
-
- **Languages**: JSON,
|
|
10
|
+
- **Languages**: Markdown, JSON, YAML, TypeScript, CSS, Ruby, Python, JavaScript, PHP, TypeScript (React), Java
|
|
11
11
|
- **Frameworks**: Vue.js, Nuxt.js, TypeScript
|
|
12
|
-
- **Total Files**:
|
|
12
|
+
- **Total Files**: 897
|
|
13
13
|
|
|
14
14
|
---
|
|
15
15
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
## Tech Stack
|
|
28
28
|
|
|
29
|
-
**Languages**: JSON,
|
|
29
|
+
**Languages**: Markdown, JSON, YAML, TypeScript, CSS, Ruby, Python, JavaScript, PHP, TypeScript (React), Java
|
|
30
30
|
|
|
31
31
|
**Frameworks**: Vue.js, Nuxt.js, TypeScript
|
|
32
32
|
|
|
@@ -47,6 +47,8 @@
|
|
|
47
47
|
## Key Modules
|
|
48
48
|
| Module | Responsibility |
|
|
49
49
|
|--------|----------------|
|
|
50
|
+
| `.ai-dev` | Contains 50 files |
|
|
51
|
+
| `.github` | Contains 1 files |
|
|
50
52
|
| `.netlify` | Contains 1 files |
|
|
51
53
|
| `ANALISIS_COMPLETO.md` | Contains 0 files |
|
|
52
54
|
| `ANALISIS_MEJORAS.md` | Contains 0 files |
|
|
@@ -55,8 +57,6 @@
|
|
|
55
57
|
| `CONTRIBUTING.md` | Contains 0 files |
|
|
56
58
|
| `FLOW.md` | Contains 0 files |
|
|
57
59
|
| `PLAN_MEJORAS.md` | Contains 0 files |
|
|
58
|
-
| `README.es.md` | Contains 0 files |
|
|
59
|
-
| `README.md` | Contains 0 files |
|
|
60
60
|
|
|
61
61
|
|
|
62
62
|
---
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
- `src/core/adapters/community/index.ts` - Entry point
|
|
70
70
|
|
|
71
71
|
### Cli
|
|
72
|
-
- `dist/commands/ai-first.js` - CLI:
|
|
72
|
+
- `dist/commands/ai-first.js` - CLI: af
|
|
73
73
|
|
|
74
74
|
### Build
|
|
75
75
|
- `package.json#scripts.build` - build: tsc
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
|
|
104
104
|
## AI Rules
|
|
105
105
|
|
|
106
|
-
- Language: Use JSON,
|
|
106
|
+
- Language: Use Markdown, JSON, YAML, TypeScript, CSS, Ruby, Python, JavaScript, PHP, TypeScript (React), Java
|
|
107
107
|
- Frameworks: Vue.js, Nuxt.js, TypeScript
|
|
108
108
|
- Architecture: Follow Flat / Simple Structure pattern
|
|
109
109
|
- File naming: PascalCase
|
package/ai-context/ai_rules.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
## Guidelines
|
|
8
8
|
|
|
9
|
-
- Language: Use JSON,
|
|
9
|
+
- Language: Use Markdown, JSON, YAML, TypeScript, CSS, Ruby, Python, JavaScript, PHP, TypeScript (React), Java
|
|
10
10
|
- Frameworks: Vue.js, Nuxt.js, TypeScript
|
|
11
11
|
- Architecture: Follow Flat / Simple Structure pattern
|
|
12
12
|
- File naming: PascalCase
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
|
|
32
32
|
| Category | Value |
|
|
33
33
|
|----------|-------|
|
|
34
|
-
| Language | JSON,
|
|
34
|
+
| Language | Markdown, JSON, YAML, TypeScript, CSS, Ruby, Python, JavaScript, PHP, TypeScript (React), Java |
|
|
35
35
|
| Framework | Vue.js, Nuxt.js, TypeScript |
|
|
36
36
|
| Architecture | Flat / Simple Structure |
|
|
37
37
|
| Naming | PascalCase |
|
|
@@ -11,6 +11,8 @@
|
|
|
11
11
|
## Key Modules
|
|
12
12
|
| Module | Responsibility |
|
|
13
13
|
|--------|----------------|
|
|
14
|
+
| `.ai-dev` | Contains 50 files |
|
|
15
|
+
| `.github` | Contains 1 files |
|
|
14
16
|
| `.netlify` | Contains 1 files |
|
|
15
17
|
| `ANALISIS_COMPLETO.md` | Contains 0 files |
|
|
16
18
|
| `ANALISIS_MEJORAS.md` | Contains 0 files |
|
|
@@ -19,12 +21,20 @@
|
|
|
19
21
|
| `CONTRIBUTING.md` | Contains 0 files |
|
|
20
22
|
| `FLOW.md` | Contains 0 files |
|
|
21
23
|
| `PLAN_MEJORAS.md` | Contains 0 files |
|
|
22
|
-
| `README.es.md` | Contains 0 files |
|
|
23
|
-
| `README.md` | Contains 0 files |
|
|
24
24
|
|
|
25
25
|
|
|
26
26
|
## Module Details
|
|
27
27
|
|
|
28
|
+
### .ai-dev
|
|
29
|
+
- **Path**: `.ai-dev`
|
|
30
|
+
- **Responsibility**: Contains 50 files
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### .github
|
|
34
|
+
- **Path**: `.github`
|
|
35
|
+
- **Responsibility**: Contains 1 files
|
|
36
|
+
|
|
37
|
+
|
|
28
38
|
### .netlify
|
|
29
39
|
- **Path**: `.netlify`
|
|
30
40
|
- **Responsibility**: Contains 1 files
|
|
@@ -102,6 +112,11 @@
|
|
|
102
112
|
|
|
103
113
|
### ai
|
|
104
114
|
- **Path**: `ai`
|
|
115
|
+
- **Responsibility**: Contains 1 files
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
### ai-context
|
|
119
|
+
- **Path**: `ai-context`
|
|
105
120
|
- **Responsibility**: Contains 50 files
|
|
106
121
|
|
|
107
122
|
|
|
@@ -110,21 +125,6 @@
|
|
|
110
125
|
- **Responsibility**: Contains 32 files
|
|
111
126
|
|
|
112
127
|
|
|
113
|
-
### examples
|
|
114
|
-
- **Path**: `examples`
|
|
115
|
-
- **Responsibility**: Contains 4 files
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
### package-lock.json
|
|
119
|
-
- **Path**: `package-lock.json`
|
|
120
|
-
- **Responsibility**: Contains 0 files
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
### package.json
|
|
124
|
-
- **Path**: `package.json`
|
|
125
|
-
- **Responsibility**: Contains 0 files
|
|
126
|
-
|
|
127
|
-
|
|
128
128
|
|
|
129
129
|
## Recommendations
|
|
130
130
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"totalDependencies":
|
|
3
|
-
"totalModules":
|
|
2
|
+
"totalDependencies": 457,
|
|
3
|
+
"totalModules": 114,
|
|
4
4
|
"dependencies": [
|
|
5
5
|
{
|
|
6
6
|
"source": "docs/.vitepress/theme/index.ts",
|
|
@@ -2242,6 +2242,31 @@
|
|
|
2242
2242
|
"target": "tests/auth",
|
|
2243
2243
|
"type": "import"
|
|
2244
2244
|
},
|
|
2245
|
+
{
|
|
2246
|
+
"source": "tests/phase2-fixes.test.ts",
|
|
2247
|
+
"target": "src/analyzers/symbols.js",
|
|
2248
|
+
"type": "import"
|
|
2249
|
+
},
|
|
2250
|
+
{
|
|
2251
|
+
"source": "tests/phase2-fixes.test.ts",
|
|
2252
|
+
"target": "src/core/semanticContexts.js",
|
|
2253
|
+
"type": "import"
|
|
2254
|
+
},
|
|
2255
|
+
{
|
|
2256
|
+
"source": "tests/phase2-fixes.test.ts",
|
|
2257
|
+
"target": "tests/authController",
|
|
2258
|
+
"type": "require"
|
|
2259
|
+
},
|
|
2260
|
+
{
|
|
2261
|
+
"source": "tests/phase2-fixes.test.ts",
|
|
2262
|
+
"target": "src/analyzers/symbols.js",
|
|
2263
|
+
"type": "import"
|
|
2264
|
+
},
|
|
2265
|
+
{
|
|
2266
|
+
"source": "tests/phase2-fixes.test.ts",
|
|
2267
|
+
"target": "src/core/semanticContexts.js",
|
|
2268
|
+
"type": "import"
|
|
2269
|
+
},
|
|
2245
2270
|
{
|
|
2246
2271
|
"source": "tests/schema.test.ts",
|
|
2247
2272
|
"target": "src/core/schema.js",
|
|
@@ -2934,6 +2959,13 @@
|
|
|
2934
2959
|
"src/core/lazyAnalyzer.js",
|
|
2935
2960
|
"tests/auth"
|
|
2936
2961
|
],
|
|
2962
|
+
"tests/phase2-fixes.test.ts": [
|
|
2963
|
+
"src/analyzers/symbols.js",
|
|
2964
|
+
"src/core/semanticContexts.js",
|
|
2965
|
+
"tests/authController",
|
|
2966
|
+
"src/analyzers/symbols.js",
|
|
2967
|
+
"src/core/semanticContexts.js"
|
|
2968
|
+
],
|
|
2937
2969
|
"tests/schema.test.ts": [
|
|
2938
2970
|
"src/core/schema.js",
|
|
2939
2971
|
"src/core/schema.js"
|
|
@@ -36,15 +36,6 @@
|
|
|
36
36
|
"fileCount": 1
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
|
-
{
|
|
40
|
-
"id": "add_",
|
|
41
|
-
"type": "flow",
|
|
42
|
-
"label": "add_",
|
|
43
|
-
"metadata": {
|
|
44
|
-
"entrypoint": "test-projects/python-cli/cli/add_command.py",
|
|
45
|
-
"fileCount": 1
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
39
|
{
|
|
49
40
|
"id": "ai-first",
|
|
50
41
|
"type": "flow",
|
|
@@ -63,15 +54,6 @@
|
|
|
63
54
|
"fileCount": 1
|
|
64
55
|
}
|
|
65
56
|
},
|
|
66
|
-
{
|
|
67
|
-
"id": "auth.",
|
|
68
|
-
"type": "flow",
|
|
69
|
-
"label": "auth.",
|
|
70
|
-
"metadata": {
|
|
71
|
-
"entrypoint": "test-projects/nestjs-backend/src/auth/auth.controller.ts",
|
|
72
|
-
"fileCount": 2
|
|
73
|
-
}
|
|
74
|
-
},
|
|
75
57
|
{
|
|
76
58
|
"id": "auth",
|
|
77
59
|
"type": "flow",
|
|
@@ -99,15 +81,6 @@
|
|
|
99
81
|
"fileCount": 6
|
|
100
82
|
}
|
|
101
83
|
},
|
|
102
|
-
{
|
|
103
|
-
"id": "comments_",
|
|
104
|
-
"type": "flow",
|
|
105
|
-
"label": "comments_",
|
|
106
|
-
"metadata": {
|
|
107
|
-
"entrypoint": "test-projects/rails-app/app/controllers/api/comments_controller.rb",
|
|
108
|
-
"fileCount": 1
|
|
109
|
-
}
|
|
110
|
-
},
|
|
111
84
|
{
|
|
112
85
|
"id": "dashboard",
|
|
113
86
|
"type": "flow",
|
|
@@ -135,15 +108,6 @@
|
|
|
135
108
|
"fileCount": 1
|
|
136
109
|
}
|
|
137
110
|
},
|
|
138
|
-
{
|
|
139
|
-
"id": "list_",
|
|
140
|
-
"type": "flow",
|
|
141
|
-
"label": "list_",
|
|
142
|
-
"metadata": {
|
|
143
|
-
"entrypoint": "test-projects/python-cli/cli/list_command.py",
|
|
144
|
-
"fileCount": 1
|
|
145
|
-
}
|
|
146
|
-
},
|
|
147
111
|
{
|
|
148
112
|
"id": "login",
|
|
149
113
|
"type": "flow",
|
|
@@ -171,37 +135,10 @@
|
|
|
171
135
|
"fileCount": 7
|
|
172
136
|
}
|
|
173
137
|
},
|
|
174
|
-
{
|
|
175
|
-
"id": "posts_",
|
|
176
|
-
"type": "flow",
|
|
177
|
-
"label": "posts_",
|
|
178
|
-
"metadata": {
|
|
179
|
-
"entrypoint": "test-projects/rails-app/app/controllers/api/posts_controller.rb",
|
|
180
|
-
"fileCount": 1
|
|
181
|
-
}
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
"id": "remove_",
|
|
185
|
-
"type": "flow",
|
|
186
|
-
"label": "remove_",
|
|
187
|
-
"metadata": {
|
|
188
|
-
"entrypoint": "test-projects/python-cli/cli/remove_command.py",
|
|
189
|
-
"fileCount": 1
|
|
190
|
-
}
|
|
191
|
-
},
|
|
192
138
|
{
|
|
193
139
|
"id": "routes",
|
|
194
140
|
"type": "flow",
|
|
195
141
|
"label": "routes",
|
|
196
|
-
"metadata": {
|
|
197
|
-
"entrypoint": "test-projects/flask-app/app/api/routes.py",
|
|
198
|
-
"fileCount": 5
|
|
199
|
-
}
|
|
200
|
-
},
|
|
201
|
-
{
|
|
202
|
-
"id": "routes.py",
|
|
203
|
-
"type": "flow",
|
|
204
|
-
"label": "routes.py",
|
|
205
142
|
"metadata": {
|
|
206
143
|
"entrypoint": "test-projects/flask-app/app/api/routes.py",
|
|
207
144
|
"fileCount": 8
|
|
@@ -216,15 +153,6 @@
|
|
|
216
153
|
"fileCount": 10
|
|
217
154
|
}
|
|
218
155
|
},
|
|
219
|
-
{
|
|
220
|
-
"id": "users.",
|
|
221
|
-
"type": "flow",
|
|
222
|
-
"label": "users.",
|
|
223
|
-
"metadata": {
|
|
224
|
-
"entrypoint": "test-projects/nestjs-backend/src/users/users.controller.ts",
|
|
225
|
-
"fileCount": 2
|
|
226
|
-
}
|
|
227
|
-
},
|
|
228
156
|
{
|
|
229
157
|
"id": "users",
|
|
230
158
|
"type": "flow",
|
|
@@ -234,28 +162,10 @@
|
|
|
234
162
|
"fileCount": 1
|
|
235
163
|
}
|
|
236
164
|
},
|
|
237
|
-
{
|
|
238
|
-
"id": "users_",
|
|
239
|
-
"type": "flow",
|
|
240
|
-
"label": "users_",
|
|
241
|
-
"metadata": {
|
|
242
|
-
"entrypoint": "test-projects/rails-app/app/controllers/api/users_controller.rb",
|
|
243
|
-
"fileCount": 1
|
|
244
|
-
}
|
|
245
|
-
},
|
|
246
165
|
{
|
|
247
166
|
"id": "views",
|
|
248
167
|
"type": "flow",
|
|
249
168
|
"label": "views",
|
|
250
|
-
"metadata": {
|
|
251
|
-
"entrypoint": "test-projects/django-app/blog/views.py",
|
|
252
|
-
"fileCount": 2
|
|
253
|
-
}
|
|
254
|
-
},
|
|
255
|
-
{
|
|
256
|
-
"id": "views.py",
|
|
257
|
-
"type": "flow",
|
|
258
|
-
"label": "views.py",
|
|
259
169
|
"metadata": {
|
|
260
170
|
"entrypoint": "test-projects/django-app/blog/views.py",
|
|
261
171
|
"fileCount": 3
|
|
@@ -763,19 +673,14 @@
|
|
|
763
673
|
"to": "post",
|
|
764
674
|
"type": "contains"
|
|
765
675
|
},
|
|
766
|
-
{
|
|
767
|
-
"from": "test-projects",
|
|
768
|
-
"to": "routes",
|
|
769
|
-
"type": "contains"
|
|
770
|
-
},
|
|
771
676
|
{
|
|
772
677
|
"from": "src",
|
|
773
|
-
"to": "routes
|
|
678
|
+
"to": "routes",
|
|
774
679
|
"type": "contains"
|
|
775
680
|
},
|
|
776
681
|
{
|
|
777
682
|
"from": "test-projects",
|
|
778
|
-
"to": "routes
|
|
683
|
+
"to": "routes",
|
|
779
684
|
"type": "contains"
|
|
780
685
|
},
|
|
781
686
|
{
|
|
@@ -783,19 +688,14 @@
|
|
|
783
688
|
"to": "user",
|
|
784
689
|
"type": "contains"
|
|
785
690
|
},
|
|
786
|
-
{
|
|
787
|
-
"from": "test-projects",
|
|
788
|
-
"to": "views",
|
|
789
|
-
"type": "contains"
|
|
790
|
-
},
|
|
791
691
|
{
|
|
792
692
|
"from": "src",
|
|
793
|
-
"to": "views
|
|
693
|
+
"to": "views",
|
|
794
694
|
"type": "contains"
|
|
795
695
|
},
|
|
796
696
|
{
|
|
797
697
|
"from": "test-projects",
|
|
798
|
-
"to": "views
|
|
698
|
+
"to": "views",
|
|
799
699
|
"type": "contains"
|
|
800
700
|
},
|
|
801
701
|
{
|
|
@@ -803,11 +703,6 @@
|
|
|
803
703
|
"to": "test-projects/salesforce-cli/force-app/main/default/classes/AccountController.cls",
|
|
804
704
|
"type": "implements"
|
|
805
705
|
},
|
|
806
|
-
{
|
|
807
|
-
"from": "add_",
|
|
808
|
-
"to": "test-projects/python-cli/cli/add_command.py",
|
|
809
|
-
"type": "implements"
|
|
810
|
-
},
|
|
811
706
|
{
|
|
812
707
|
"from": "ai-first",
|
|
813
708
|
"to": "src/commands/ai-first.ts",
|
|
@@ -818,16 +713,6 @@
|
|
|
818
713
|
"to": "test-projects/laravel-app/routes/api.php",
|
|
819
714
|
"type": "implements"
|
|
820
715
|
},
|
|
821
|
-
{
|
|
822
|
-
"from": "auth.",
|
|
823
|
-
"to": "test-projects/nestjs-backend/src/auth/auth.controller.ts",
|
|
824
|
-
"type": "implements"
|
|
825
|
-
},
|
|
826
|
-
{
|
|
827
|
-
"from": "auth.",
|
|
828
|
-
"to": "test-projects/nestjs-backend/src/auth/auth.service.ts",
|
|
829
|
-
"type": "implements"
|
|
830
|
-
},
|
|
831
716
|
{
|
|
832
717
|
"from": "auth",
|
|
833
718
|
"to": "test-projects/express-api/controllers/authController.js",
|
|
@@ -883,11 +768,6 @@
|
|
|
883
768
|
"to": "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/CommentRepository.java",
|
|
884
769
|
"type": "implements"
|
|
885
770
|
},
|
|
886
|
-
{
|
|
887
|
-
"from": "comments_",
|
|
888
|
-
"to": "test-projects/rails-app/app/controllers/api/comments_controller.rb",
|
|
889
|
-
"type": "implements"
|
|
890
|
-
},
|
|
891
771
|
{
|
|
892
772
|
"from": "dashboard",
|
|
893
773
|
"to": "test-projects/react-app/src/pages/DashboardPage.tsx",
|
|
@@ -903,11 +783,6 @@
|
|
|
903
783
|
"to": "src/commands/explore.ts",
|
|
904
784
|
"type": "implements"
|
|
905
785
|
},
|
|
906
|
-
{
|
|
907
|
-
"from": "list_",
|
|
908
|
-
"to": "test-projects/python-cli/cli/list_command.py",
|
|
909
|
-
"type": "implements"
|
|
910
|
-
},
|
|
911
786
|
{
|
|
912
787
|
"from": "login",
|
|
913
788
|
"to": "test-projects/react-app/src/pages/LoginPage.tsx",
|
|
@@ -953,16 +828,6 @@
|
|
|
953
828
|
"to": "test-projects/spring-boot-app/src/main/java/com/example/demo/services/PostService.java",
|
|
954
829
|
"type": "implements"
|
|
955
830
|
},
|
|
956
|
-
{
|
|
957
|
-
"from": "posts_",
|
|
958
|
-
"to": "test-projects/rails-app/app/controllers/api/posts_controller.rb",
|
|
959
|
-
"type": "implements"
|
|
960
|
-
},
|
|
961
|
-
{
|
|
962
|
-
"from": "remove_",
|
|
963
|
-
"to": "test-projects/python-cli/cli/remove_command.py",
|
|
964
|
-
"type": "implements"
|
|
965
|
-
},
|
|
966
831
|
{
|
|
967
832
|
"from": "routes",
|
|
968
833
|
"to": "test-projects/flask-app/app/api/routes.py",
|
|
@@ -970,61 +835,36 @@
|
|
|
970
835
|
},
|
|
971
836
|
{
|
|
972
837
|
"from": "routes",
|
|
973
|
-
"to": "test-projects/flask-app/app/auth/routes.py",
|
|
974
|
-
"type": "implements"
|
|
975
|
-
},
|
|
976
|
-
{
|
|
977
|
-
"from": "routes",
|
|
978
|
-
"to": "test-projects/flask-app/app/blog/routes.py",
|
|
979
|
-
"type": "implements"
|
|
980
|
-
},
|
|
981
|
-
{
|
|
982
|
-
"from": "routes",
|
|
983
|
-
"to": "test-projects/flask-app/app/main/routes.py",
|
|
984
|
-
"type": "implements"
|
|
985
|
-
},
|
|
986
|
-
{
|
|
987
|
-
"from": "routes",
|
|
988
|
-
"to": "test-projects/rails-app/config/routes.rb",
|
|
989
|
-
"type": "implements"
|
|
990
|
-
},
|
|
991
|
-
{
|
|
992
|
-
"from": "routes.py",
|
|
993
|
-
"to": "test-projects/flask-app/app/api/routes.py",
|
|
994
|
-
"type": "implements"
|
|
995
|
-
},
|
|
996
|
-
{
|
|
997
|
-
"from": "routes.py",
|
|
998
838
|
"to": "tests/lazyAnalyzer.test.ts",
|
|
999
839
|
"type": "implements"
|
|
1000
840
|
},
|
|
1001
841
|
{
|
|
1002
|
-
"from": "routes
|
|
842
|
+
"from": "routes",
|
|
1003
843
|
"to": "src/core/lazyAnalyzer.ts",
|
|
1004
844
|
"type": "implements"
|
|
1005
845
|
},
|
|
1006
846
|
{
|
|
1007
|
-
"from": "routes
|
|
847
|
+
"from": "routes",
|
|
1008
848
|
"to": "src/core/semanticContexts.ts",
|
|
1009
849
|
"type": "implements"
|
|
1010
850
|
},
|
|
1011
851
|
{
|
|
1012
|
-
"from": "routes
|
|
852
|
+
"from": "routes",
|
|
1013
853
|
"to": "tests/gitAnalyzer.test.ts",
|
|
1014
854
|
"type": "implements"
|
|
1015
855
|
},
|
|
1016
856
|
{
|
|
1017
|
-
"from": "routes
|
|
857
|
+
"from": "routes",
|
|
1018
858
|
"to": "src/core/symbolGraph.ts",
|
|
1019
859
|
"type": "implements"
|
|
1020
860
|
},
|
|
1021
861
|
{
|
|
1022
|
-
"from": "routes
|
|
862
|
+
"from": "routes",
|
|
1023
863
|
"to": "src/core/moduleGraph.ts",
|
|
1024
864
|
"type": "implements"
|
|
1025
865
|
},
|
|
1026
866
|
{
|
|
1027
|
-
"from": "routes
|
|
867
|
+
"from": "routes",
|
|
1028
868
|
"to": "src/core/knowledgeGraphBuilder.ts",
|
|
1029
869
|
"type": "implements"
|
|
1030
870
|
},
|
|
@@ -1078,26 +918,11 @@
|
|
|
1078
918
|
"to": "test-projects/spring-boot-app/src/main/java/com/example/demo/services/UserService.java",
|
|
1079
919
|
"type": "implements"
|
|
1080
920
|
},
|
|
1081
|
-
{
|
|
1082
|
-
"from": "users.",
|
|
1083
|
-
"to": "test-projects/nestjs-backend/src/users/users.controller.ts",
|
|
1084
|
-
"type": "implements"
|
|
1085
|
-
},
|
|
1086
|
-
{
|
|
1087
|
-
"from": "users.",
|
|
1088
|
-
"to": "test-projects/nestjs-backend/src/users/users.service.ts",
|
|
1089
|
-
"type": "implements"
|
|
1090
|
-
},
|
|
1091
921
|
{
|
|
1092
922
|
"from": "users",
|
|
1093
923
|
"to": "test-projects/react-app/src/pages/UsersPage.tsx",
|
|
1094
924
|
"type": "implements"
|
|
1095
925
|
},
|
|
1096
|
-
{
|
|
1097
|
-
"from": "users_",
|
|
1098
|
-
"to": "test-projects/rails-app/app/controllers/api/users_controller.rb",
|
|
1099
|
-
"type": "implements"
|
|
1100
|
-
},
|
|
1101
926
|
{
|
|
1102
927
|
"from": "views",
|
|
1103
928
|
"to": "test-projects/django-app/blog/views.py",
|
|
@@ -1105,21 +930,11 @@
|
|
|
1105
930
|
},
|
|
1106
931
|
{
|
|
1107
932
|
"from": "views",
|
|
1108
|
-
"to": "test-projects/django-app/users/views.py",
|
|
1109
|
-
"type": "implements"
|
|
1110
|
-
},
|
|
1111
|
-
{
|
|
1112
|
-
"from": "views.py",
|
|
1113
|
-
"to": "test-projects/django-app/blog/views.py",
|
|
1114
|
-
"type": "implements"
|
|
1115
|
-
},
|
|
1116
|
-
{
|
|
1117
|
-
"from": "views.py",
|
|
1118
933
|
"to": "test-projects/react-app/src/services/userService.ts",
|
|
1119
934
|
"type": "implements"
|
|
1120
935
|
},
|
|
1121
936
|
{
|
|
1122
|
-
"from": "views
|
|
937
|
+
"from": "views",
|
|
1123
938
|
"to": "src/analyzers/entrypoints.ts",
|
|
1124
939
|
"type": "implements"
|
|
1125
940
|
},
|
|
@@ -44300,7 +44115,7 @@
|
|
|
44300
44115
|
}
|
|
44301
44116
|
],
|
|
44302
44117
|
"metadata": {
|
|
44303
|
-
"generated": "2026-03-
|
|
44118
|
+
"generated": "2026-03-19T22:09:49.486Z",
|
|
44304
44119
|
"sources": [
|
|
44305
44120
|
"features",
|
|
44306
44121
|
"flows",
|
|
@@ -44308,7 +44123,7 @@
|
|
|
44308
44123
|
"symbols",
|
|
44309
44124
|
"dependencies"
|
|
44310
44125
|
],
|
|
44311
|
-
"nodeCount":
|
|
44312
|
-
"edgeCount":
|
|
44126
|
+
"nodeCount": 69,
|
|
44127
|
+
"edgeCount": 8698
|
|
44313
44128
|
}
|
|
44314
44129
|
}
|