ai-first-cli 1.1.2 → 1.1.5
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/ANALISIS_MEJORAS.md +327 -0
- package/BUGS.md +455 -0
- package/CHANGELOG.md +100 -225
- package/TEST_RESULTS.md +198 -0
- package/TEST_RESULTS_COMPARATIVE.md +159 -0
- package/TEST_RESULTS_COMPLETE.md +127 -0
- package/TEST_RESULTS_COMPREHENSIVE.md +208 -0
- package/ai/ai_context.md +17 -10
- package/ai/ai_rules.md +5 -3
- package/ai/architecture.md +28 -7
- package/ai/cache.json +832 -52
- package/ai/context/features/commands.json +18 -0
- package/ai/context/features/src.json +61 -0
- package/ai/context/features/test-projects.json +56 -0
- package/ai/context/flows/account.json +9 -0
- package/ai/context/flows/add_.json +9 -0
- package/ai/context/flows/ai-first.json +9 -0
- package/ai/context/flows/auth..json +10 -0
- package/ai/context/flows/auth.json +12 -0
- package/ai/context/flows/dashboard.json +9 -0
- package/ai/context/flows/doctor.json +9 -0
- package/ai/context/flows/explore.json +9 -0
- package/ai/context/flows/list_.json +9 -0
- package/ai/context/flows/login.json +9 -0
- package/ai/context/flows/opportunity.json +9 -0
- package/ai/context/flows/remove_.json +9 -0
- package/ai/context/flows/user.json +14 -0
- package/ai/context/flows/users..json +10 -0
- package/ai/context/flows/users.json +9 -0
- package/ai/conventions.md +3 -2
- package/ai/dependencies.json +429 -251
- package/ai/entrypoints.md +10 -0
- package/ai/files.json +822 -46
- package/ai/git/commit-activity.json +126 -39
- package/ai/git/recent-features.json +3 -1
- package/ai/git/recent-files.json +6 -6
- package/ai/git/recent-flows.json +3 -1
- package/ai/graph/knowledge-graph.json +954 -182
- package/ai/graph/module-graph.json +270 -0
- package/ai/graph/symbol-graph.json +48991 -16523
- package/ai/graph/symbol-references.json +953 -56
- package/ai/hierarchy.json +3 -24
- package/ai/index-state.json +1261 -253
- package/ai/index.db +0 -0
- package/ai/modules.json +226 -0
- package/ai/project.json +29 -0
- package/ai/repo-map.json +2284 -250
- package/ai/repo_map.json +2731 -231
- package/ai/repo_map.md +559 -2
- package/ai/schema.json +5 -0
- package/ai/summary.md +16 -7
- package/ai/tech_stack.md +4 -1
- package/ai/tools.json +10 -0
- package/dist/analyzers/dependencies.d.ts.map +1 -1
- package/dist/analyzers/dependencies.js +8 -16
- package/dist/analyzers/dependencies.js.map +1 -1
- package/dist/analyzers/symbols.d.ts.map +1 -1
- package/dist/analyzers/symbols.js +60 -0
- package/dist/analyzers/symbols.js.map +1 -1
- package/dist/commands/ai-first.d.ts +1 -0
- package/dist/commands/ai-first.d.ts.map +1 -1
- package/dist/commands/ai-first.js +29 -6
- package/dist/commands/ai-first.js.map +1 -1
- package/dist/core/semanticContexts.d.ts.map +1 -1
- package/dist/core/semanticContexts.js +48 -26
- package/dist/core/semanticContexts.js.map +1 -1
- package/dist/core/symbolGraph.d.ts.map +1 -1
- package/dist/core/symbolGraph.js +14 -2
- package/dist/core/symbolGraph.js.map +1 -1
- package/dist/utils/fileUtils.d.ts.map +1 -1
- package/dist/utils/fileUtils.js +5 -0
- package/dist/utils/fileUtils.js.map +1 -1
- package/package.json +2 -2
- package/src/analyzers/dependencies.ts +10 -20
- package/src/analyzers/symbols.ts +64 -0
- package/src/commands/ai-first.ts +32 -8
- package/src/core/semanticContexts.ts +54 -29
- package/src/core/symbolGraph.ts +16 -2
- package/src/utils/fileUtils.ts +5 -0
- package/test-projects/express-api/ai/ai_context.md +112 -0
- package/test-projects/express-api/ai/ai_rules.md +50 -0
- package/test-projects/express-api/ai/architecture.md +62 -0
- package/test-projects/express-api/ai/cache.json +125 -0
- package/test-projects/express-api/ai/context/features/controllers.json +13 -0
- package/test-projects/express-api/ai/context/features/services.json +13 -0
- package/test-projects/express-api/ai/context/flows/auth.json +12 -0
- package/test-projects/express-api/ai/context/flows/user.json +13 -0
- package/test-projects/express-api/ai/conventions.md +51 -0
- package/test-projects/express-api/ai/dependencies.json +54 -0
- package/test-projects/express-api/ai/entrypoints.md +17 -0
- package/test-projects/express-api/ai/files.json +169 -0
- package/test-projects/express-api/ai/graph/knowledge-graph.json +98 -0
- package/test-projects/express-api/ai/graph/module-graph.json +44 -0
- package/test-projects/express-api/ai/graph/symbol-graph.json +882 -0
- package/test-projects/express-api/ai/graph/symbol-references.json +51 -0
- package/test-projects/express-api/ai/index-state.json +238 -0
- package/test-projects/express-api/ai/index.db +0 -0
- package/test-projects/express-api/ai/modules.json +30 -0
- package/test-projects/express-api/ai/project.json +15 -0
- package/test-projects/express-api/ai/repo-map.json +291 -0
- package/test-projects/express-api/ai/repo_map.json +100 -0
- package/test-projects/express-api/ai/repo_map.md +36 -0
- package/test-projects/express-api/ai/schema.json +5 -0
- package/test-projects/express-api/ai/summary.md +14 -0
- package/test-projects/express-api/ai/symbols.json +1174 -0
- package/test-projects/express-api/ai/tech_stack.md +38 -0
- package/test-projects/express-api/ai/tools.json +10 -0
- package/test-projects/express-api/controllers/authController.js +32 -0
- package/test-projects/express-api/controllers/userController.js +51 -0
- package/test-projects/express-api/index.js +21 -0
- package/test-projects/express-api/middleware/authMiddleware.js +30 -0
- package/test-projects/express-api/models/userRepository.js +25 -0
- package/test-projects/express-api/package.json +18 -0
- package/test-projects/express-api/services/authService.js +17 -0
- package/test-projects/express-api/services/userService.js +28 -0
- package/test-projects/nestjs-backend/ai/ai_context.md +110 -0
- package/test-projects/nestjs-backend/ai/ai_rules.md +52 -0
- package/test-projects/nestjs-backend/ai/architecture.md +43 -0
- package/test-projects/nestjs-backend/ai/cache.json +137 -0
- package/test-projects/nestjs-backend/ai/context/features/src.json +23 -0
- package/test-projects/nestjs-backend/ai/context/flows/auth..json +10 -0
- package/test-projects/nestjs-backend/ai/context/flows/users..json +10 -0
- package/test-projects/nestjs-backend/ai/conventions.md +52 -0
- package/test-projects/nestjs-backend/ai/dependencies.json +152 -0
- package/test-projects/nestjs-backend/ai/entrypoints.md +18 -0
- package/test-projects/nestjs-backend/ai/files.json +184 -0
- package/test-projects/nestjs-backend/ai/graph/knowledge-graph.json +74 -0
- package/test-projects/nestjs-backend/ai/graph/module-graph.json +29 -0
- package/test-projects/nestjs-backend/ai/graph/symbol-graph.json +304 -0
- package/test-projects/nestjs-backend/ai/graph/symbol-references.json +5 -0
- package/test-projects/nestjs-backend/ai/index-state.json +259 -0
- package/test-projects/nestjs-backend/ai/index.db +0 -0
- package/test-projects/nestjs-backend/ai/modules.json +19 -0
- package/test-projects/nestjs-backend/ai/project.json +14 -0
- package/test-projects/nestjs-backend/ai/repo-map.json +323 -0
- package/test-projects/nestjs-backend/ai/repo_map.json +141 -0
- package/test-projects/nestjs-backend/ai/repo_map.md +39 -0
- package/test-projects/nestjs-backend/ai/schema.json +5 -0
- package/test-projects/nestjs-backend/ai/summary.md +11 -0
- package/test-projects/nestjs-backend/ai/symbols.json +527 -0
- package/test-projects/nestjs-backend/ai/tech_stack.md +37 -0
- package/test-projects/nestjs-backend/ai/tools.json +10 -0
- package/test-projects/nestjs-backend/package.json +22 -0
- package/test-projects/nestjs-backend/src/app.module.ts +8 -0
- package/test-projects/nestjs-backend/src/auth/auth.controller.ts +22 -0
- package/test-projects/nestjs-backend/src/auth/auth.module.ts +11 -0
- package/test-projects/nestjs-backend/src/auth/auth.service.ts +28 -0
- package/test-projects/nestjs-backend/src/auth/dto/login.dto.ts +4 -0
- package/test-projects/nestjs-backend/src/auth/strategies/jwt.strategy.ts +18 -0
- package/test-projects/nestjs-backend/src/main.ts +9 -0
- package/test-projects/nestjs-backend/src/users/users.controller.ts +32 -0
- package/test-projects/nestjs-backend/src/users/users.module.ts +10 -0
- package/test-projects/nestjs-backend/src/users/users.service.ts +42 -0
- package/test-projects/nestjs-backend/tsconfig.json +21 -0
- package/test-projects/python-cli/__init__.py +1 -0
- package/test-projects/python-cli/ai/ai_context.md +94 -0
- package/test-projects/python-cli/ai/ai_rules.md +47 -0
- package/test-projects/python-cli/ai/architecture.md +49 -0
- package/test-projects/python-cli/ai/cache.json +129 -0
- package/test-projects/python-cli/ai/context/features/cli.json +16 -0
- package/test-projects/python-cli/ai/context/flows/add_.json +9 -0
- package/test-projects/python-cli/ai/context/flows/list_.json +9 -0
- package/test-projects/python-cli/ai/context/flows/remove_.json +9 -0
- package/test-projects/python-cli/ai/conventions.md +51 -0
- package/test-projects/python-cli/ai/dependencies.json +66 -0
- package/test-projects/python-cli/ai/entrypoints.md +4 -0
- package/test-projects/python-cli/ai/files.json +174 -0
- package/test-projects/python-cli/ai/graph/knowledge-graph.json +83 -0
- package/test-projects/python-cli/ai/graph/module-graph.json +31 -0
- package/test-projects/python-cli/ai/graph/symbol-graph.json +358 -0
- package/test-projects/python-cli/ai/graph/symbol-references.json +11 -0
- package/test-projects/python-cli/ai/index-state.json +245 -0
- package/test-projects/python-cli/ai/index.db +0 -0
- package/test-projects/python-cli/ai/modules.json +21 -0
- package/test-projects/python-cli/ai/project.json +15 -0
- package/test-projects/python-cli/ai/repo-map.json +290 -0
- package/test-projects/python-cli/ai/repo_map.json +99 -0
- package/test-projects/python-cli/ai/repo_map.md +32 -0
- package/test-projects/python-cli/ai/schema.json +5 -0
- package/test-projects/python-cli/ai/summary.md +11 -0
- package/test-projects/python-cli/ai/symbols.json +475 -0
- package/test-projects/python-cli/ai/tech_stack.md +30 -0
- package/test-projects/python-cli/ai/tools.json +10 -0
- package/test-projects/python-cli/cli/__init__.py +1 -0
- package/test-projects/python-cli/cli/add_command.py +6 -0
- package/test-projects/python-cli/cli/list_command.py +7 -0
- package/test-projects/python-cli/cli/remove_command.py +6 -0
- package/test-projects/python-cli/main.py +34 -0
- package/test-projects/python-cli/models/__init__.py +2 -0
- package/test-projects/python-cli/models/task.py +19 -0
- package/test-projects/python-cli/models/task_repository.py +44 -0
- package/test-projects/react-app/ai/ai_context.md +95 -0
- package/test-projects/react-app/ai/ai_rules.md +49 -0
- package/test-projects/react-app/ai/architecture.md +33 -0
- package/test-projects/react-app/ai/cache.json +129 -0
- package/test-projects/react-app/ai/context/features/src.json +18 -0
- package/test-projects/react-app/ai/context/flows/dashboard.json +9 -0
- package/test-projects/react-app/ai/context/flows/login.json +9 -0
- package/test-projects/react-app/ai/context/flows/users.json +9 -0
- package/test-projects/react-app/ai/conventions.md +52 -0
- package/test-projects/react-app/ai/dependencies.json +128 -0
- package/test-projects/react-app/ai/entrypoints.md +4 -0
- package/test-projects/react-app/ai/files.json +174 -0
- package/test-projects/react-app/ai/graph/knowledge-graph.json +83 -0
- package/test-projects/react-app/ai/graph/module-graph.json +31 -0
- package/test-projects/react-app/ai/graph/symbol-graph.json +868 -0
- package/test-projects/react-app/ai/graph/symbol-references.json +31 -0
- package/test-projects/react-app/ai/index-state.json +245 -0
- package/test-projects/react-app/ai/index.db +0 -0
- package/test-projects/react-app/ai/modules.json +17 -0
- package/test-projects/react-app/ai/project.json +15 -0
- package/test-projects/react-app/ai/repo-map.json +305 -0
- package/test-projects/react-app/ai/repo_map.json +114 -0
- package/test-projects/react-app/ai/repo_map.md +31 -0
- package/test-projects/react-app/ai/schema.json +5 -0
- package/test-projects/react-app/ai/summary.md +11 -0
- package/test-projects/react-app/ai/symbols.json +985 -0
- package/test-projects/react-app/ai/tech_stack.md +38 -0
- package/test-projects/react-app/ai/tools.json +10 -0
- package/test-projects/react-app/package.json +16 -0
- package/test-projects/react-app/src/App.tsx +21 -0
- package/test-projects/react-app/src/context/AuthContext.tsx +41 -0
- package/test-projects/react-app/src/hooks/useAuth.ts +10 -0
- package/test-projects/react-app/src/main.tsx +10 -0
- package/test-projects/react-app/src/pages/DashboardPage.tsx +17 -0
- package/test-projects/react-app/src/pages/LoginPage.tsx +41 -0
- package/test-projects/react-app/src/pages/UsersPage.tsx +36 -0
- package/test-projects/react-app/src/services/userService.ts +37 -0
- package/test-projects/salesforce-cli/.forceignore +27 -0
- package/test-projects/salesforce-cli/ai/ai_context.md +88 -0
- package/test-projects/salesforce-cli/ai/ai_rules.md +47 -0
- package/test-projects/salesforce-cli/ai/architecture.md +33 -0
- package/test-projects/salesforce-cli/ai/cache.json +105 -0
- package/test-projects/salesforce-cli/ai/context/features/force-app.json +14 -0
- package/test-projects/salesforce-cli/ai/context/flows/account.json +9 -0
- package/test-projects/salesforce-cli/ai/context/flows/opportunity.json +9 -0
- package/test-projects/salesforce-cli/ai/conventions.md +51 -0
- package/test-projects/salesforce-cli/ai/dependencies.json +6 -0
- package/test-projects/salesforce-cli/ai/entrypoints.md +4 -0
- package/test-projects/salesforce-cli/ai/files.json +144 -0
- package/test-projects/salesforce-cli/ai/graph/knowledge-graph.json +64 -0
- package/test-projects/salesforce-cli/ai/graph/module-graph.json +13 -0
- package/test-projects/salesforce-cli/ai/graph/symbol-graph.json +148 -0
- package/test-projects/salesforce-cli/ai/graph/symbol-references.json +1 -0
- package/test-projects/salesforce-cli/ai/index-state.json +203 -0
- package/test-projects/salesforce-cli/ai/index.db +0 -0
- package/test-projects/salesforce-cli/ai/modules.json +12 -0
- package/test-projects/salesforce-cli/ai/project.json +14 -0
- package/test-projects/salesforce-cli/ai/repo-map.json +251 -0
- package/test-projects/salesforce-cli/ai/repo_map.json +69 -0
- package/test-projects/salesforce-cli/ai/repo_map.md +21 -0
- package/test-projects/salesforce-cli/ai/schema.json +5 -0
- package/test-projects/salesforce-cli/ai/summary.md +11 -0
- package/test-projects/salesforce-cli/ai/symbols.json +245 -0
- package/test-projects/salesforce-cli/ai/tech_stack.md +30 -0
- package/test-projects/salesforce-cli/ai/tools.json +10 -0
- package/test-projects/salesforce-cli/force-app/main/default/classes/AccountController.cls +24 -0
- package/test-projects/salesforce-cli/force-app/main/default/classes/OpportunityController.cls +25 -0
- package/test-projects/salesforce-cli/force-app/main/default/objects/Project__c.object.xml +45 -0
- package/test-projects/salesforce-cli/force-app/main/default/triggers/AccountTrigger.trigger +33 -0
- package/test-projects/salesforce-cli/sfdx-project.json +11 -0
- package/tests/e2e/README.md +85 -0
- package/tests/e2e/run-e2e.sh +88 -0
- package/tests/semanticContexts.test.ts +23 -25
|
@@ -46,11 +46,13 @@
|
|
|
46
46
|
"src/commands/ai-first.ts#aiRulesPath",
|
|
47
47
|
"src/commands/ai-first.ts#aiContextPath",
|
|
48
48
|
"src/commands/ai-first.ts#aiContext",
|
|
49
|
+
"src/commands/ai-first.ts#modules",
|
|
49
50
|
"src/commands/ai-first.ts#file",
|
|
51
|
+
"src/commands/ai-first.ts#parts",
|
|
52
|
+
"src/commands/ai-first.ts#modulesPath",
|
|
50
53
|
"src/commands/ai-first.ts#errorMessage",
|
|
51
54
|
"src/commands/ai-first.ts#generateRepoMapJson",
|
|
52
55
|
"src/commands/ai-first.ts#tree",
|
|
53
|
-
"src/commands/ai-first.ts#parts",
|
|
54
56
|
"src/commands/ai-first.ts#current",
|
|
55
57
|
"src/commands/ai-first.ts#part",
|
|
56
58
|
"src/commands/ai-first.ts#isFile",
|
|
@@ -73,7 +75,6 @@
|
|
|
73
75
|
"src/commands/ai-first.ts#allFiles",
|
|
74
76
|
"src/commands/ai-first.ts#useSemantic",
|
|
75
77
|
"src/commands/ai-first.ts#filesJson",
|
|
76
|
-
"src/commands/ai-first.ts#modules",
|
|
77
78
|
"src/commands/ai-first.ts#fileStates",
|
|
78
79
|
"src/commands/ai-first.ts#hashData",
|
|
79
80
|
"src/commands/ai-first.ts#filePaths",
|
|
@@ -110,7 +111,20 @@
|
|
|
110
111
|
"src/commands/ai-first.ts#ORDER",
|
|
111
112
|
"src/commands/ai-first.ts#typeResults",
|
|
112
113
|
"src/commands/ai-first.ts#scan",
|
|
113
|
-
"src/commands/ai-first.ts#repoMapData"
|
|
114
|
+
"src/commands/ai-first.ts#repoMapData",
|
|
115
|
+
"src/commands/ai-first.ts#showJson",
|
|
116
|
+
"src/commands/ai-first.ts#adapters",
|
|
117
|
+
"src/commands/ai-first.ts#adapter",
|
|
118
|
+
"src/commands/ai-first.ts#limit",
|
|
119
|
+
"src/commands/ai-first.ts#showActivity",
|
|
120
|
+
"src/commands/ai-first.ts#result",
|
|
121
|
+
"src/commands/ai-first.ts#topFiles",
|
|
122
|
+
"src/commands/ai-first.ts#showStats",
|
|
123
|
+
"src/commands/ai-first.ts#graph",
|
|
124
|
+
"src/commands/ai-first.ts#nodeTypes",
|
|
125
|
+
"src/commands/ai-first.ts#edgeTypes",
|
|
126
|
+
"src/commands/ai-first.ts#useGit",
|
|
127
|
+
"src/commands/ai-first.ts#error"
|
|
114
128
|
],
|
|
115
129
|
"src/core/semanticContexts.ts#entrypoints": [
|
|
116
130
|
"src/analyzers/aiRules.ts#AIRules",
|
|
@@ -159,11 +173,13 @@
|
|
|
159
173
|
"src/commands/ai-first.ts#aiRulesPath",
|
|
160
174
|
"src/commands/ai-first.ts#aiContextPath",
|
|
161
175
|
"src/commands/ai-first.ts#aiContext",
|
|
176
|
+
"src/commands/ai-first.ts#modules",
|
|
162
177
|
"src/commands/ai-first.ts#file",
|
|
178
|
+
"src/commands/ai-first.ts#parts",
|
|
179
|
+
"src/commands/ai-first.ts#modulesPath",
|
|
163
180
|
"src/commands/ai-first.ts#errorMessage",
|
|
164
181
|
"src/commands/ai-first.ts#generateRepoMapJson",
|
|
165
182
|
"src/commands/ai-first.ts#tree",
|
|
166
|
-
"src/commands/ai-first.ts#parts",
|
|
167
183
|
"src/commands/ai-first.ts#current",
|
|
168
184
|
"src/commands/ai-first.ts#part",
|
|
169
185
|
"src/commands/ai-first.ts#isFile",
|
|
@@ -186,7 +202,6 @@
|
|
|
186
202
|
"src/commands/ai-first.ts#allFiles",
|
|
187
203
|
"src/commands/ai-first.ts#useSemantic",
|
|
188
204
|
"src/commands/ai-first.ts#filesJson",
|
|
189
|
-
"src/commands/ai-first.ts#modules",
|
|
190
205
|
"src/commands/ai-first.ts#fileStates",
|
|
191
206
|
"src/commands/ai-first.ts#hashData",
|
|
192
207
|
"src/commands/ai-first.ts#filePaths",
|
|
@@ -223,9 +238,49 @@
|
|
|
223
238
|
"src/commands/ai-first.ts#ORDER",
|
|
224
239
|
"src/commands/ai-first.ts#typeResults",
|
|
225
240
|
"src/commands/ai-first.ts#scan",
|
|
226
|
-
"src/commands/ai-first.ts#repoMapData"
|
|
227
|
-
|
|
228
|
-
|
|
241
|
+
"src/commands/ai-first.ts#repoMapData",
|
|
242
|
+
"src/commands/ai-first.ts#showJson",
|
|
243
|
+
"src/commands/ai-first.ts#adapters",
|
|
244
|
+
"src/commands/ai-first.ts#adapter",
|
|
245
|
+
"src/commands/ai-first.ts#limit",
|
|
246
|
+
"src/commands/ai-first.ts#showActivity",
|
|
247
|
+
"src/commands/ai-first.ts#result",
|
|
248
|
+
"src/commands/ai-first.ts#topFiles",
|
|
249
|
+
"src/commands/ai-first.ts#showStats",
|
|
250
|
+
"src/commands/ai-first.ts#graph",
|
|
251
|
+
"src/commands/ai-first.ts#nodeTypes",
|
|
252
|
+
"src/commands/ai-first.ts#edgeTypes",
|
|
253
|
+
"src/commands/ai-first.ts#useGit",
|
|
254
|
+
"src/commands/ai-first.ts#error",
|
|
255
|
+
"src/core/lazyAnalyzer.ts#MinimalIndex",
|
|
256
|
+
"src/core/lazyAnalyzer.ts#LazyIndexState",
|
|
257
|
+
"src/core/lazyAnalyzer.ts#buildMinimalIndex",
|
|
258
|
+
"src/core/lazyAnalyzer.ts#scanResult",
|
|
259
|
+
"src/core/lazyAnalyzer.ts#techStack",
|
|
260
|
+
"src/core/lazyAnalyzer.ts#entrypoints",
|
|
261
|
+
"src/core/lazyAnalyzer.ts#repoMap",
|
|
262
|
+
"src/core/lazyAnalyzer.ts#minimalIndex",
|
|
263
|
+
"src/core/lazyAnalyzer.ts#state",
|
|
264
|
+
"src/core/lazyAnalyzer.ts#statePath",
|
|
265
|
+
"src/core/lazyAnalyzer.ts#expandFeatureContext",
|
|
266
|
+
"src/core/lazyAnalyzer.ts#symbols",
|
|
267
|
+
"src/core/lazyAnalyzer.ts#featureSymbols",
|
|
268
|
+
"src/core/lazyAnalyzer.ts#featureContextPath",
|
|
269
|
+
"src/core/lazyAnalyzer.ts#featureContext",
|
|
270
|
+
"src/core/lazyAnalyzer.ts#expandFlowContext",
|
|
271
|
+
"src/core/lazyAnalyzer.ts#dependencies",
|
|
272
|
+
"src/core/lazyAnalyzer.ts#flowFiles",
|
|
273
|
+
"src/core/lazyAnalyzer.ts#flowContextPath",
|
|
274
|
+
"src/core/lazyAnalyzer.ts#flowContext",
|
|
275
|
+
"src/core/lazyAnalyzer.ts#expandFullContext",
|
|
276
|
+
"src/core/lazyAnalyzer.ts#symbolsPath",
|
|
277
|
+
"src/core/lazyAnalyzer.ts#depsPath",
|
|
278
|
+
"src/core/lazyAnalyzer.ts#getLazyIndexState",
|
|
279
|
+
"src/core/lazyAnalyzer.ts#hasMinimalIndex",
|
|
280
|
+
"src/core/lazyAnalyzer.ts#loadMinimalIndex",
|
|
281
|
+
"src/core/lazyAnalyzer.ts#indexPath"
|
|
282
|
+
],
|
|
283
|
+
"src/core/lazyAnalyzer.ts#techStack": [
|
|
229
284
|
"src/analyzers/aiRules.ts#AIRules",
|
|
230
285
|
"src/analyzers/aiRules.ts#generateAIRules",
|
|
231
286
|
"src/analyzers/aiRules.ts#conventions",
|
|
@@ -272,11 +327,13 @@
|
|
|
272
327
|
"src/commands/ai-first.ts#aiRulesPath",
|
|
273
328
|
"src/commands/ai-first.ts#aiContextPath",
|
|
274
329
|
"src/commands/ai-first.ts#aiContext",
|
|
330
|
+
"src/commands/ai-first.ts#modules",
|
|
275
331
|
"src/commands/ai-first.ts#file",
|
|
332
|
+
"src/commands/ai-first.ts#parts",
|
|
333
|
+
"src/commands/ai-first.ts#modulesPath",
|
|
276
334
|
"src/commands/ai-first.ts#errorMessage",
|
|
277
335
|
"src/commands/ai-first.ts#generateRepoMapJson",
|
|
278
336
|
"src/commands/ai-first.ts#tree",
|
|
279
|
-
"src/commands/ai-first.ts#parts",
|
|
280
337
|
"src/commands/ai-first.ts#current",
|
|
281
338
|
"src/commands/ai-first.ts#part",
|
|
282
339
|
"src/commands/ai-first.ts#isFile",
|
|
@@ -299,7 +356,6 @@
|
|
|
299
356
|
"src/commands/ai-first.ts#allFiles",
|
|
300
357
|
"src/commands/ai-first.ts#useSemantic",
|
|
301
358
|
"src/commands/ai-first.ts#filesJson",
|
|
302
|
-
"src/commands/ai-first.ts#modules",
|
|
303
359
|
"src/commands/ai-first.ts#fileStates",
|
|
304
360
|
"src/commands/ai-first.ts#hashData",
|
|
305
361
|
"src/commands/ai-first.ts#filePaths",
|
|
@@ -336,7 +392,46 @@
|
|
|
336
392
|
"src/commands/ai-first.ts#ORDER",
|
|
337
393
|
"src/commands/ai-first.ts#typeResults",
|
|
338
394
|
"src/commands/ai-first.ts#scan",
|
|
339
|
-
"src/commands/ai-first.ts#repoMapData"
|
|
395
|
+
"src/commands/ai-first.ts#repoMapData",
|
|
396
|
+
"src/commands/ai-first.ts#showJson",
|
|
397
|
+
"src/commands/ai-first.ts#adapters",
|
|
398
|
+
"src/commands/ai-first.ts#adapter",
|
|
399
|
+
"src/commands/ai-first.ts#limit",
|
|
400
|
+
"src/commands/ai-first.ts#showActivity",
|
|
401
|
+
"src/commands/ai-first.ts#result",
|
|
402
|
+
"src/commands/ai-first.ts#topFiles",
|
|
403
|
+
"src/commands/ai-first.ts#showStats",
|
|
404
|
+
"src/commands/ai-first.ts#graph",
|
|
405
|
+
"src/commands/ai-first.ts#nodeTypes",
|
|
406
|
+
"src/commands/ai-first.ts#edgeTypes",
|
|
407
|
+
"src/commands/ai-first.ts#useGit",
|
|
408
|
+
"src/commands/ai-first.ts#error",
|
|
409
|
+
"src/core/lazyAnalyzer.ts#MinimalIndex",
|
|
410
|
+
"src/core/lazyAnalyzer.ts#LazyIndexState",
|
|
411
|
+
"src/core/lazyAnalyzer.ts#buildMinimalIndex",
|
|
412
|
+
"src/core/lazyAnalyzer.ts#scanResult",
|
|
413
|
+
"src/core/lazyAnalyzer.ts#entrypoints",
|
|
414
|
+
"src/core/lazyAnalyzer.ts#repoMap",
|
|
415
|
+
"src/core/lazyAnalyzer.ts#minimalIndex",
|
|
416
|
+
"src/core/lazyAnalyzer.ts#state",
|
|
417
|
+
"src/core/lazyAnalyzer.ts#statePath",
|
|
418
|
+
"src/core/lazyAnalyzer.ts#expandFeatureContext",
|
|
419
|
+
"src/core/lazyAnalyzer.ts#symbols",
|
|
420
|
+
"src/core/lazyAnalyzer.ts#featureSymbols",
|
|
421
|
+
"src/core/lazyAnalyzer.ts#featureContextPath",
|
|
422
|
+
"src/core/lazyAnalyzer.ts#featureContext",
|
|
423
|
+
"src/core/lazyAnalyzer.ts#expandFlowContext",
|
|
424
|
+
"src/core/lazyAnalyzer.ts#dependencies",
|
|
425
|
+
"src/core/lazyAnalyzer.ts#flowFiles",
|
|
426
|
+
"src/core/lazyAnalyzer.ts#flowContextPath",
|
|
427
|
+
"src/core/lazyAnalyzer.ts#flowContext",
|
|
428
|
+
"src/core/lazyAnalyzer.ts#expandFullContext",
|
|
429
|
+
"src/core/lazyAnalyzer.ts#symbolsPath",
|
|
430
|
+
"src/core/lazyAnalyzer.ts#depsPath",
|
|
431
|
+
"src/core/lazyAnalyzer.ts#getLazyIndexState",
|
|
432
|
+
"src/core/lazyAnalyzer.ts#hasMinimalIndex",
|
|
433
|
+
"src/core/lazyAnalyzer.ts#loadMinimalIndex",
|
|
434
|
+
"src/core/lazyAnalyzer.ts#indexPath"
|
|
340
435
|
],
|
|
341
436
|
"src/core/contextGenerator.ts#architecture": [
|
|
342
437
|
"src/analyzers/aiRules.ts#AIRules",
|
|
@@ -385,11 +480,13 @@
|
|
|
385
480
|
"src/commands/ai-first.ts#aiRulesPath",
|
|
386
481
|
"src/commands/ai-first.ts#aiContextPath",
|
|
387
482
|
"src/commands/ai-first.ts#aiContext",
|
|
483
|
+
"src/commands/ai-first.ts#modules",
|
|
388
484
|
"src/commands/ai-first.ts#file",
|
|
485
|
+
"src/commands/ai-first.ts#parts",
|
|
486
|
+
"src/commands/ai-first.ts#modulesPath",
|
|
389
487
|
"src/commands/ai-first.ts#errorMessage",
|
|
390
488
|
"src/commands/ai-first.ts#generateRepoMapJson",
|
|
391
489
|
"src/commands/ai-first.ts#tree",
|
|
392
|
-
"src/commands/ai-first.ts#parts",
|
|
393
490
|
"src/commands/ai-first.ts#current",
|
|
394
491
|
"src/commands/ai-first.ts#part",
|
|
395
492
|
"src/commands/ai-first.ts#isFile",
|
|
@@ -412,7 +509,6 @@
|
|
|
412
509
|
"src/commands/ai-first.ts#allFiles",
|
|
413
510
|
"src/commands/ai-first.ts#useSemantic",
|
|
414
511
|
"src/commands/ai-first.ts#filesJson",
|
|
415
|
-
"src/commands/ai-first.ts#modules",
|
|
416
512
|
"src/commands/ai-first.ts#fileStates",
|
|
417
513
|
"src/commands/ai-first.ts#hashData",
|
|
418
514
|
"src/commands/ai-first.ts#filePaths",
|
|
@@ -449,7 +545,20 @@
|
|
|
449
545
|
"src/commands/ai-first.ts#ORDER",
|
|
450
546
|
"src/commands/ai-first.ts#typeResults",
|
|
451
547
|
"src/commands/ai-first.ts#scan",
|
|
452
|
-
"src/commands/ai-first.ts#repoMapData"
|
|
548
|
+
"src/commands/ai-first.ts#repoMapData",
|
|
549
|
+
"src/commands/ai-first.ts#showJson",
|
|
550
|
+
"src/commands/ai-first.ts#adapters",
|
|
551
|
+
"src/commands/ai-first.ts#adapter",
|
|
552
|
+
"src/commands/ai-first.ts#limit",
|
|
553
|
+
"src/commands/ai-first.ts#showActivity",
|
|
554
|
+
"src/commands/ai-first.ts#result",
|
|
555
|
+
"src/commands/ai-first.ts#topFiles",
|
|
556
|
+
"src/commands/ai-first.ts#showStats",
|
|
557
|
+
"src/commands/ai-first.ts#graph",
|
|
558
|
+
"src/commands/ai-first.ts#nodeTypes",
|
|
559
|
+
"src/commands/ai-first.ts#edgeTypes",
|
|
560
|
+
"src/commands/ai-first.ts#useGit",
|
|
561
|
+
"src/commands/ai-first.ts#error"
|
|
453
562
|
],
|
|
454
563
|
"src/commands/ai-first.ts#indexer": [
|
|
455
564
|
"src/commands/ai-first.ts#AIFirstOptions",
|
|
@@ -481,11 +590,13 @@
|
|
|
481
590
|
"src/commands/ai-first.ts#aiRulesPath",
|
|
482
591
|
"src/commands/ai-first.ts#aiContextPath",
|
|
483
592
|
"src/commands/ai-first.ts#aiContext",
|
|
593
|
+
"src/commands/ai-first.ts#modules",
|
|
484
594
|
"src/commands/ai-first.ts#file",
|
|
595
|
+
"src/commands/ai-first.ts#parts",
|
|
596
|
+
"src/commands/ai-first.ts#modulesPath",
|
|
485
597
|
"src/commands/ai-first.ts#errorMessage",
|
|
486
598
|
"src/commands/ai-first.ts#generateRepoMapJson",
|
|
487
599
|
"src/commands/ai-first.ts#tree",
|
|
488
|
-
"src/commands/ai-first.ts#parts",
|
|
489
600
|
"src/commands/ai-first.ts#current",
|
|
490
601
|
"src/commands/ai-first.ts#part",
|
|
491
602
|
"src/commands/ai-first.ts#isFile",
|
|
@@ -508,7 +619,6 @@
|
|
|
508
619
|
"src/commands/ai-first.ts#allFiles",
|
|
509
620
|
"src/commands/ai-first.ts#useSemantic",
|
|
510
621
|
"src/commands/ai-first.ts#filesJson",
|
|
511
|
-
"src/commands/ai-first.ts#modules",
|
|
512
622
|
"src/commands/ai-first.ts#fileStates",
|
|
513
623
|
"src/commands/ai-first.ts#hashData",
|
|
514
624
|
"src/commands/ai-first.ts#filePaths",
|
|
@@ -544,7 +654,20 @@
|
|
|
544
654
|
"src/commands/ai-first.ts#ORDER",
|
|
545
655
|
"src/commands/ai-first.ts#typeResults",
|
|
546
656
|
"src/commands/ai-first.ts#scan",
|
|
547
|
-
"src/commands/ai-first.ts#repoMapData"
|
|
657
|
+
"src/commands/ai-first.ts#repoMapData",
|
|
658
|
+
"src/commands/ai-first.ts#showJson",
|
|
659
|
+
"src/commands/ai-first.ts#adapters",
|
|
660
|
+
"src/commands/ai-first.ts#adapter",
|
|
661
|
+
"src/commands/ai-first.ts#limit",
|
|
662
|
+
"src/commands/ai-first.ts#showActivity",
|
|
663
|
+
"src/commands/ai-first.ts#result",
|
|
664
|
+
"src/commands/ai-first.ts#topFiles",
|
|
665
|
+
"src/commands/ai-first.ts#showStats",
|
|
666
|
+
"src/commands/ai-first.ts#graph",
|
|
667
|
+
"src/commands/ai-first.ts#nodeTypes",
|
|
668
|
+
"src/commands/ai-first.ts#edgeTypes",
|
|
669
|
+
"src/commands/ai-first.ts#useGit",
|
|
670
|
+
"src/commands/ai-first.ts#error"
|
|
548
671
|
],
|
|
549
672
|
"src/core/symbolGraph.ts#symbols": [
|
|
550
673
|
"src/commands/ai-first.ts#AIFirstOptions",
|
|
@@ -576,11 +699,13 @@
|
|
|
576
699
|
"src/commands/ai-first.ts#aiRulesPath",
|
|
577
700
|
"src/commands/ai-first.ts#aiContextPath",
|
|
578
701
|
"src/commands/ai-first.ts#aiContext",
|
|
702
|
+
"src/commands/ai-first.ts#modules",
|
|
579
703
|
"src/commands/ai-first.ts#file",
|
|
704
|
+
"src/commands/ai-first.ts#parts",
|
|
705
|
+
"src/commands/ai-first.ts#modulesPath",
|
|
580
706
|
"src/commands/ai-first.ts#errorMessage",
|
|
581
707
|
"src/commands/ai-first.ts#generateRepoMapJson",
|
|
582
708
|
"src/commands/ai-first.ts#tree",
|
|
583
|
-
"src/commands/ai-first.ts#parts",
|
|
584
709
|
"src/commands/ai-first.ts#current",
|
|
585
710
|
"src/commands/ai-first.ts#part",
|
|
586
711
|
"src/commands/ai-first.ts#isFile",
|
|
@@ -603,7 +728,6 @@
|
|
|
603
728
|
"src/commands/ai-first.ts#allFiles",
|
|
604
729
|
"src/commands/ai-first.ts#useSemantic",
|
|
605
730
|
"src/commands/ai-first.ts#filesJson",
|
|
606
|
-
"src/commands/ai-first.ts#modules",
|
|
607
731
|
"src/commands/ai-first.ts#fileStates",
|
|
608
732
|
"src/commands/ai-first.ts#hashData",
|
|
609
733
|
"src/commands/ai-first.ts#filePaths",
|
|
@@ -641,6 +765,104 @@
|
|
|
641
765
|
"src/commands/ai-first.ts#typeResults",
|
|
642
766
|
"src/commands/ai-first.ts#scan",
|
|
643
767
|
"src/commands/ai-first.ts#repoMapData",
|
|
768
|
+
"src/commands/ai-first.ts#showJson",
|
|
769
|
+
"src/commands/ai-first.ts#adapters",
|
|
770
|
+
"src/commands/ai-first.ts#adapter",
|
|
771
|
+
"src/commands/ai-first.ts#limit",
|
|
772
|
+
"src/commands/ai-first.ts#showActivity",
|
|
773
|
+
"src/commands/ai-first.ts#result",
|
|
774
|
+
"src/commands/ai-first.ts#topFiles",
|
|
775
|
+
"src/commands/ai-first.ts#showStats",
|
|
776
|
+
"src/commands/ai-first.ts#graph",
|
|
777
|
+
"src/commands/ai-first.ts#nodeTypes",
|
|
778
|
+
"src/commands/ai-first.ts#edgeTypes",
|
|
779
|
+
"src/commands/ai-first.ts#useGit",
|
|
780
|
+
"src/commands/ai-first.ts#error",
|
|
781
|
+
"src/core/incrementalAnalyzer.ts#ChangedFile",
|
|
782
|
+
"src/core/incrementalAnalyzer.ts#IncrementalUpdateResult",
|
|
783
|
+
"src/core/incrementalAnalyzer.ts#detectChangedFiles",
|
|
784
|
+
"src/core/incrementalAnalyzer.ts#isGitRepository",
|
|
785
|
+
"src/core/incrementalAnalyzer.ts#detectChangesWithGit",
|
|
786
|
+
"src/core/incrementalAnalyzer.ts#changes",
|
|
787
|
+
"src/core/incrementalAnalyzer.ts#output",
|
|
788
|
+
"src/core/incrementalAnalyzer.ts#line",
|
|
789
|
+
"src/core/incrementalAnalyzer.ts#changeStatus",
|
|
790
|
+
"src/core/incrementalAnalyzer.ts#stagedOutput",
|
|
791
|
+
"src/core/incrementalAnalyzer.ts#detectChangesWithTimestamps",
|
|
792
|
+
"src/core/incrementalAnalyzer.ts#aiDir",
|
|
793
|
+
"src/core/incrementalAnalyzer.ts#state",
|
|
794
|
+
"src/core/incrementalAnalyzer.ts#fullPath",
|
|
795
|
+
"src/core/incrementalAnalyzer.ts#currentHash",
|
|
796
|
+
"src/core/incrementalAnalyzer.ts#updateSymbols",
|
|
797
|
+
"src/core/incrementalAnalyzer.ts#symbolsPath",
|
|
798
|
+
"src/core/incrementalAnalyzer.ts#existingSymbols",
|
|
799
|
+
"src/core/incrementalAnalyzer.ts#raw",
|
|
800
|
+
"src/core/incrementalAnalyzer.ts#changedPaths",
|
|
801
|
+
"src/core/incrementalAnalyzer.ts#changed",
|
|
802
|
+
"src/core/incrementalAnalyzer.ts#fileInfo",
|
|
803
|
+
"src/core/incrementalAnalyzer.ts#symbols",
|
|
804
|
+
"src/core/incrementalAnalyzer.ts#symbol",
|
|
805
|
+
"src/core/incrementalAnalyzer.ts#updateDependencies",
|
|
806
|
+
"src/core/incrementalAnalyzer.ts#depsPath",
|
|
807
|
+
"src/core/incrementalAnalyzer.ts#existingDeps",
|
|
808
|
+
"src/core/incrementalAnalyzer.ts#packageFiles",
|
|
809
|
+
"src/core/incrementalAnalyzer.ts#pkgFile",
|
|
810
|
+
"src/core/incrementalAnalyzer.ts#pkg",
|
|
811
|
+
"src/core/incrementalAnalyzer.ts#updateFeatures",
|
|
812
|
+
"src/core/incrementalAnalyzer.ts#featuresDir",
|
|
813
|
+
"src/core/incrementalAnalyzer.ts#updatedFeatures",
|
|
814
|
+
"src/core/incrementalAnalyzer.ts#featureFile",
|
|
815
|
+
"src/core/incrementalAnalyzer.ts#featurePath",
|
|
816
|
+
"src/core/incrementalAnalyzer.ts#featureData",
|
|
817
|
+
"src/core/incrementalAnalyzer.ts#featureFileSet",
|
|
818
|
+
"src/core/incrementalAnalyzer.ts#affected",
|
|
819
|
+
"src/core/incrementalAnalyzer.ts#featureFilesList",
|
|
820
|
+
"src/core/incrementalAnalyzer.ts#updateFlows",
|
|
821
|
+
"src/core/incrementalAnalyzer.ts#flowsDir",
|
|
822
|
+
"src/core/incrementalAnalyzer.ts#updatedFlows",
|
|
823
|
+
"src/core/incrementalAnalyzer.ts#flowFile",
|
|
824
|
+
"src/core/incrementalAnalyzer.ts#flowPath",
|
|
825
|
+
"src/core/incrementalAnalyzer.ts#flowData",
|
|
826
|
+
"src/core/incrementalAnalyzer.ts#flowFileSet",
|
|
827
|
+
"src/core/incrementalAnalyzer.ts#flowFilesList",
|
|
828
|
+
"src/core/incrementalAnalyzer.ts#updateKnowledgeGraph",
|
|
829
|
+
"src/core/incrementalAnalyzer.ts#runIncrementalUpdate",
|
|
830
|
+
"src/core/incrementalAnalyzer.ts#targetAiDir",
|
|
831
|
+
"src/core/incrementalAnalyzer.ts#errors",
|
|
832
|
+
"src/core/incrementalAnalyzer.ts#changedFiles",
|
|
833
|
+
"src/core/incrementalAnalyzer.ts#updatedSymbols",
|
|
834
|
+
"src/core/incrementalAnalyzer.ts#updatedDependencies",
|
|
835
|
+
"src/core/incrementalAnalyzer.ts#graphUpdated",
|
|
836
|
+
"src/core/incrementalAnalyzer.ts#updateIndexState",
|
|
837
|
+
"src/core/incrementalAnalyzer.ts#filesMap",
|
|
838
|
+
"src/core/incrementalAnalyzer.ts#hashData",
|
|
839
|
+
"src/core/lazyAnalyzer.ts#MinimalIndex",
|
|
840
|
+
"src/core/lazyAnalyzer.ts#LazyIndexState",
|
|
841
|
+
"src/core/lazyAnalyzer.ts#buildMinimalIndex",
|
|
842
|
+
"src/core/lazyAnalyzer.ts#scanResult",
|
|
843
|
+
"src/core/lazyAnalyzer.ts#techStack",
|
|
844
|
+
"src/core/lazyAnalyzer.ts#entrypoints",
|
|
845
|
+
"src/core/lazyAnalyzer.ts#repoMap",
|
|
846
|
+
"src/core/lazyAnalyzer.ts#minimalIndex",
|
|
847
|
+
"src/core/lazyAnalyzer.ts#state",
|
|
848
|
+
"src/core/lazyAnalyzer.ts#statePath",
|
|
849
|
+
"src/core/lazyAnalyzer.ts#expandFeatureContext",
|
|
850
|
+
"src/core/lazyAnalyzer.ts#symbols",
|
|
851
|
+
"src/core/lazyAnalyzer.ts#featureSymbols",
|
|
852
|
+
"src/core/lazyAnalyzer.ts#featureContextPath",
|
|
853
|
+
"src/core/lazyAnalyzer.ts#featureContext",
|
|
854
|
+
"src/core/lazyAnalyzer.ts#expandFlowContext",
|
|
855
|
+
"src/core/lazyAnalyzer.ts#dependencies",
|
|
856
|
+
"src/core/lazyAnalyzer.ts#flowFiles",
|
|
857
|
+
"src/core/lazyAnalyzer.ts#flowContextPath",
|
|
858
|
+
"src/core/lazyAnalyzer.ts#flowContext",
|
|
859
|
+
"src/core/lazyAnalyzer.ts#expandFullContext",
|
|
860
|
+
"src/core/lazyAnalyzer.ts#symbolsPath",
|
|
861
|
+
"src/core/lazyAnalyzer.ts#depsPath",
|
|
862
|
+
"src/core/lazyAnalyzer.ts#getLazyIndexState",
|
|
863
|
+
"src/core/lazyAnalyzer.ts#hasMinimalIndex",
|
|
864
|
+
"src/core/lazyAnalyzer.ts#loadMinimalIndex",
|
|
865
|
+
"src/core/lazyAnalyzer.ts#indexPath",
|
|
644
866
|
"src/core/symbolGraph.ts#RelationshipType",
|
|
645
867
|
"src/core/symbolGraph.ts#SymbolRelationship",
|
|
646
868
|
"src/core/symbolGraph.ts#SymbolGraph",
|
|
@@ -771,11 +993,13 @@
|
|
|
771
993
|
"src/commands/ai-first.ts#aiRulesPath",
|
|
772
994
|
"src/commands/ai-first.ts#aiContextPath",
|
|
773
995
|
"src/commands/ai-first.ts#aiContext",
|
|
996
|
+
"src/commands/ai-first.ts#modules",
|
|
774
997
|
"src/commands/ai-first.ts#file",
|
|
998
|
+
"src/commands/ai-first.ts#parts",
|
|
999
|
+
"src/commands/ai-first.ts#modulesPath",
|
|
775
1000
|
"src/commands/ai-first.ts#errorMessage",
|
|
776
1001
|
"src/commands/ai-first.ts#generateRepoMapJson",
|
|
777
1002
|
"src/commands/ai-first.ts#tree",
|
|
778
|
-
"src/commands/ai-first.ts#parts",
|
|
779
1003
|
"src/commands/ai-first.ts#current",
|
|
780
1004
|
"src/commands/ai-first.ts#part",
|
|
781
1005
|
"src/commands/ai-first.ts#isFile",
|
|
@@ -798,7 +1022,6 @@
|
|
|
798
1022
|
"src/commands/ai-first.ts#allFiles",
|
|
799
1023
|
"src/commands/ai-first.ts#useSemantic",
|
|
800
1024
|
"src/commands/ai-first.ts#filesJson",
|
|
801
|
-
"src/commands/ai-first.ts#modules",
|
|
802
1025
|
"src/commands/ai-first.ts#fileStates",
|
|
803
1026
|
"src/commands/ai-first.ts#hashData",
|
|
804
1027
|
"src/commands/ai-first.ts#filePaths",
|
|
@@ -836,6 +1059,46 @@
|
|
|
836
1059
|
"src/commands/ai-first.ts#typeResults",
|
|
837
1060
|
"src/commands/ai-first.ts#scan",
|
|
838
1061
|
"src/commands/ai-first.ts#repoMapData",
|
|
1062
|
+
"src/commands/ai-first.ts#showJson",
|
|
1063
|
+
"src/commands/ai-first.ts#adapters",
|
|
1064
|
+
"src/commands/ai-first.ts#adapter",
|
|
1065
|
+
"src/commands/ai-first.ts#limit",
|
|
1066
|
+
"src/commands/ai-first.ts#showActivity",
|
|
1067
|
+
"src/commands/ai-first.ts#result",
|
|
1068
|
+
"src/commands/ai-first.ts#topFiles",
|
|
1069
|
+
"src/commands/ai-first.ts#showStats",
|
|
1070
|
+
"src/commands/ai-first.ts#graph",
|
|
1071
|
+
"src/commands/ai-first.ts#nodeTypes",
|
|
1072
|
+
"src/commands/ai-first.ts#edgeTypes",
|
|
1073
|
+
"src/commands/ai-first.ts#useGit",
|
|
1074
|
+
"src/commands/ai-first.ts#error",
|
|
1075
|
+
"src/core/lazyAnalyzer.ts#MinimalIndex",
|
|
1076
|
+
"src/core/lazyAnalyzer.ts#LazyIndexState",
|
|
1077
|
+
"src/core/lazyAnalyzer.ts#buildMinimalIndex",
|
|
1078
|
+
"src/core/lazyAnalyzer.ts#scanResult",
|
|
1079
|
+
"src/core/lazyAnalyzer.ts#techStack",
|
|
1080
|
+
"src/core/lazyAnalyzer.ts#entrypoints",
|
|
1081
|
+
"src/core/lazyAnalyzer.ts#repoMap",
|
|
1082
|
+
"src/core/lazyAnalyzer.ts#minimalIndex",
|
|
1083
|
+
"src/core/lazyAnalyzer.ts#state",
|
|
1084
|
+
"src/core/lazyAnalyzer.ts#statePath",
|
|
1085
|
+
"src/core/lazyAnalyzer.ts#expandFeatureContext",
|
|
1086
|
+
"src/core/lazyAnalyzer.ts#symbols",
|
|
1087
|
+
"src/core/lazyAnalyzer.ts#featureSymbols",
|
|
1088
|
+
"src/core/lazyAnalyzer.ts#featureContextPath",
|
|
1089
|
+
"src/core/lazyAnalyzer.ts#featureContext",
|
|
1090
|
+
"src/core/lazyAnalyzer.ts#expandFlowContext",
|
|
1091
|
+
"src/core/lazyAnalyzer.ts#dependencies",
|
|
1092
|
+
"src/core/lazyAnalyzer.ts#flowFiles",
|
|
1093
|
+
"src/core/lazyAnalyzer.ts#flowContextPath",
|
|
1094
|
+
"src/core/lazyAnalyzer.ts#flowContext",
|
|
1095
|
+
"src/core/lazyAnalyzer.ts#expandFullContext",
|
|
1096
|
+
"src/core/lazyAnalyzer.ts#symbolsPath",
|
|
1097
|
+
"src/core/lazyAnalyzer.ts#depsPath",
|
|
1098
|
+
"src/core/lazyAnalyzer.ts#getLazyIndexState",
|
|
1099
|
+
"src/core/lazyAnalyzer.ts#hasMinimalIndex",
|
|
1100
|
+
"src/core/lazyAnalyzer.ts#loadMinimalIndex",
|
|
1101
|
+
"src/core/lazyAnalyzer.ts#indexPath",
|
|
839
1102
|
"src/core/symbolGraph.ts#RelationshipType",
|
|
840
1103
|
"src/core/symbolGraph.ts#SymbolRelationship",
|
|
841
1104
|
"src/core/symbolGraph.ts#SymbolGraph",
|
|
@@ -966,11 +1229,13 @@
|
|
|
966
1229
|
"src/commands/ai-first.ts#aiRulesPath",
|
|
967
1230
|
"src/commands/ai-first.ts#aiContextPath",
|
|
968
1231
|
"src/commands/ai-first.ts#aiContext",
|
|
1232
|
+
"src/commands/ai-first.ts#modules",
|
|
969
1233
|
"src/commands/ai-first.ts#file",
|
|
1234
|
+
"src/commands/ai-first.ts#parts",
|
|
1235
|
+
"src/commands/ai-first.ts#modulesPath",
|
|
970
1236
|
"src/commands/ai-first.ts#errorMessage",
|
|
971
1237
|
"src/commands/ai-first.ts#generateRepoMapJson",
|
|
972
1238
|
"src/commands/ai-first.ts#tree",
|
|
973
|
-
"src/commands/ai-first.ts#parts",
|
|
974
1239
|
"src/commands/ai-first.ts#current",
|
|
975
1240
|
"src/commands/ai-first.ts#part",
|
|
976
1241
|
"src/commands/ai-first.ts#isFile",
|
|
@@ -993,7 +1258,6 @@
|
|
|
993
1258
|
"src/commands/ai-first.ts#allFiles",
|
|
994
1259
|
"src/commands/ai-first.ts#useSemantic",
|
|
995
1260
|
"src/commands/ai-first.ts#filesJson",
|
|
996
|
-
"src/commands/ai-first.ts#modules",
|
|
997
1261
|
"src/commands/ai-first.ts#fileStates",
|
|
998
1262
|
"src/commands/ai-first.ts#hashData",
|
|
999
1263
|
"src/commands/ai-first.ts#filePaths",
|
|
@@ -1030,7 +1294,20 @@
|
|
|
1030
1294
|
"src/commands/ai-first.ts#ORDER",
|
|
1031
1295
|
"src/commands/ai-first.ts#typeResults",
|
|
1032
1296
|
"src/commands/ai-first.ts#scan",
|
|
1033
|
-
"src/commands/ai-first.ts#repoMapData"
|
|
1297
|
+
"src/commands/ai-first.ts#repoMapData",
|
|
1298
|
+
"src/commands/ai-first.ts#showJson",
|
|
1299
|
+
"src/commands/ai-first.ts#adapters",
|
|
1300
|
+
"src/commands/ai-first.ts#adapter",
|
|
1301
|
+
"src/commands/ai-first.ts#limit",
|
|
1302
|
+
"src/commands/ai-first.ts#showActivity",
|
|
1303
|
+
"src/commands/ai-first.ts#result",
|
|
1304
|
+
"src/commands/ai-first.ts#topFiles",
|
|
1305
|
+
"src/commands/ai-first.ts#showStats",
|
|
1306
|
+
"src/commands/ai-first.ts#graph",
|
|
1307
|
+
"src/commands/ai-first.ts#nodeTypes",
|
|
1308
|
+
"src/commands/ai-first.ts#edgeTypes",
|
|
1309
|
+
"src/commands/ai-first.ts#useGit",
|
|
1310
|
+
"src/commands/ai-first.ts#error"
|
|
1034
1311
|
],
|
|
1035
1312
|
"src/core/embeddings.ts#embeddings": [
|
|
1036
1313
|
"src/commands/ai-first.ts#AIFirstOptions",
|
|
@@ -1062,11 +1339,123 @@
|
|
|
1062
1339
|
"src/commands/ai-first.ts#aiRulesPath",
|
|
1063
1340
|
"src/commands/ai-first.ts#aiContextPath",
|
|
1064
1341
|
"src/commands/ai-first.ts#aiContext",
|
|
1342
|
+
"src/commands/ai-first.ts#modules",
|
|
1065
1343
|
"src/commands/ai-first.ts#file",
|
|
1344
|
+
"src/commands/ai-first.ts#parts",
|
|
1345
|
+
"src/commands/ai-first.ts#modulesPath",
|
|
1066
1346
|
"src/commands/ai-first.ts#errorMessage",
|
|
1067
1347
|
"src/commands/ai-first.ts#generateRepoMapJson",
|
|
1068
1348
|
"src/commands/ai-first.ts#tree",
|
|
1349
|
+
"src/commands/ai-first.ts#current",
|
|
1350
|
+
"src/commands/ai-first.ts#part",
|
|
1351
|
+
"src/commands/ai-first.ts#isFile",
|
|
1352
|
+
"src/commands/ai-first.ts#generateUnifiedContext",
|
|
1353
|
+
"src/commands/ai-first.ts#lines",
|
|
1354
|
+
"src/commands/ai-first.ts#byType",
|
|
1355
|
+
"src/commands/ai-first.ts#ep",
|
|
1356
|
+
"src/commands/ai-first.ts#guideline",
|
|
1357
|
+
"src/commands/ai-first.ts#isMain",
|
|
1358
|
+
"src/commands/ai-first.ts#args",
|
|
1359
|
+
"src/commands/ai-first.ts#options",
|
|
1360
|
+
"src/commands/ai-first.ts#command",
|
|
1361
|
+
"src/commands/ai-first.ts#rootDir",
|
|
1362
|
+
"src/commands/ai-first.ts#outputPath",
|
|
1363
|
+
"src/commands/ai-first.ts#semanticMode",
|
|
1364
|
+
"src/commands/ai-first.ts#arg",
|
|
1365
|
+
"src/commands/ai-first.ts#aiDir",
|
|
1366
|
+
"src/commands/ai-first.ts#existingState",
|
|
1367
|
+
"src/commands/ai-first.ts#fileCount",
|
|
1368
|
+
"src/commands/ai-first.ts#allFiles",
|
|
1369
|
+
"src/commands/ai-first.ts#useSemantic",
|
|
1370
|
+
"src/commands/ai-first.ts#filesJson",
|
|
1371
|
+
"src/commands/ai-first.ts#fileStates",
|
|
1372
|
+
"src/commands/ai-first.ts#hashData",
|
|
1373
|
+
"src/commands/ai-first.ts#filePaths",
|
|
1374
|
+
"src/commands/ai-first.ts#chunks",
|
|
1375
|
+
"src/commands/ai-first.ts#debounceMs",
|
|
1376
|
+
"src/commands/ai-first.ts#indexer",
|
|
1377
|
+
"src/commands/ai-first.ts#outputDir",
|
|
1378
|
+
"src/commands/ai-first.ts#symbolArg",
|
|
1379
|
+
"src/commands/ai-first.ts#depth",
|
|
1380
|
+
"src/commands/ai-first.ts#maxSymbols",
|
|
1381
|
+
"src/commands/ai-first.ts#format",
|
|
1382
|
+
"src/commands/ai-first.ts#save",
|
|
1383
|
+
"src/commands/ai-first.ts#fmt",
|
|
1384
|
+
"src/commands/ai-first.ts#packet",
|
|
1385
|
+
"src/commands/ai-first.ts#savePath",
|
|
1386
|
+
"src/commands/ai-first.ts#queryType",
|
|
1387
|
+
"src/commands/ai-first.ts#dbPath",
|
|
1388
|
+
"src/commands/ai-first.ts#fileBuffer",
|
|
1389
|
+
"src/commands/ai-first.ts#db",
|
|
1390
|
+
"src/commands/ai-first.ts#symbolName",
|
|
1391
|
+
"src/commands/ai-first.ts#results",
|
|
1392
|
+
"src/commands/ai-first.ts#row",
|
|
1393
|
+
"src/commands/ai-first.ts#fileName",
|
|
1394
|
+
"src/commands/ai-first.ts#fileResult",
|
|
1395
|
+
"src/commands/ai-first.ts#fileId",
|
|
1396
|
+
"src/commands/ai-first.ts#filePath",
|
|
1397
|
+
"src/commands/ai-first.ts#baseName",
|
|
1398
|
+
"src/commands/ai-first.ts#countResult",
|
|
1399
|
+
"src/commands/ai-first.ts#total",
|
|
1400
|
+
"src/commands/ai-first.ts#symbolCount",
|
|
1401
|
+
"src/commands/ai-first.ts#importCount",
|
|
1402
|
+
"src/commands/ai-first.ts#hashCount",
|
|
1403
|
+
"src/commands/ai-first.ts#langResults",
|
|
1404
|
+
"src/commands/ai-first.ts#ORDER",
|
|
1405
|
+
"src/commands/ai-first.ts#typeResults",
|
|
1406
|
+
"src/commands/ai-first.ts#scan",
|
|
1407
|
+
"src/commands/ai-first.ts#repoMapData",
|
|
1408
|
+
"src/commands/ai-first.ts#showJson",
|
|
1409
|
+
"src/commands/ai-first.ts#adapters",
|
|
1410
|
+
"src/commands/ai-first.ts#adapter",
|
|
1411
|
+
"src/commands/ai-first.ts#limit",
|
|
1412
|
+
"src/commands/ai-first.ts#showActivity",
|
|
1413
|
+
"src/commands/ai-first.ts#result",
|
|
1414
|
+
"src/commands/ai-first.ts#topFiles",
|
|
1415
|
+
"src/commands/ai-first.ts#showStats",
|
|
1416
|
+
"src/commands/ai-first.ts#graph",
|
|
1417
|
+
"src/commands/ai-first.ts#nodeTypes",
|
|
1418
|
+
"src/commands/ai-first.ts#edgeTypes",
|
|
1419
|
+
"src/commands/ai-first.ts#useGit",
|
|
1420
|
+
"src/commands/ai-first.ts#error"
|
|
1421
|
+
],
|
|
1422
|
+
"tests/lazyAnalyzer.test.ts#index": [
|
|
1423
|
+
"src/commands/ai-first.ts#AIFirstOptions",
|
|
1424
|
+
"src/commands/ai-first.ts#AIFirstResult",
|
|
1425
|
+
"src/commands/ai-first.ts#to",
|
|
1426
|
+
"src/commands/ai-first.ts#runAIFirst",
|
|
1427
|
+
"src/commands/ai-first.ts#filesCreated",
|
|
1428
|
+
"src/commands/ai-first.ts#scanResult",
|
|
1429
|
+
"src/commands/ai-first.ts#repoMap",
|
|
1430
|
+
"src/commands/ai-first.ts#compactMap",
|
|
1431
|
+
"src/commands/ai-first.ts#repoMapPath",
|
|
1432
|
+
"src/commands/ai-first.ts#repoMapJson",
|
|
1433
|
+
"src/commands/ai-first.ts#repoMapJsonPath",
|
|
1434
|
+
"src/commands/ai-first.ts#summary",
|
|
1435
|
+
"src/commands/ai-first.ts#summaryPath",
|
|
1436
|
+
"src/commands/ai-first.ts#architecture",
|
|
1437
|
+
"src/commands/ai-first.ts#architecturePath",
|
|
1438
|
+
"src/commands/ai-first.ts#techStack",
|
|
1439
|
+
"src/commands/ai-first.ts#techStackPath",
|
|
1440
|
+
"src/commands/ai-first.ts#entrypoints",
|
|
1441
|
+
"src/commands/ai-first.ts#entrypointsPath",
|
|
1442
|
+
"src/commands/ai-first.ts#conventions",
|
|
1443
|
+
"src/commands/ai-first.ts#conventionsPath",
|
|
1444
|
+
"src/commands/ai-first.ts#symbols",
|
|
1445
|
+
"src/commands/ai-first.ts#symbolsPath",
|
|
1446
|
+
"src/commands/ai-first.ts#dependencies",
|
|
1447
|
+
"src/commands/ai-first.ts#depsPath",
|
|
1448
|
+
"src/commands/ai-first.ts#aiRules",
|
|
1449
|
+
"src/commands/ai-first.ts#aiRulesPath",
|
|
1450
|
+
"src/commands/ai-first.ts#aiContextPath",
|
|
1451
|
+
"src/commands/ai-first.ts#aiContext",
|
|
1452
|
+
"src/commands/ai-first.ts#modules",
|
|
1453
|
+
"src/commands/ai-first.ts#file",
|
|
1069
1454
|
"src/commands/ai-first.ts#parts",
|
|
1455
|
+
"src/commands/ai-first.ts#modulesPath",
|
|
1456
|
+
"src/commands/ai-first.ts#errorMessage",
|
|
1457
|
+
"src/commands/ai-first.ts#generateRepoMapJson",
|
|
1458
|
+
"src/commands/ai-first.ts#tree",
|
|
1070
1459
|
"src/commands/ai-first.ts#current",
|
|
1071
1460
|
"src/commands/ai-first.ts#part",
|
|
1072
1461
|
"src/commands/ai-first.ts#isFile",
|
|
@@ -1089,7 +1478,145 @@
|
|
|
1089
1478
|
"src/commands/ai-first.ts#allFiles",
|
|
1090
1479
|
"src/commands/ai-first.ts#useSemantic",
|
|
1091
1480
|
"src/commands/ai-first.ts#filesJson",
|
|
1481
|
+
"src/commands/ai-first.ts#fileStates",
|
|
1482
|
+
"src/commands/ai-first.ts#hashData",
|
|
1483
|
+
"src/commands/ai-first.ts#filePaths",
|
|
1484
|
+
"src/commands/ai-first.ts#chunks",
|
|
1485
|
+
"src/commands/ai-first.ts#debounceMs",
|
|
1486
|
+
"src/commands/ai-first.ts#indexer",
|
|
1487
|
+
"src/commands/ai-first.ts#outputDir",
|
|
1488
|
+
"src/commands/ai-first.ts#symbolArg",
|
|
1489
|
+
"src/commands/ai-first.ts#depth",
|
|
1490
|
+
"src/commands/ai-first.ts#maxSymbols",
|
|
1491
|
+
"src/commands/ai-first.ts#format",
|
|
1492
|
+
"src/commands/ai-first.ts#save",
|
|
1493
|
+
"src/commands/ai-first.ts#fmt",
|
|
1494
|
+
"src/commands/ai-first.ts#packet",
|
|
1495
|
+
"src/commands/ai-first.ts#savePath",
|
|
1496
|
+
"src/commands/ai-first.ts#queryType",
|
|
1497
|
+
"src/commands/ai-first.ts#dbPath",
|
|
1498
|
+
"src/commands/ai-first.ts#fileBuffer",
|
|
1499
|
+
"src/commands/ai-first.ts#db",
|
|
1500
|
+
"src/commands/ai-first.ts#symbolName",
|
|
1501
|
+
"src/commands/ai-first.ts#results",
|
|
1502
|
+
"src/commands/ai-first.ts#row",
|
|
1503
|
+
"src/commands/ai-first.ts#fileName",
|
|
1504
|
+
"src/commands/ai-first.ts#fileResult",
|
|
1505
|
+
"src/commands/ai-first.ts#fileId",
|
|
1506
|
+
"src/commands/ai-first.ts#filePath",
|
|
1507
|
+
"src/commands/ai-first.ts#baseName",
|
|
1508
|
+
"src/commands/ai-first.ts#countResult",
|
|
1509
|
+
"src/commands/ai-first.ts#total",
|
|
1510
|
+
"src/commands/ai-first.ts#symbolCount",
|
|
1511
|
+
"src/commands/ai-first.ts#importCount",
|
|
1512
|
+
"src/commands/ai-first.ts#hashCount",
|
|
1513
|
+
"src/commands/ai-first.ts#langResults",
|
|
1514
|
+
"src/commands/ai-first.ts#ORDER",
|
|
1515
|
+
"src/commands/ai-first.ts#typeResults",
|
|
1516
|
+
"src/commands/ai-first.ts#scan",
|
|
1517
|
+
"src/commands/ai-first.ts#repoMapData",
|
|
1518
|
+
"src/commands/ai-first.ts#showJson",
|
|
1519
|
+
"src/commands/ai-first.ts#adapters",
|
|
1520
|
+
"src/commands/ai-first.ts#adapter",
|
|
1521
|
+
"src/commands/ai-first.ts#limit",
|
|
1522
|
+
"src/commands/ai-first.ts#showActivity",
|
|
1523
|
+
"src/commands/ai-first.ts#result",
|
|
1524
|
+
"src/commands/ai-first.ts#topFiles",
|
|
1525
|
+
"src/commands/ai-first.ts#showStats",
|
|
1526
|
+
"src/commands/ai-first.ts#graph",
|
|
1527
|
+
"src/commands/ai-first.ts#nodeTypes",
|
|
1528
|
+
"src/commands/ai-first.ts#edgeTypes",
|
|
1529
|
+
"src/commands/ai-first.ts#useGit",
|
|
1530
|
+
"src/commands/ai-first.ts#error",
|
|
1531
|
+
"src/core/adapters/adapterRegistry.ts#ADAPTERS",
|
|
1532
|
+
"src/core/adapters/adapterRegistry.ts#AdapterDetectionResult",
|
|
1533
|
+
"src/core/adapters/adapterRegistry.ts#detectAdapter",
|
|
1534
|
+
"src/core/adapters/adapterRegistry.ts#results",
|
|
1535
|
+
"src/core/adapters/adapterRegistry.ts#detectAllAdapters",
|
|
1536
|
+
"src/core/adapters/adapterRegistry.ts#adapter",
|
|
1537
|
+
"src/core/adapters/adapterRegistry.ts#matchedSignals",
|
|
1538
|
+
"src/core/adapters/adapterRegistry.ts#score",
|
|
1539
|
+
"src/core/adapters/adapterRegistry.ts#signal",
|
|
1540
|
+
"src/core/adapters/adapterRegistry.ts#matched",
|
|
1541
|
+
"src/core/adapters/adapterRegistry.ts#matchSignal",
|
|
1542
|
+
"src/core/adapters/adapterRegistry.ts#matchFileSignal",
|
|
1543
|
+
"src/core/adapters/adapterRegistry.ts#ext",
|
|
1544
|
+
"src/core/adapters/adapterRegistry.ts#entries",
|
|
1545
|
+
"src/core/adapters/adapterRegistry.ts#matchDirectorySignal",
|
|
1546
|
+
"src/core/adapters/adapterRegistry.ts#getSignalWeight",
|
|
1547
|
+
"src/core/adapters/adapterRegistry.ts#getAdapter",
|
|
1548
|
+
"src/core/adapters/adapterRegistry.ts#listAdapters",
|
|
1549
|
+
"tests/adapters.test.ts#createTempProjectDir",
|
|
1550
|
+
"tests/adapters.test.ts#tempDir",
|
|
1551
|
+
"tests/adapters.test.ts#fullPath",
|
|
1552
|
+
"tests/adapters.test.ts#dir",
|
|
1553
|
+
"tests/adapters.test.ts#projectDir",
|
|
1554
|
+
"tests/adapters.test.ts#adapter",
|
|
1555
|
+
"tests/adapters.test.ts#ApplicationController",
|
|
1556
|
+
"tests/adapters.test.ts#Test",
|
|
1557
|
+
"tests/adapters.test.ts#Startup",
|
|
1558
|
+
"tests/adapters.test.ts#results",
|
|
1559
|
+
"tests/adapters.test.ts#adapters"
|
|
1560
|
+
],
|
|
1561
|
+
"tests/schema.test.ts#schema": [
|
|
1562
|
+
"src/commands/ai-first.ts#AIFirstOptions",
|
|
1563
|
+
"src/commands/ai-first.ts#AIFirstResult",
|
|
1564
|
+
"src/commands/ai-first.ts#to",
|
|
1565
|
+
"src/commands/ai-first.ts#runAIFirst",
|
|
1566
|
+
"src/commands/ai-first.ts#filesCreated",
|
|
1567
|
+
"src/commands/ai-first.ts#scanResult",
|
|
1568
|
+
"src/commands/ai-first.ts#repoMap",
|
|
1569
|
+
"src/commands/ai-first.ts#compactMap",
|
|
1570
|
+
"src/commands/ai-first.ts#repoMapPath",
|
|
1571
|
+
"src/commands/ai-first.ts#repoMapJson",
|
|
1572
|
+
"src/commands/ai-first.ts#repoMapJsonPath",
|
|
1573
|
+
"src/commands/ai-first.ts#summary",
|
|
1574
|
+
"src/commands/ai-first.ts#summaryPath",
|
|
1575
|
+
"src/commands/ai-first.ts#architecture",
|
|
1576
|
+
"src/commands/ai-first.ts#architecturePath",
|
|
1577
|
+
"src/commands/ai-first.ts#techStack",
|
|
1578
|
+
"src/commands/ai-first.ts#techStackPath",
|
|
1579
|
+
"src/commands/ai-first.ts#entrypoints",
|
|
1580
|
+
"src/commands/ai-first.ts#entrypointsPath",
|
|
1581
|
+
"src/commands/ai-first.ts#conventions",
|
|
1582
|
+
"src/commands/ai-first.ts#conventionsPath",
|
|
1583
|
+
"src/commands/ai-first.ts#symbols",
|
|
1584
|
+
"src/commands/ai-first.ts#symbolsPath",
|
|
1585
|
+
"src/commands/ai-first.ts#dependencies",
|
|
1586
|
+
"src/commands/ai-first.ts#depsPath",
|
|
1587
|
+
"src/commands/ai-first.ts#aiRules",
|
|
1588
|
+
"src/commands/ai-first.ts#aiRulesPath",
|
|
1589
|
+
"src/commands/ai-first.ts#aiContextPath",
|
|
1590
|
+
"src/commands/ai-first.ts#aiContext",
|
|
1092
1591
|
"src/commands/ai-first.ts#modules",
|
|
1592
|
+
"src/commands/ai-first.ts#file",
|
|
1593
|
+
"src/commands/ai-first.ts#parts",
|
|
1594
|
+
"src/commands/ai-first.ts#modulesPath",
|
|
1595
|
+
"src/commands/ai-first.ts#errorMessage",
|
|
1596
|
+
"src/commands/ai-first.ts#generateRepoMapJson",
|
|
1597
|
+
"src/commands/ai-first.ts#tree",
|
|
1598
|
+
"src/commands/ai-first.ts#current",
|
|
1599
|
+
"src/commands/ai-first.ts#part",
|
|
1600
|
+
"src/commands/ai-first.ts#isFile",
|
|
1601
|
+
"src/commands/ai-first.ts#generateUnifiedContext",
|
|
1602
|
+
"src/commands/ai-first.ts#lines",
|
|
1603
|
+
"src/commands/ai-first.ts#byType",
|
|
1604
|
+
"src/commands/ai-first.ts#ep",
|
|
1605
|
+
"src/commands/ai-first.ts#guideline",
|
|
1606
|
+
"src/commands/ai-first.ts#isMain",
|
|
1607
|
+
"src/commands/ai-first.ts#args",
|
|
1608
|
+
"src/commands/ai-first.ts#options",
|
|
1609
|
+
"src/commands/ai-first.ts#command",
|
|
1610
|
+
"src/commands/ai-first.ts#rootDir",
|
|
1611
|
+
"src/commands/ai-first.ts#outputPath",
|
|
1612
|
+
"src/commands/ai-first.ts#semanticMode",
|
|
1613
|
+
"src/commands/ai-first.ts#arg",
|
|
1614
|
+
"src/commands/ai-first.ts#aiDir",
|
|
1615
|
+
"src/commands/ai-first.ts#existingState",
|
|
1616
|
+
"src/commands/ai-first.ts#fileCount",
|
|
1617
|
+
"src/commands/ai-first.ts#allFiles",
|
|
1618
|
+
"src/commands/ai-first.ts#useSemantic",
|
|
1619
|
+
"src/commands/ai-first.ts#filesJson",
|
|
1093
1620
|
"src/commands/ai-first.ts#fileStates",
|
|
1094
1621
|
"src/commands/ai-first.ts#hashData",
|
|
1095
1622
|
"src/commands/ai-first.ts#filePaths",
|
|
@@ -1126,7 +1653,133 @@
|
|
|
1126
1653
|
"src/commands/ai-first.ts#ORDER",
|
|
1127
1654
|
"src/commands/ai-first.ts#typeResults",
|
|
1128
1655
|
"src/commands/ai-first.ts#scan",
|
|
1129
|
-
"src/commands/ai-first.ts#repoMapData"
|
|
1656
|
+
"src/commands/ai-first.ts#repoMapData",
|
|
1657
|
+
"src/commands/ai-first.ts#showJson",
|
|
1658
|
+
"src/commands/ai-first.ts#adapters",
|
|
1659
|
+
"src/commands/ai-first.ts#adapter",
|
|
1660
|
+
"src/commands/ai-first.ts#limit",
|
|
1661
|
+
"src/commands/ai-first.ts#showActivity",
|
|
1662
|
+
"src/commands/ai-first.ts#result",
|
|
1663
|
+
"src/commands/ai-first.ts#topFiles",
|
|
1664
|
+
"src/commands/ai-first.ts#showStats",
|
|
1665
|
+
"src/commands/ai-first.ts#graph",
|
|
1666
|
+
"src/commands/ai-first.ts#nodeTypes",
|
|
1667
|
+
"src/commands/ai-first.ts#edgeTypes",
|
|
1668
|
+
"src/commands/ai-first.ts#useGit",
|
|
1669
|
+
"src/commands/ai-first.ts#error",
|
|
1670
|
+
"tests/schema.test.ts#createTempAiDir",
|
|
1671
|
+
"tests/schema.test.ts#tempDir",
|
|
1672
|
+
"tests/schema.test.ts#aiDir",
|
|
1673
|
+
"tests/schema.test.ts#schemaPath",
|
|
1674
|
+
"tests/schema.test.ts#loaded",
|
|
1675
|
+
"tests/schema.test.ts#rootDir",
|
|
1676
|
+
"tests/schema.test.ts#project",
|
|
1677
|
+
"tests/schema.test.ts#projectPath",
|
|
1678
|
+
"tests/schema.test.ts#featuresDir",
|
|
1679
|
+
"tests/schema.test.ts#tools",
|
|
1680
|
+
"tests/schema.test.ts#toolsPath",
|
|
1681
|
+
"tests/schema.test.ts#result",
|
|
1682
|
+
"tests/schema.test.ts#full"
|
|
1683
|
+
],
|
|
1684
|
+
"src/core/adapters/javascriptAdapter.ts#javascriptAdapter": [
|
|
1685
|
+
"src/core/adapters/adapterRegistry.ts#ADAPTERS",
|
|
1686
|
+
"src/core/adapters/adapterRegistry.ts#AdapterDetectionResult",
|
|
1687
|
+
"src/core/adapters/adapterRegistry.ts#detectAdapter",
|
|
1688
|
+
"src/core/adapters/adapterRegistry.ts#results",
|
|
1689
|
+
"src/core/adapters/adapterRegistry.ts#detectAllAdapters",
|
|
1690
|
+
"src/core/adapters/adapterRegistry.ts#adapter",
|
|
1691
|
+
"src/core/adapters/adapterRegistry.ts#matchedSignals",
|
|
1692
|
+
"src/core/adapters/adapterRegistry.ts#score",
|
|
1693
|
+
"src/core/adapters/adapterRegistry.ts#signal",
|
|
1694
|
+
"src/core/adapters/adapterRegistry.ts#matched",
|
|
1695
|
+
"src/core/adapters/adapterRegistry.ts#matchSignal",
|
|
1696
|
+
"src/core/adapters/adapterRegistry.ts#matchFileSignal",
|
|
1697
|
+
"src/core/adapters/adapterRegistry.ts#ext",
|
|
1698
|
+
"src/core/adapters/adapterRegistry.ts#entries",
|
|
1699
|
+
"src/core/adapters/adapterRegistry.ts#matchDirectorySignal",
|
|
1700
|
+
"src/core/adapters/adapterRegistry.ts#getSignalWeight",
|
|
1701
|
+
"src/core/adapters/adapterRegistry.ts#getAdapter",
|
|
1702
|
+
"src/core/adapters/adapterRegistry.ts#listAdapters"
|
|
1703
|
+
],
|
|
1704
|
+
"src/core/adapters/pythonAdapter.ts#pythonAdapter": [
|
|
1705
|
+
"src/core/adapters/adapterRegistry.ts#ADAPTERS",
|
|
1706
|
+
"src/core/adapters/adapterRegistry.ts#AdapterDetectionResult",
|
|
1707
|
+
"src/core/adapters/adapterRegistry.ts#detectAdapter",
|
|
1708
|
+
"src/core/adapters/adapterRegistry.ts#results",
|
|
1709
|
+
"src/core/adapters/adapterRegistry.ts#detectAllAdapters",
|
|
1710
|
+
"src/core/adapters/adapterRegistry.ts#adapter",
|
|
1711
|
+
"src/core/adapters/adapterRegistry.ts#matchedSignals",
|
|
1712
|
+
"src/core/adapters/adapterRegistry.ts#score",
|
|
1713
|
+
"src/core/adapters/adapterRegistry.ts#signal",
|
|
1714
|
+
"src/core/adapters/adapterRegistry.ts#matched",
|
|
1715
|
+
"src/core/adapters/adapterRegistry.ts#matchSignal",
|
|
1716
|
+
"src/core/adapters/adapterRegistry.ts#matchFileSignal",
|
|
1717
|
+
"src/core/adapters/adapterRegistry.ts#ext",
|
|
1718
|
+
"src/core/adapters/adapterRegistry.ts#entries",
|
|
1719
|
+
"src/core/adapters/adapterRegistry.ts#matchDirectorySignal",
|
|
1720
|
+
"src/core/adapters/adapterRegistry.ts#getSignalWeight",
|
|
1721
|
+
"src/core/adapters/adapterRegistry.ts#getAdapter",
|
|
1722
|
+
"src/core/adapters/adapterRegistry.ts#listAdapters"
|
|
1723
|
+
],
|
|
1724
|
+
"src/core/adapters/railsAdapter.ts#railsAdapter": [
|
|
1725
|
+
"src/core/adapters/adapterRegistry.ts#ADAPTERS",
|
|
1726
|
+
"src/core/adapters/adapterRegistry.ts#AdapterDetectionResult",
|
|
1727
|
+
"src/core/adapters/adapterRegistry.ts#detectAdapter",
|
|
1728
|
+
"src/core/adapters/adapterRegistry.ts#results",
|
|
1729
|
+
"src/core/adapters/adapterRegistry.ts#detectAllAdapters",
|
|
1730
|
+
"src/core/adapters/adapterRegistry.ts#adapter",
|
|
1731
|
+
"src/core/adapters/adapterRegistry.ts#matchedSignals",
|
|
1732
|
+
"src/core/adapters/adapterRegistry.ts#score",
|
|
1733
|
+
"src/core/adapters/adapterRegistry.ts#signal",
|
|
1734
|
+
"src/core/adapters/adapterRegistry.ts#matched",
|
|
1735
|
+
"src/core/adapters/adapterRegistry.ts#matchSignal",
|
|
1736
|
+
"src/core/adapters/adapterRegistry.ts#matchFileSignal",
|
|
1737
|
+
"src/core/adapters/adapterRegistry.ts#ext",
|
|
1738
|
+
"src/core/adapters/adapterRegistry.ts#entries",
|
|
1739
|
+
"src/core/adapters/adapterRegistry.ts#matchDirectorySignal",
|
|
1740
|
+
"src/core/adapters/adapterRegistry.ts#getSignalWeight",
|
|
1741
|
+
"src/core/adapters/adapterRegistry.ts#getAdapter",
|
|
1742
|
+
"src/core/adapters/adapterRegistry.ts#listAdapters"
|
|
1743
|
+
],
|
|
1744
|
+
"src/core/adapters/salesforceAdapter.ts#salesforceAdapter": [
|
|
1745
|
+
"src/core/adapters/adapterRegistry.ts#ADAPTERS",
|
|
1746
|
+
"src/core/adapters/adapterRegistry.ts#AdapterDetectionResult",
|
|
1747
|
+
"src/core/adapters/adapterRegistry.ts#detectAdapter",
|
|
1748
|
+
"src/core/adapters/adapterRegistry.ts#results",
|
|
1749
|
+
"src/core/adapters/adapterRegistry.ts#detectAllAdapters",
|
|
1750
|
+
"src/core/adapters/adapterRegistry.ts#adapter",
|
|
1751
|
+
"src/core/adapters/adapterRegistry.ts#matchedSignals",
|
|
1752
|
+
"src/core/adapters/adapterRegistry.ts#score",
|
|
1753
|
+
"src/core/adapters/adapterRegistry.ts#signal",
|
|
1754
|
+
"src/core/adapters/adapterRegistry.ts#matched",
|
|
1755
|
+
"src/core/adapters/adapterRegistry.ts#matchSignal",
|
|
1756
|
+
"src/core/adapters/adapterRegistry.ts#matchFileSignal",
|
|
1757
|
+
"src/core/adapters/adapterRegistry.ts#ext",
|
|
1758
|
+
"src/core/adapters/adapterRegistry.ts#entries",
|
|
1759
|
+
"src/core/adapters/adapterRegistry.ts#matchDirectorySignal",
|
|
1760
|
+
"src/core/adapters/adapterRegistry.ts#getSignalWeight",
|
|
1761
|
+
"src/core/adapters/adapterRegistry.ts#getAdapter",
|
|
1762
|
+
"src/core/adapters/adapterRegistry.ts#listAdapters"
|
|
1763
|
+
],
|
|
1764
|
+
"src/core/adapters/dotnetAdapter.ts#dotnetAdapter": [
|
|
1765
|
+
"src/core/adapters/adapterRegistry.ts#ADAPTERS",
|
|
1766
|
+
"src/core/adapters/adapterRegistry.ts#AdapterDetectionResult",
|
|
1767
|
+
"src/core/adapters/adapterRegistry.ts#detectAdapter",
|
|
1768
|
+
"src/core/adapters/adapterRegistry.ts#results",
|
|
1769
|
+
"src/core/adapters/adapterRegistry.ts#detectAllAdapters",
|
|
1770
|
+
"src/core/adapters/adapterRegistry.ts#adapter",
|
|
1771
|
+
"src/core/adapters/adapterRegistry.ts#matchedSignals",
|
|
1772
|
+
"src/core/adapters/adapterRegistry.ts#score",
|
|
1773
|
+
"src/core/adapters/adapterRegistry.ts#signal",
|
|
1774
|
+
"src/core/adapters/adapterRegistry.ts#matched",
|
|
1775
|
+
"src/core/adapters/adapterRegistry.ts#matchSignal",
|
|
1776
|
+
"src/core/adapters/adapterRegistry.ts#matchFileSignal",
|
|
1777
|
+
"src/core/adapters/adapterRegistry.ts#ext",
|
|
1778
|
+
"src/core/adapters/adapterRegistry.ts#entries",
|
|
1779
|
+
"src/core/adapters/adapterRegistry.ts#matchDirectorySignal",
|
|
1780
|
+
"src/core/adapters/adapterRegistry.ts#getSignalWeight",
|
|
1781
|
+
"src/core/adapters/adapterRegistry.ts#getAdapter",
|
|
1782
|
+
"src/core/adapters/adapterRegistry.ts#listAdapters"
|
|
1130
1783
|
],
|
|
1131
1784
|
"src/core/indexer.ts#sql": [
|
|
1132
1785
|
"src/core/indexer.ts#SQL",
|
|
@@ -1204,6 +1857,108 @@
|
|
|
1204
1857
|
"src/core/indexer.ts#EXAMPLE_QUERIES",
|
|
1205
1858
|
"src/core/indexer.ts#FROM"
|
|
1206
1859
|
],
|
|
1860
|
+
"src/core/embeddings.ts#index": [
|
|
1861
|
+
"test-projects/express-api/controllers/authController.js#jwt",
|
|
1862
|
+
"test-projects/express-api/controllers/authController.js#authService",
|
|
1863
|
+
"test-projects/express-api/controllers/authController.js#SECRET",
|
|
1864
|
+
"test-projects/express-api/controllers/authController.js#login",
|
|
1865
|
+
"test-projects/express-api/controllers/authController.js#user",
|
|
1866
|
+
"test-projects/express-api/controllers/authController.js#token",
|
|
1867
|
+
"test-projects/express-api/controllers/authController.js#register",
|
|
1868
|
+
"test-projects/express-api/controllers/userController.js#userService",
|
|
1869
|
+
"test-projects/express-api/controllers/userController.js#getAll",
|
|
1870
|
+
"test-projects/express-api/controllers/userController.js#users",
|
|
1871
|
+
"test-projects/express-api/controllers/userController.js#getById",
|
|
1872
|
+
"test-projects/express-api/controllers/userController.js#user",
|
|
1873
|
+
"test-projects/express-api/controllers/userController.js#create",
|
|
1874
|
+
"test-projects/express-api/controllers/userController.js#update",
|
|
1875
|
+
"test-projects/express-api/controllers/userController.js#remove",
|
|
1876
|
+
"test-projects/express-api/index.js#express",
|
|
1877
|
+
"test-projects/express-api/index.js#authController",
|
|
1878
|
+
"test-projects/express-api/index.js#userController",
|
|
1879
|
+
"test-projects/express-api/index.js#app",
|
|
1880
|
+
"test-projects/express-api/index.js#PORT",
|
|
1881
|
+
"test-projects/express-api/services/authService.js#bcrypt",
|
|
1882
|
+
"test-projects/express-api/services/authService.js#userRepository",
|
|
1883
|
+
"test-projects/express-api/services/authService.js#verifyCredentials",
|
|
1884
|
+
"test-projects/express-api/services/authService.js#user",
|
|
1885
|
+
"test-projects/express-api/services/authService.js#valid",
|
|
1886
|
+
"test-projects/express-api/services/authService.js#createUser",
|
|
1887
|
+
"test-projects/express-api/services/authService.js#hashedPassword",
|
|
1888
|
+
"test-projects/express-api/services/userService.js#UserService",
|
|
1889
|
+
"test-projects/express-api/services/userService.js#repository",
|
|
1890
|
+
"test-projects/react-app/src/App.tsx#App",
|
|
1891
|
+
"test-projects/react-app/src/hooks/useAuth.ts#useAuth",
|
|
1892
|
+
"test-projects/react-app/src/hooks/useAuth.ts#context",
|
|
1893
|
+
"test-projects/react-app/src/main.tsx#root",
|
|
1894
|
+
"test-projects/react-app/src/pages/DashboardPage.tsx#DashboardPage",
|
|
1895
|
+
"test-projects/react-app/src/pages/LoginPage.tsx#LoginPage",
|
|
1896
|
+
"test-projects/react-app/src/pages/LoginPage.tsx#navigate",
|
|
1897
|
+
"test-projects/react-app/src/pages/LoginPage.tsx#handleSubmit",
|
|
1898
|
+
"test-projects/react-app/src/pages/UsersPage.tsx#UsersPage",
|
|
1899
|
+
"test-projects/react-app/src/pages/UsersPage.tsx#fetchUsers",
|
|
1900
|
+
"test-projects/react-app/src/pages/UsersPage.tsx#response",
|
|
1901
|
+
"test-projects/react-app/src/pages/UsersPage.tsx#data",
|
|
1902
|
+
"tests/lazyAnalyzer.test.ts#createTempProjectDir",
|
|
1903
|
+
"tests/lazyAnalyzer.test.ts#tempDir",
|
|
1904
|
+
"tests/lazyAnalyzer.test.ts#fullPath",
|
|
1905
|
+
"tests/lazyAnalyzer.test.ts#dir",
|
|
1906
|
+
"tests/lazyAnalyzer.test.ts#projectDir",
|
|
1907
|
+
"tests/lazyAnalyzer.test.ts#hello",
|
|
1908
|
+
"tests/lazyAnalyzer.test.ts#util",
|
|
1909
|
+
"tests/lazyAnalyzer.test.ts#aiDir",
|
|
1910
|
+
"tests/lazyAnalyzer.test.ts#result",
|
|
1911
|
+
"tests/lazyAnalyzer.test.ts#state",
|
|
1912
|
+
"tests/lazyAnalyzer.test.ts#minimal",
|
|
1913
|
+
"tests/lazyAnalyzer.test.ts#app",
|
|
1914
|
+
"tests/lazyAnalyzer.test.ts#indexPath",
|
|
1915
|
+
"tests/lazyAnalyzer.test.ts#content",
|
|
1916
|
+
"tests/lazyAnalyzer.test.ts#login",
|
|
1917
|
+
"tests/lazyAnalyzer.test.ts#logout",
|
|
1918
|
+
"tests/lazyAnalyzer.test.ts#auth",
|
|
1919
|
+
"tests/lazyAnalyzer.test.ts#index"
|
|
1920
|
+
],
|
|
1921
|
+
"test-projects/express-api/index.js#express": [
|
|
1922
|
+
"test-projects/express-api/index.js#authController",
|
|
1923
|
+
"test-projects/express-api/index.js#userController",
|
|
1924
|
+
"test-projects/express-api/index.js#app",
|
|
1925
|
+
"test-projects/express-api/index.js#PORT"
|
|
1926
|
+
],
|
|
1927
|
+
"test-projects/express-api/services/authService.js#bcrypt": [
|
|
1928
|
+
"test-projects/express-api/services/authService.js#userRepository",
|
|
1929
|
+
"test-projects/express-api/services/authService.js#verifyCredentials",
|
|
1930
|
+
"test-projects/express-api/services/authService.js#user",
|
|
1931
|
+
"test-projects/express-api/services/authService.js#valid",
|
|
1932
|
+
"test-projects/express-api/services/authService.js#createUser",
|
|
1933
|
+
"test-projects/express-api/services/authService.js#hashedPassword"
|
|
1934
|
+
],
|
|
1935
|
+
"tests/lazyAnalyzer.test.ts#auth": [
|
|
1936
|
+
"test-projects/nestjs-backend/src/app.module.ts#AppModule",
|
|
1937
|
+
"test-projects/nestjs-backend/src/auth/auth.controller.ts#AuthController",
|
|
1938
|
+
"test-projects/nestjs-backend/src/auth/auth.controller.ts#user",
|
|
1939
|
+
"test-projects/nestjs-backend/src/auth/auth.module.ts#AuthModule"
|
|
1940
|
+
],
|
|
1941
|
+
"test-projects/express-api/models/userRepository.js#users": [
|
|
1942
|
+
"test-projects/nestjs-backend/src/app.module.ts#AppModule",
|
|
1943
|
+
"test-projects/nestjs-backend/src/users/users.controller.ts#UsersController",
|
|
1944
|
+
"test-projects/nestjs-backend/src/users/users.module.ts#UsersModule",
|
|
1945
|
+
"test-projects/express-api/models/userRepository.js#index"
|
|
1946
|
+
],
|
|
1947
|
+
"tests/lazyAnalyzer.test.ts#login": [
|
|
1948
|
+
"test-projects/nestjs-backend/src/auth/auth.controller.ts#AuthController",
|
|
1949
|
+
"test-projects/nestjs-backend/src/auth/auth.controller.ts#user"
|
|
1950
|
+
],
|
|
1951
|
+
"test-projects/express-api/middleware/authMiddleware.js#jwt": [
|
|
1952
|
+
"test-projects/nestjs-backend/src/auth/auth.module.ts#AuthModule",
|
|
1953
|
+
"test-projects/nestjs-backend/src/auth/auth.service.ts#AuthService",
|
|
1954
|
+
"test-projects/nestjs-backend/src/auth/auth.service.ts#payload",
|
|
1955
|
+
"test-projects/express-api/controllers/authController.js#token",
|
|
1956
|
+
"test-projects/express-api/middleware/authMiddleware.js#decoded"
|
|
1957
|
+
],
|
|
1958
|
+
"tests/lazyAnalyzer.test.ts#app": [
|
|
1959
|
+
"test-projects/nestjs-backend/src/main.ts#bootstrap",
|
|
1960
|
+
"test-projects/nestjs-backend/src/main.ts#app"
|
|
1961
|
+
],
|
|
1207
1962
|
"src/core/symbolGraph.ts#file": [
|
|
1208
1963
|
"src/analyzers/androidResources.ts#relativePath",
|
|
1209
1964
|
"src/analyzers/androidResources.ts#resourceName",
|
|
@@ -1221,7 +1976,6 @@
|
|
|
1221
1976
|
"src/core/repoScanner.ts#ext",
|
|
1222
1977
|
"src/core/repoScanner.ts#parts",
|
|
1223
1978
|
"src/core/semanticContexts.ts#parts",
|
|
1224
|
-
"src/core/semanticContexts.ts#fileLower",
|
|
1225
1979
|
"src/core/symbolGraph.ts#filePath"
|
|
1226
1980
|
],
|
|
1227
1981
|
"src/core/repoScanner.ts#relativePath": [
|
|
@@ -1260,7 +2014,7 @@
|
|
|
1260
2014
|
"src/analyzers/architecture.ts#inferModuleResponsibility": [
|
|
1261
2015
|
"src/analyzers/architecture.ts#responsibility"
|
|
1262
2016
|
],
|
|
1263
|
-
"
|
|
2017
|
+
"tests/lazyAnalyzer.test.ts#dir": [
|
|
1264
2018
|
"src/analyzers/architecture.ts#name",
|
|
1265
2019
|
"src/core/ccp.ts#lowerDir",
|
|
1266
2020
|
"src/core/repoMapper.ts#indent"
|
|
@@ -1289,7 +2043,7 @@
|
|
|
1289
2043
|
"src/analyzers/dependencies.ts#detectCircularDependencies": [
|
|
1290
2044
|
"src/analyzers/dependencies.ts#circularDeps"
|
|
1291
2045
|
],
|
|
1292
|
-
"
|
|
2046
|
+
"tests/lazyAnalyzer.test.ts#content": [
|
|
1293
2047
|
"src/analyzers/dependencies.ts#es6Matches",
|
|
1294
2048
|
"src/analyzers/dependencies.ts#requireMatches",
|
|
1295
2049
|
"src/analyzers/dependencies.ts#pathMatches",
|
|
@@ -1333,6 +2087,8 @@
|
|
|
1333
2087
|
"src/core/moduleGraph.ts#fromMatches",
|
|
1334
2088
|
"src/core/moduleGraph.ts#importMatches",
|
|
1335
2089
|
"src/core/moduleGraph.ts#useMatches",
|
|
2090
|
+
"src/core/schema.ts#langMatch",
|
|
2091
|
+
"src/core/schema.ts#fwMatch",
|
|
1336
2092
|
"src/core/symbolGraph.ts#callMatches",
|
|
1337
2093
|
"src/core/symbolGraph.ts#matches",
|
|
1338
2094
|
"src/core/symbolGraph.ts#varUsages"
|
|
@@ -1464,6 +2220,9 @@
|
|
|
1464
2220
|
"src/commands/ai-first.ts#generateUnifiedContext": [
|
|
1465
2221
|
"src/commands/ai-first.ts#aiContext"
|
|
1466
2222
|
],
|
|
2223
|
+
"src/commands/ai-first.ts#error": [
|
|
2224
|
+
"src/commands/ai-first.ts#errorMessage"
|
|
2225
|
+
],
|
|
1467
2226
|
"src/core/repoMapper.ts#tree": [
|
|
1468
2227
|
"src/commands/ai-first.ts#current",
|
|
1469
2228
|
"src/core/aiContextGenerator.ts#current"
|
|
@@ -1480,9 +2239,11 @@
|
|
|
1480
2239
|
"src/core/repoScanner.ts#fileName",
|
|
1481
2240
|
"src/core/repoScanner.ts#dirPath",
|
|
1482
2241
|
"src/core/repoScanner.ts#topDir",
|
|
1483
|
-
"src/core/semanticContexts.ts#
|
|
2242
|
+
"src/core/semanticContexts.ts#rootIdx",
|
|
2243
|
+
"src/core/semanticContexts.ts#featureName0",
|
|
2244
|
+
"src/core/semanticContexts.ts#featurePath0",
|
|
1484
2245
|
"src/core/semanticContexts.ts#featureName",
|
|
1485
|
-
"src/core/semanticContexts.ts#
|
|
2246
|
+
"src/core/semanticContexts.ts#featurePath"
|
|
1486
2247
|
],
|
|
1487
2248
|
"src/commands/ai-first.ts#args": [
|
|
1488
2249
|
"src/commands/ai-first.ts#command",
|
|
@@ -1490,7 +2251,8 @@
|
|
|
1490
2251
|
"src/commands/ai-first.ts#fmt",
|
|
1491
2252
|
"src/commands/ai-first.ts#queryType",
|
|
1492
2253
|
"src/commands/ai-first.ts#symbolName",
|
|
1493
|
-
"src/commands/ai-first.ts#fileName"
|
|
2254
|
+
"src/commands/ai-first.ts#fileName",
|
|
2255
|
+
"src/commands/ai-first.ts#showJson"
|
|
1494
2256
|
],
|
|
1495
2257
|
"src/core/symbolGraph.ts#scanResult": [
|
|
1496
2258
|
"src/commands/ai-first.ts#fileCount",
|
|
@@ -1503,7 +2265,7 @@
|
|
|
1503
2265
|
"src/commands/ai-first.ts#semanticMode": [
|
|
1504
2266
|
"src/commands/ai-first.ts#useSemantic"
|
|
1505
2267
|
],
|
|
1506
|
-
"
|
|
2268
|
+
"test-projects/express-api/models/userRepository.js#db": [
|
|
1507
2269
|
"src/commands/ai-first.ts#results",
|
|
1508
2270
|
"src/commands/ai-first.ts#fileResult",
|
|
1509
2271
|
"src/commands/ai-first.ts#countResult",
|
|
@@ -1529,6 +2291,14 @@
|
|
|
1529
2291
|
"src/commands/ai-first.ts#countResult": [
|
|
1530
2292
|
"src/commands/ai-first.ts#total"
|
|
1531
2293
|
],
|
|
2294
|
+
"tests/knowledgeGraph.test.ts#graph": [
|
|
2295
|
+
"src/commands/ai-first.ts#nodeTypes",
|
|
2296
|
+
"src/commands/ai-first.ts#edgeTypes",
|
|
2297
|
+
"src/core/contextPacket.ts#symbol",
|
|
2298
|
+
"src/core/contextPacket.ts#relationships",
|
|
2299
|
+
"src/core/contextPacket.ts#sym",
|
|
2300
|
+
"tests/knowledgeGraph.test.ts#firstNode"
|
|
2301
|
+
],
|
|
1532
2302
|
"src/commands/doctor.ts#check": [
|
|
1533
2303
|
"src/commands/doctor.ts#icon"
|
|
1534
2304
|
],
|
|
@@ -1537,10 +2307,19 @@
|
|
|
1537
2307
|
"src/commands/doctor.ts#warnCount",
|
|
1538
2308
|
"src/commands/doctor.ts#failCount"
|
|
1539
2309
|
],
|
|
1540
|
-
"src/
|
|
2310
|
+
"test-projects/react-app/src/pages/UsersPage.tsx#data": [
|
|
1541
2311
|
"src/commands/explore.ts#mod",
|
|
1542
2312
|
"src/commands/explore.ts#deps"
|
|
1543
2313
|
],
|
|
2314
|
+
"src/core/adapters/adapterRegistry.ts#detectAllAdapters": [
|
|
2315
|
+
"src/core/adapters/adapterRegistry.ts#results"
|
|
2316
|
+
],
|
|
2317
|
+
"src/core/adapters/adapterRegistry.ts#matchSignal": [
|
|
2318
|
+
"src/core/adapters/adapterRegistry.ts#matched"
|
|
2319
|
+
],
|
|
2320
|
+
"src/core/adapters/sdk.ts#createAdapter": [
|
|
2321
|
+
"src/core/adapters/sdk.ts#myAdapter"
|
|
2322
|
+
],
|
|
1544
2323
|
"src/core/repoScanner.ts#lastDot": [
|
|
1545
2324
|
"src/core/aiContextGenerator.ts#extension",
|
|
1546
2325
|
"src/core/indexer.ts#extension"
|
|
@@ -1578,10 +2357,12 @@
|
|
|
1578
2357
|
"src/core/aiContextGenerator.ts#detectArchitectureHints": [
|
|
1579
2358
|
"src/core/aiContextGenerator.ts#archHints"
|
|
1580
2359
|
],
|
|
1581
|
-
"
|
|
2360
|
+
"tests/gitAnalyzer.test.ts#files": [
|
|
1582
2361
|
"src/core/aiContextGenerator.ts#fileNames",
|
|
1583
2362
|
"src/core/aiContextGenerator.ts#paths",
|
|
1584
|
-
"src/core/repoMapper.ts#total"
|
|
2363
|
+
"src/core/repoMapper.ts#total",
|
|
2364
|
+
"src/core/semanticContexts.ts#sourceFiles",
|
|
2365
|
+
"src/core/semanticContexts.ts#entrypoints"
|
|
1585
2366
|
],
|
|
1586
2367
|
"src/core/ccp.ts#detectFeatureDirectories": [
|
|
1587
2368
|
"src/core/ccp.ts#featureDirs"
|
|
@@ -1611,11 +2392,6 @@
|
|
|
1611
2392
|
"src/core/contextGenerator.ts#getApiKeyFromConfig": [
|
|
1612
2393
|
"src/core/contextGenerator.ts#config"
|
|
1613
2394
|
],
|
|
1614
|
-
"src/core/symbolGraph.ts#graph": [
|
|
1615
|
-
"src/core/contextPacket.ts#symbol",
|
|
1616
|
-
"src/core/contextPacket.ts#relationships",
|
|
1617
|
-
"src/core/contextPacket.ts#sym"
|
|
1618
|
-
],
|
|
1619
2395
|
"src/core/contextPacket.ts#organizeRelationships": [
|
|
1620
2396
|
"src/core/contextPacket.ts#relsByType"
|
|
1621
2397
|
],
|
|
@@ -1642,6 +2418,8 @@
|
|
|
1642
2418
|
],
|
|
1643
2419
|
"src/core/symbolGraph.ts#filePath": [
|
|
1644
2420
|
"src/core/contextPacket.ts#module",
|
|
2421
|
+
"src/core/semanticContexts.ts#lower",
|
|
2422
|
+
"src/core/semanticContexts.ts#parts",
|
|
1645
2423
|
"src/core/symbolGraph.ts#ext",
|
|
1646
2424
|
"src/core/symbolGraph.ts#module"
|
|
1647
2425
|
],
|
|
@@ -1654,6 +2432,61 @@
|
|
|
1654
2432
|
"src/core/embeddings.ts#generateSimpleEmbedding": [
|
|
1655
2433
|
"src/core/embeddings.ts#queryEmbedding"
|
|
1656
2434
|
],
|
|
2435
|
+
"src/core/gitAnalyzer.ts#gitExec": [
|
|
2436
|
+
"src/core/gitAnalyzer.ts#logOutput",
|
|
2437
|
+
"src/core/gitAnalyzer.ts#filesOutput"
|
|
2438
|
+
],
|
|
2439
|
+
"src/core/gitAnalyzer.ts#logOutput": [
|
|
2440
|
+
"src/core/gitAnalyzer.ts#lines"
|
|
2441
|
+
],
|
|
2442
|
+
"src/core/gitAnalyzer.ts#filesOutput": [
|
|
2443
|
+
"src/core/gitAnalyzer.ts#files"
|
|
2444
|
+
],
|
|
2445
|
+
"src/core/gitAnalyzer.ts#fileStats": [
|
|
2446
|
+
"src/core/gitAnalyzer.ts#existing"
|
|
2447
|
+
],
|
|
2448
|
+
"src/core/gitAnalyzer.ts#getRecentCommits": [
|
|
2449
|
+
"src/core/gitAnalyzer.ts#commits"
|
|
2450
|
+
],
|
|
2451
|
+
"src/core/gitAnalyzer.ts#extractChangedFiles": [
|
|
2452
|
+
"src/core/gitAnalyzer.ts#recentFiles"
|
|
2453
|
+
],
|
|
2454
|
+
"src/core/gitAnalyzer.ts#featuresMap": [
|
|
2455
|
+
"src/core/gitAnalyzer.ts#existing",
|
|
2456
|
+
"src/core/gitAnalyzer.ts#directMatch"
|
|
2457
|
+
],
|
|
2458
|
+
"src/core/gitAnalyzer.ts#flowsMap": [
|
|
2459
|
+
"src/core/gitAnalyzer.ts#existing",
|
|
2460
|
+
"src/core/gitAnalyzer.ts#directMatch"
|
|
2461
|
+
],
|
|
2462
|
+
"src/core/knowledgeGraphBuilder.ts#loadFeatures": [
|
|
2463
|
+
"src/core/gitAnalyzer.ts#featuresMap",
|
|
2464
|
+
"src/core/knowledgeGraphBuilder.ts#features"
|
|
2465
|
+
],
|
|
2466
|
+
"src/core/knowledgeGraphBuilder.ts#loadFlows": [
|
|
2467
|
+
"src/core/gitAnalyzer.ts#flowsMap",
|
|
2468
|
+
"src/core/knowledgeGraphBuilder.ts#flows"
|
|
2469
|
+
],
|
|
2470
|
+
"src/core/gitAnalyzer.ts#recentFiles": [
|
|
2471
|
+
"src/core/gitAnalyzer.ts#recentFilePaths"
|
|
2472
|
+
],
|
|
2473
|
+
"src/core/gitAnalyzer.ts#mapFilesToFeatures": [
|
|
2474
|
+
"src/core/gitAnalyzer.ts#features",
|
|
2475
|
+
"src/core/gitAnalyzer.ts#commitFeatures",
|
|
2476
|
+
"src/core/gitAnalyzer.ts#recentFeatures"
|
|
2477
|
+
],
|
|
2478
|
+
"src/core/gitAnalyzer.ts#mapFilesToFlows": [
|
|
2479
|
+
"src/core/gitAnalyzer.ts#flows",
|
|
2480
|
+
"src/core/gitAnalyzer.ts#commitFlows",
|
|
2481
|
+
"src/core/gitAnalyzer.ts#recentFlows"
|
|
2482
|
+
],
|
|
2483
|
+
"tests/semanticContexts.test.ts#aiDir": [
|
|
2484
|
+
"src/core/gitAnalyzer.ts#targetAiDir",
|
|
2485
|
+
"src/core/incrementalAnalyzer.ts#targetAiDir"
|
|
2486
|
+
],
|
|
2487
|
+
"src/core/gitAnalyzer.ts#analyzeGitActivity": [
|
|
2488
|
+
"src/core/gitAnalyzer.ts#activity"
|
|
2489
|
+
],
|
|
1657
2490
|
"src/core/hierarchyGenerator.ts#commentMatch": [
|
|
1658
2491
|
"src/core/hierarchyGenerator.ts#firstLine"
|
|
1659
2492
|
],
|
|
@@ -1669,6 +2502,18 @@
|
|
|
1669
2502
|
"src/core/hierarchyGenerator.ts#summarizeFile": [
|
|
1670
2503
|
"src/core/hierarchyGenerator.ts#summary"
|
|
1671
2504
|
],
|
|
2505
|
+
"src/core/symbolGraph.ts#changedFiles": [
|
|
2506
|
+
"src/core/incrementalAnalyzer.ts#packageFiles"
|
|
2507
|
+
],
|
|
2508
|
+
"tests/semanticContexts.test.ts#featureData": [
|
|
2509
|
+
"src/core/incrementalAnalyzer.ts#featureFilesList"
|
|
2510
|
+
],
|
|
2511
|
+
"src/core/incrementalAnalyzer.ts#flowData": [
|
|
2512
|
+
"src/core/incrementalAnalyzer.ts#flowFilesList"
|
|
2513
|
+
],
|
|
2514
|
+
"src/core/incrementalAnalyzer.ts#detectChangedFiles": [
|
|
2515
|
+
"src/core/incrementalAnalyzer.ts#changedFiles"
|
|
2516
|
+
],
|
|
1672
2517
|
"src/core/symbolGraph.ts#computeFileHash": [
|
|
1673
2518
|
"src/core/indexState.ts#hashData",
|
|
1674
2519
|
"src/core/indexer.ts#hashData",
|
|
@@ -1681,9 +2526,21 @@
|
|
|
1681
2526
|
"src/core/indexer.ts#parseFileForImports": [
|
|
1682
2527
|
"src/core/indexer.ts#imports"
|
|
1683
2528
|
],
|
|
1684
|
-
"
|
|
2529
|
+
"tests/semanticContexts.test.ts#result": [
|
|
1685
2530
|
"src/core/indexer.ts#fileId"
|
|
1686
2531
|
],
|
|
2532
|
+
"src/core/knowledgeGraphBuilder.ts#loadGitActivity": [
|
|
2533
|
+
"src/core/knowledgeGraphBuilder.ts#git"
|
|
2534
|
+
],
|
|
2535
|
+
"tests/semanticContexts.test.ts#flow": [
|
|
2536
|
+
"src/core/knowledgeGraphBuilder.ts#intersection"
|
|
2537
|
+
],
|
|
2538
|
+
"src/core/knowledgeGraphBuilder.ts#createNodes": [
|
|
2539
|
+
"src/core/knowledgeGraphBuilder.ts#nodes"
|
|
2540
|
+
],
|
|
2541
|
+
"src/core/knowledgeGraphBuilder.ts#createEdges": [
|
|
2542
|
+
"src/core/knowledgeGraphBuilder.ts#edges"
|
|
2543
|
+
],
|
|
1687
2544
|
"src/core/moduleGraph.ts#parseFileImports": [
|
|
1688
2545
|
"src/core/moduleGraph.ts#deps"
|
|
1689
2546
|
],
|
|
@@ -1697,7 +2554,7 @@
|
|
|
1697
2554
|
"src/core/repoMapper.ts#buildTree": [
|
|
1698
2555
|
"src/core/repoMapper.ts#tree"
|
|
1699
2556
|
],
|
|
1700
|
-
"src/
|
|
2557
|
+
"test-projects/react-app/src/main.tsx#root": [
|
|
1701
2558
|
"src/core/repoMapper.ts#current"
|
|
1702
2559
|
],
|
|
1703
2560
|
"src/core/repoMapper.ts#allEntries": [
|
|
@@ -1706,29 +2563,46 @@
|
|
|
1706
2563
|
"src/core/repoMapper.ts#isLast": [
|
|
1707
2564
|
"src/core/repoMapper.ts#connector"
|
|
1708
2565
|
],
|
|
1709
|
-
"src/core/
|
|
1710
|
-
"src/core/
|
|
2566
|
+
"src/core/schema.ts#loadSchema": [
|
|
2567
|
+
"src/core/schema.ts#schema"
|
|
1711
2568
|
],
|
|
1712
|
-
"src/core/
|
|
1713
|
-
"src/core/
|
|
2569
|
+
"src/core/schema.ts#loadProject": [
|
|
2570
|
+
"src/core/schema.ts#project"
|
|
1714
2571
|
],
|
|
1715
|
-
"src/core/
|
|
1716
|
-
"src/core/
|
|
2572
|
+
"src/core/schema.ts#loadTools": [
|
|
2573
|
+
"src/core/schema.ts#tools"
|
|
1717
2574
|
],
|
|
1718
|
-
"src/core/semanticContexts.ts#
|
|
1719
|
-
"src/core/semanticContexts.ts#
|
|
2575
|
+
"src/core/semanticContexts.ts#rootIdx": [
|
|
2576
|
+
"src/core/semanticContexts.ts#depth0FeatureIdx",
|
|
2577
|
+
"src/core/semanticContexts.ts#featureIdx"
|
|
2578
|
+
],
|
|
2579
|
+
"src/core/semanticContexts.ts#featurePath": [
|
|
2580
|
+
"src/core/semanticContexts.ts#featureName"
|
|
1720
2581
|
],
|
|
1721
2582
|
"src/core/semanticContexts.ts#sourceFiles": [
|
|
1722
2583
|
"src/core/semanticContexts.ts#entrypoints"
|
|
1723
2584
|
],
|
|
1724
|
-
"src/core/semanticContexts.ts#
|
|
1725
|
-
"src/core/semanticContexts.ts#
|
|
2585
|
+
"src/core/semanticContexts.ts#baseName": [
|
|
2586
|
+
"src/core/semanticContexts.ts#feature"
|
|
2587
|
+
],
|
|
2588
|
+
"src/core/semanticContexts.ts#feature": [
|
|
2589
|
+
"src/core/semanticContexts.ts#key"
|
|
2590
|
+
],
|
|
2591
|
+
"src/core/semanticContexts.ts#featureFiles": [
|
|
2592
|
+
"src/core/semanticContexts.ts#hasEntrypoint"
|
|
2593
|
+
],
|
|
2594
|
+
"src/core/semanticContexts.ts#sorted": [
|
|
2595
|
+
"src/core/semanticContexts.ts#entrypoint"
|
|
1726
2596
|
],
|
|
1727
|
-
"src/core/semanticContexts.ts#
|
|
1728
|
-
"src/core/semanticContexts.ts#
|
|
2597
|
+
"src/core/semanticContexts.ts#graphData": [
|
|
2598
|
+
"src/core/semanticContexts.ts#relationshipCount",
|
|
2599
|
+
"src/core/semanticContexts.ts#symbolCount"
|
|
1729
2600
|
],
|
|
1730
|
-
"src/core/semanticContexts.ts#
|
|
1731
|
-
"src/core/semanticContexts.ts#
|
|
2601
|
+
"src/core/semanticContexts.ts#relationshipCount": [
|
|
2602
|
+
"src/core/semanticContexts.ts#density"
|
|
2603
|
+
],
|
|
2604
|
+
"src/core/semanticContexts.ts#density": [
|
|
2605
|
+
"src/core/semanticContexts.ts#isWeakGraph"
|
|
1732
2606
|
],
|
|
1733
2607
|
"src/core/semanticContexts.ts#generateFeatures": [
|
|
1734
2608
|
"src/core/semanticContexts.ts#features"
|
|
@@ -1806,5 +2680,28 @@
|
|
|
1806
2680
|
],
|
|
1807
2681
|
"src/utils/fileUtils.ts#readFile": [
|
|
1808
2682
|
"src/utils/fileUtils.ts#content"
|
|
2683
|
+
],
|
|
2684
|
+
"tests/lazyAnalyzer.test.ts#createTempProjectDir": [
|
|
2685
|
+
"tests/adapters.test.ts#projectDir",
|
|
2686
|
+
"tests/lazyAnalyzer.test.ts#projectDir"
|
|
2687
|
+
],
|
|
2688
|
+
"tests/schema.test.ts#createTempAiDir": [
|
|
2689
|
+
"tests/schema.test.ts#aiDir"
|
|
2690
|
+
],
|
|
2691
|
+
"tests/semanticContexts.test.ts#firstFile": [
|
|
2692
|
+
"tests/semanticContexts.test.ts#pathParts"
|
|
2693
|
+
],
|
|
2694
|
+
"tests/semanticContexts.test.ts#pathParts": [
|
|
2695
|
+
"tests/semanticContexts.test.ts#derivedPath"
|
|
2696
|
+
],
|
|
2697
|
+
"tests/semanticContexts.test.ts#createTempTestDir": [
|
|
2698
|
+
"tests/semanticContexts.test.ts#aiDir"
|
|
2699
|
+
],
|
|
2700
|
+
"tests/semanticContexts.test.ts#features": [
|
|
2701
|
+
"tests/semanticContexts.test.ts#featureNames",
|
|
2702
|
+
"tests/semanticContexts.test.ts#authFeature"
|
|
2703
|
+
],
|
|
2704
|
+
"tests/semanticContexts.test.ts#flows": [
|
|
2705
|
+
"tests/semanticContexts.test.ts#flowNames"
|
|
1809
2706
|
]
|
|
1810
2707
|
}
|