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
package/ai/files.json
CHANGED
|
@@ -343,11 +343,13 @@
|
|
|
343
343
|
"src/commands/ai-first.ts#aiRulesPath",
|
|
344
344
|
"src/commands/ai-first.ts#aiContextPath",
|
|
345
345
|
"src/commands/ai-first.ts#aiContext",
|
|
346
|
+
"src/commands/ai-first.ts#modules",
|
|
346
347
|
"src/commands/ai-first.ts#file",
|
|
348
|
+
"src/commands/ai-first.ts#parts",
|
|
349
|
+
"src/commands/ai-first.ts#modulesPath",
|
|
347
350
|
"src/commands/ai-first.ts#errorMessage",
|
|
348
351
|
"src/commands/ai-first.ts#generateRepoMapJson",
|
|
349
352
|
"src/commands/ai-first.ts#tree",
|
|
350
|
-
"src/commands/ai-first.ts#parts",
|
|
351
353
|
"src/commands/ai-first.ts#current",
|
|
352
354
|
"src/commands/ai-first.ts#part",
|
|
353
355
|
"src/commands/ai-first.ts#isFile",
|
|
@@ -370,7 +372,6 @@
|
|
|
370
372
|
"src/commands/ai-first.ts#allFiles",
|
|
371
373
|
"src/commands/ai-first.ts#useSemantic",
|
|
372
374
|
"src/commands/ai-first.ts#filesJson",
|
|
373
|
-
"src/commands/ai-first.ts#modules",
|
|
374
375
|
"src/commands/ai-first.ts#fileStates",
|
|
375
376
|
"src/commands/ai-first.ts#hashData",
|
|
376
377
|
"src/commands/ai-first.ts#filePaths",
|
|
@@ -407,7 +408,20 @@
|
|
|
407
408
|
"src/commands/ai-first.ts#ORDER",
|
|
408
409
|
"src/commands/ai-first.ts#typeResults",
|
|
409
410
|
"src/commands/ai-first.ts#scan",
|
|
410
|
-
"src/commands/ai-first.ts#repoMapData"
|
|
411
|
+
"src/commands/ai-first.ts#repoMapData",
|
|
412
|
+
"src/commands/ai-first.ts#showJson",
|
|
413
|
+
"src/commands/ai-first.ts#adapters",
|
|
414
|
+
"src/commands/ai-first.ts#adapter",
|
|
415
|
+
"src/commands/ai-first.ts#limit",
|
|
416
|
+
"src/commands/ai-first.ts#showActivity",
|
|
417
|
+
"src/commands/ai-first.ts#result",
|
|
418
|
+
"src/commands/ai-first.ts#topFiles",
|
|
419
|
+
"src/commands/ai-first.ts#showStats",
|
|
420
|
+
"src/commands/ai-first.ts#graph",
|
|
421
|
+
"src/commands/ai-first.ts#nodeTypes",
|
|
422
|
+
"src/commands/ai-first.ts#edgeTypes",
|
|
423
|
+
"src/commands/ai-first.ts#useGit",
|
|
424
|
+
"src/commands/ai-first.ts#error"
|
|
411
425
|
],
|
|
412
426
|
"module": "src"
|
|
413
427
|
},
|
|
@@ -454,6 +468,122 @@
|
|
|
454
468
|
],
|
|
455
469
|
"module": "src"
|
|
456
470
|
},
|
|
471
|
+
"src/core/adapters/adapterRegistry.ts": {
|
|
472
|
+
"symbols": [
|
|
473
|
+
"src/core/adapters/adapterRegistry.ts#ADAPTERS",
|
|
474
|
+
"src/core/adapters/adapterRegistry.ts#AdapterDetectionResult",
|
|
475
|
+
"src/core/adapters/adapterRegistry.ts#detectAdapter",
|
|
476
|
+
"src/core/adapters/adapterRegistry.ts#results",
|
|
477
|
+
"src/core/adapters/adapterRegistry.ts#detectAllAdapters",
|
|
478
|
+
"src/core/adapters/adapterRegistry.ts#adapter",
|
|
479
|
+
"src/core/adapters/adapterRegistry.ts#matchedSignals",
|
|
480
|
+
"src/core/adapters/adapterRegistry.ts#score",
|
|
481
|
+
"src/core/adapters/adapterRegistry.ts#signal",
|
|
482
|
+
"src/core/adapters/adapterRegistry.ts#matched",
|
|
483
|
+
"src/core/adapters/adapterRegistry.ts#matchSignal",
|
|
484
|
+
"src/core/adapters/adapterRegistry.ts#matchFileSignal",
|
|
485
|
+
"src/core/adapters/adapterRegistry.ts#ext",
|
|
486
|
+
"src/core/adapters/adapterRegistry.ts#entries",
|
|
487
|
+
"src/core/adapters/adapterRegistry.ts#matchDirectorySignal",
|
|
488
|
+
"src/core/adapters/adapterRegistry.ts#getSignalWeight",
|
|
489
|
+
"src/core/adapters/adapterRegistry.ts#getAdapter",
|
|
490
|
+
"src/core/adapters/adapterRegistry.ts#listAdapters"
|
|
491
|
+
],
|
|
492
|
+
"module": "src"
|
|
493
|
+
},
|
|
494
|
+
"src/core/adapters/baseAdapter.ts": {
|
|
495
|
+
"symbols": [
|
|
496
|
+
"src/core/adapters/baseAdapter.ts#AnalysisAdapter",
|
|
497
|
+
"src/core/adapters/baseAdapter.ts#DetectionSignal",
|
|
498
|
+
"src/core/adapters/baseAdapter.ts#LayerRule",
|
|
499
|
+
"src/core/adapters/baseAdapter.ts#DEFAULT_ADAPTER"
|
|
500
|
+
],
|
|
501
|
+
"module": "src"
|
|
502
|
+
},
|
|
503
|
+
"src/core/adapters/community/fastapiAdapter.ts": {
|
|
504
|
+
"symbols": [
|
|
505
|
+
"src/core/adapters/community/fastapiAdapter.ts#fastapiAdapter"
|
|
506
|
+
],
|
|
507
|
+
"module": "src"
|
|
508
|
+
},
|
|
509
|
+
"src/core/adapters/community/laravelAdapter.ts": {
|
|
510
|
+
"symbols": [
|
|
511
|
+
"src/core/adapters/community/laravelAdapter.ts#laravelAdapter"
|
|
512
|
+
],
|
|
513
|
+
"module": "src"
|
|
514
|
+
},
|
|
515
|
+
"src/core/adapters/community/nestjsAdapter.ts": {
|
|
516
|
+
"symbols": [
|
|
517
|
+
"src/core/adapters/community/nestjsAdapter.ts#nestjsAdapter"
|
|
518
|
+
],
|
|
519
|
+
"module": "src"
|
|
520
|
+
},
|
|
521
|
+
"src/core/adapters/community/phoenixAdapter.ts": {
|
|
522
|
+
"symbols": [
|
|
523
|
+
"src/core/adapters/community/phoenixAdapter.ts#phoenixAdapter"
|
|
524
|
+
],
|
|
525
|
+
"module": "src"
|
|
526
|
+
},
|
|
527
|
+
"src/core/adapters/community/springBootAdapter.ts": {
|
|
528
|
+
"symbols": [
|
|
529
|
+
"src/core/adapters/community/springBootAdapter.ts#springBootAdapter"
|
|
530
|
+
],
|
|
531
|
+
"module": "src"
|
|
532
|
+
},
|
|
533
|
+
"src/core/adapters/dotnetAdapter.ts": {
|
|
534
|
+
"symbols": [
|
|
535
|
+
"src/core/adapters/dotnetAdapter.ts#dotnetAdapter",
|
|
536
|
+
"src/core/adapters/dotnetAdapter.ts#aspnetCoreAdapter",
|
|
537
|
+
"src/core/adapters/dotnetAdapter.ts#blazorAdapter"
|
|
538
|
+
],
|
|
539
|
+
"module": "src"
|
|
540
|
+
},
|
|
541
|
+
"src/core/adapters/javascriptAdapter.ts": {
|
|
542
|
+
"symbols": [
|
|
543
|
+
"src/core/adapters/javascriptAdapter.ts#javascriptAdapter"
|
|
544
|
+
],
|
|
545
|
+
"module": "src"
|
|
546
|
+
},
|
|
547
|
+
"src/core/adapters/pythonAdapter.ts": {
|
|
548
|
+
"symbols": [
|
|
549
|
+
"src/core/adapters/pythonAdapter.ts#pythonAdapter",
|
|
550
|
+
"src/core/adapters/pythonAdapter.ts#djangoAdapter",
|
|
551
|
+
"src/core/adapters/pythonAdapter.ts#flaskAdapter"
|
|
552
|
+
],
|
|
553
|
+
"module": "src"
|
|
554
|
+
},
|
|
555
|
+
"src/core/adapters/railsAdapter.ts": {
|
|
556
|
+
"symbols": [
|
|
557
|
+
"src/core/adapters/railsAdapter.ts#railsAdapter",
|
|
558
|
+
"src/core/adapters/railsAdapter.ts#rubyAdapter"
|
|
559
|
+
],
|
|
560
|
+
"module": "src"
|
|
561
|
+
},
|
|
562
|
+
"src/core/adapters/salesforceAdapter.ts": {
|
|
563
|
+
"symbols": [
|
|
564
|
+
"src/core/adapters/salesforceAdapter.ts#salesforceAdapter",
|
|
565
|
+
"src/core/adapters/salesforceAdapter.ts#sfdxAdapter"
|
|
566
|
+
],
|
|
567
|
+
"module": "src"
|
|
568
|
+
},
|
|
569
|
+
"src/core/adapters/sdk.ts": {
|
|
570
|
+
"symbols": [
|
|
571
|
+
"src/core/adapters/sdk.ts#AdapterConfig",
|
|
572
|
+
"src/core/adapters/sdk.ts#DEFAULT_LAYER_RULES",
|
|
573
|
+
"src/core/adapters/sdk.ts#DEFAULT_IGNORED_FOLDERS",
|
|
574
|
+
"src/core/adapters/sdk.ts#myAdapter",
|
|
575
|
+
"src/core/adapters/sdk.ts#createAdapter",
|
|
576
|
+
"src/core/adapters/sdk.ts#fileSignal",
|
|
577
|
+
"src/core/adapters/sdk.ts#directorySignal",
|
|
578
|
+
"src/core/adapters/sdk.ts#contentSignal",
|
|
579
|
+
"src/core/adapters/sdk.ts#layerRule",
|
|
580
|
+
"src/core/adapters/sdk.ts#validateAdapter",
|
|
581
|
+
"src/core/adapters/sdk.ts#errors",
|
|
582
|
+
"src/core/adapters/sdk.ts#layerNames",
|
|
583
|
+
"src/core/adapters/sdk.ts#rule"
|
|
584
|
+
],
|
|
585
|
+
"module": "src"
|
|
586
|
+
},
|
|
457
587
|
"src/core/aiContextGenerator.ts": {
|
|
458
588
|
"symbols": [
|
|
459
589
|
"src/core/aiContextGenerator.ts#AIContextResult",
|
|
@@ -769,6 +899,75 @@
|
|
|
769
899
|
],
|
|
770
900
|
"module": "src"
|
|
771
901
|
},
|
|
902
|
+
"src/core/gitAnalyzer.ts": {
|
|
903
|
+
"symbols": [
|
|
904
|
+
"src/core/gitAnalyzer.ts#GitCommit",
|
|
905
|
+
"src/core/gitAnalyzer.ts#RecentFile",
|
|
906
|
+
"src/core/gitAnalyzer.ts#GitActivity",
|
|
907
|
+
"src/core/gitAnalyzer.ts#GitAnalyzerOptions",
|
|
908
|
+
"src/core/gitAnalyzer.ts#DEFAULT_OPTIONS",
|
|
909
|
+
"src/core/gitAnalyzer.ts#detectGitRepository",
|
|
910
|
+
"src/core/gitAnalyzer.ts#gitDir",
|
|
911
|
+
"src/core/gitAnalyzer.ts#gitExec",
|
|
912
|
+
"src/core/gitAnalyzer.ts#getRecentCommits",
|
|
913
|
+
"src/core/gitAnalyzer.ts#commits",
|
|
914
|
+
"src/core/gitAnalyzer.ts#logFormat",
|
|
915
|
+
"src/core/gitAnalyzer.ts#logOutput",
|
|
916
|
+
"src/core/gitAnalyzer.ts#lines",
|
|
917
|
+
"src/core/gitAnalyzer.ts#maxAgeDate",
|
|
918
|
+
"src/core/gitAnalyzer.ts#line",
|
|
919
|
+
"src/core/gitAnalyzer.ts#commitDate",
|
|
920
|
+
"src/core/gitAnalyzer.ts#filesOutput",
|
|
921
|
+
"src/core/gitAnalyzer.ts#files",
|
|
922
|
+
"src/core/gitAnalyzer.ts#extractChangedFiles",
|
|
923
|
+
"src/core/gitAnalyzer.ts#fileStats",
|
|
924
|
+
"src/core/gitAnalyzer.ts#commit",
|
|
925
|
+
"src/core/gitAnalyzer.ts#file",
|
|
926
|
+
"src/core/gitAnalyzer.ts#existing",
|
|
927
|
+
"src/core/gitAnalyzer.ts#result",
|
|
928
|
+
"src/core/gitAnalyzer.ts#getRecentFiles",
|
|
929
|
+
"src/core/gitAnalyzer.ts#recentFiles",
|
|
930
|
+
"src/core/gitAnalyzer.ts#loadFeatures",
|
|
931
|
+
"src/core/gitAnalyzer.ts#featuresMap",
|
|
932
|
+
"src/core/gitAnalyzer.ts#featuresDir",
|
|
933
|
+
"src/core/gitAnalyzer.ts#featurePath",
|
|
934
|
+
"src/core/gitAnalyzer.ts#featureData",
|
|
935
|
+
"src/core/gitAnalyzer.ts#filePath",
|
|
936
|
+
"src/core/gitAnalyzer.ts#loadFlows",
|
|
937
|
+
"src/core/gitAnalyzer.ts#flowsMap",
|
|
938
|
+
"src/core/gitAnalyzer.ts#flowsDir",
|
|
939
|
+
"src/core/gitAnalyzer.ts#flowPath",
|
|
940
|
+
"src/core/gitAnalyzer.ts#flowData",
|
|
941
|
+
"src/core/gitAnalyzer.ts#mapFilesToFeatures",
|
|
942
|
+
"src/core/gitAnalyzer.ts#aiDir",
|
|
943
|
+
"src/core/gitAnalyzer.ts#featureSet",
|
|
944
|
+
"src/core/gitAnalyzer.ts#directMatch",
|
|
945
|
+
"src/core/gitAnalyzer.ts#mapFilesToFlows",
|
|
946
|
+
"src/core/gitAnalyzer.ts#flowSet",
|
|
947
|
+
"src/core/gitAnalyzer.ts#analyzeGitActivity",
|
|
948
|
+
"src/core/gitAnalyzer.ts#opts",
|
|
949
|
+
"src/core/gitAnalyzer.ts#recentFilePaths",
|
|
950
|
+
"src/core/gitAnalyzer.ts#features",
|
|
951
|
+
"src/core/gitAnalyzer.ts#flows",
|
|
952
|
+
"src/core/gitAnalyzer.ts#featureCounts",
|
|
953
|
+
"src/core/gitAnalyzer.ts#flowCounts",
|
|
954
|
+
"src/core/gitAnalyzer.ts#fileCounts",
|
|
955
|
+
"src/core/gitAnalyzer.ts#commitFeatures",
|
|
956
|
+
"src/core/gitAnalyzer.ts#feature",
|
|
957
|
+
"src/core/gitAnalyzer.ts#commitFlows",
|
|
958
|
+
"src/core/gitAnalyzer.ts#flow",
|
|
959
|
+
"src/core/gitAnalyzer.ts#generateGitContext",
|
|
960
|
+
"src/core/gitAnalyzer.ts#targetAiDir",
|
|
961
|
+
"src/core/gitAnalyzer.ts#recentFeatures",
|
|
962
|
+
"src/core/gitAnalyzer.ts#recentFlows",
|
|
963
|
+
"src/core/gitAnalyzer.ts#activity",
|
|
964
|
+
"src/core/gitAnalyzer.ts#recentFilesJson",
|
|
965
|
+
"src/core/gitAnalyzer.ts#recentFeaturesJson",
|
|
966
|
+
"src/core/gitAnalyzer.ts#recentFlowsJson",
|
|
967
|
+
"src/core/gitAnalyzer.ts#activityJson"
|
|
968
|
+
],
|
|
969
|
+
"module": "src"
|
|
970
|
+
},
|
|
772
971
|
"src/core/hierarchyGenerator.ts": {
|
|
773
972
|
"symbols": [
|
|
774
973
|
"src/core/hierarchyGenerator.ts#HierarchyResult",
|
|
@@ -822,6 +1021,69 @@
|
|
|
822
1021
|
],
|
|
823
1022
|
"module": "src"
|
|
824
1023
|
},
|
|
1024
|
+
"src/core/incrementalAnalyzer.ts": {
|
|
1025
|
+
"symbols": [
|
|
1026
|
+
"src/core/incrementalAnalyzer.ts#ChangedFile",
|
|
1027
|
+
"src/core/incrementalAnalyzer.ts#IncrementalUpdateResult",
|
|
1028
|
+
"src/core/incrementalAnalyzer.ts#detectChangedFiles",
|
|
1029
|
+
"src/core/incrementalAnalyzer.ts#isGitRepository",
|
|
1030
|
+
"src/core/incrementalAnalyzer.ts#detectChangesWithGit",
|
|
1031
|
+
"src/core/incrementalAnalyzer.ts#changes",
|
|
1032
|
+
"src/core/incrementalAnalyzer.ts#output",
|
|
1033
|
+
"src/core/incrementalAnalyzer.ts#line",
|
|
1034
|
+
"src/core/incrementalAnalyzer.ts#changeStatus",
|
|
1035
|
+
"src/core/incrementalAnalyzer.ts#stagedOutput",
|
|
1036
|
+
"src/core/incrementalAnalyzer.ts#detectChangesWithTimestamps",
|
|
1037
|
+
"src/core/incrementalAnalyzer.ts#aiDir",
|
|
1038
|
+
"src/core/incrementalAnalyzer.ts#state",
|
|
1039
|
+
"src/core/incrementalAnalyzer.ts#fullPath",
|
|
1040
|
+
"src/core/incrementalAnalyzer.ts#currentHash",
|
|
1041
|
+
"src/core/incrementalAnalyzer.ts#updateSymbols",
|
|
1042
|
+
"src/core/incrementalAnalyzer.ts#symbolsPath",
|
|
1043
|
+
"src/core/incrementalAnalyzer.ts#existingSymbols",
|
|
1044
|
+
"src/core/incrementalAnalyzer.ts#raw",
|
|
1045
|
+
"src/core/incrementalAnalyzer.ts#changedPaths",
|
|
1046
|
+
"src/core/incrementalAnalyzer.ts#changed",
|
|
1047
|
+
"src/core/incrementalAnalyzer.ts#fileInfo",
|
|
1048
|
+
"src/core/incrementalAnalyzer.ts#symbols",
|
|
1049
|
+
"src/core/incrementalAnalyzer.ts#symbol",
|
|
1050
|
+
"src/core/incrementalAnalyzer.ts#updateDependencies",
|
|
1051
|
+
"src/core/incrementalAnalyzer.ts#depsPath",
|
|
1052
|
+
"src/core/incrementalAnalyzer.ts#existingDeps",
|
|
1053
|
+
"src/core/incrementalAnalyzer.ts#packageFiles",
|
|
1054
|
+
"src/core/incrementalAnalyzer.ts#pkgFile",
|
|
1055
|
+
"src/core/incrementalAnalyzer.ts#pkg",
|
|
1056
|
+
"src/core/incrementalAnalyzer.ts#updateFeatures",
|
|
1057
|
+
"src/core/incrementalAnalyzer.ts#featuresDir",
|
|
1058
|
+
"src/core/incrementalAnalyzer.ts#updatedFeatures",
|
|
1059
|
+
"src/core/incrementalAnalyzer.ts#featureFile",
|
|
1060
|
+
"src/core/incrementalAnalyzer.ts#featurePath",
|
|
1061
|
+
"src/core/incrementalAnalyzer.ts#featureData",
|
|
1062
|
+
"src/core/incrementalAnalyzer.ts#featureFileSet",
|
|
1063
|
+
"src/core/incrementalAnalyzer.ts#affected",
|
|
1064
|
+
"src/core/incrementalAnalyzer.ts#featureFilesList",
|
|
1065
|
+
"src/core/incrementalAnalyzer.ts#updateFlows",
|
|
1066
|
+
"src/core/incrementalAnalyzer.ts#flowsDir",
|
|
1067
|
+
"src/core/incrementalAnalyzer.ts#updatedFlows",
|
|
1068
|
+
"src/core/incrementalAnalyzer.ts#flowFile",
|
|
1069
|
+
"src/core/incrementalAnalyzer.ts#flowPath",
|
|
1070
|
+
"src/core/incrementalAnalyzer.ts#flowData",
|
|
1071
|
+
"src/core/incrementalAnalyzer.ts#flowFileSet",
|
|
1072
|
+
"src/core/incrementalAnalyzer.ts#flowFilesList",
|
|
1073
|
+
"src/core/incrementalAnalyzer.ts#updateKnowledgeGraph",
|
|
1074
|
+
"src/core/incrementalAnalyzer.ts#runIncrementalUpdate",
|
|
1075
|
+
"src/core/incrementalAnalyzer.ts#targetAiDir",
|
|
1076
|
+
"src/core/incrementalAnalyzer.ts#errors",
|
|
1077
|
+
"src/core/incrementalAnalyzer.ts#changedFiles",
|
|
1078
|
+
"src/core/incrementalAnalyzer.ts#updatedSymbols",
|
|
1079
|
+
"src/core/incrementalAnalyzer.ts#updatedDependencies",
|
|
1080
|
+
"src/core/incrementalAnalyzer.ts#graphUpdated",
|
|
1081
|
+
"src/core/incrementalAnalyzer.ts#updateIndexState",
|
|
1082
|
+
"src/core/incrementalAnalyzer.ts#filesMap",
|
|
1083
|
+
"src/core/incrementalAnalyzer.ts#hashData"
|
|
1084
|
+
],
|
|
1085
|
+
"module": "src"
|
|
1086
|
+
},
|
|
825
1087
|
"src/core/indexState.ts": {
|
|
826
1088
|
"symbols": [
|
|
827
1089
|
"src/core/indexState.ts#FileState",
|
|
@@ -936,6 +1198,88 @@
|
|
|
936
1198
|
],
|
|
937
1199
|
"module": "src"
|
|
938
1200
|
},
|
|
1201
|
+
"src/core/knowledgeGraphBuilder.ts": {
|
|
1202
|
+
"symbols": [
|
|
1203
|
+
"src/core/knowledgeGraphBuilder.ts#NodeType",
|
|
1204
|
+
"src/core/knowledgeGraphBuilder.ts#EdgeType",
|
|
1205
|
+
"src/core/knowledgeGraphBuilder.ts#KnowledgeNode",
|
|
1206
|
+
"src/core/knowledgeGraphBuilder.ts#KnowledgeEdge",
|
|
1207
|
+
"src/core/knowledgeGraphBuilder.ts#KnowledgeGraph",
|
|
1208
|
+
"src/core/knowledgeGraphBuilder.ts#loadFeatures",
|
|
1209
|
+
"src/core/knowledgeGraphBuilder.ts#featuresPath",
|
|
1210
|
+
"src/core/knowledgeGraphBuilder.ts#features",
|
|
1211
|
+
"src/core/knowledgeGraphBuilder.ts#file",
|
|
1212
|
+
"src/core/knowledgeGraphBuilder.ts#data",
|
|
1213
|
+
"src/core/knowledgeGraphBuilder.ts#loadFlows",
|
|
1214
|
+
"src/core/knowledgeGraphBuilder.ts#flowsPath",
|
|
1215
|
+
"src/core/knowledgeGraphBuilder.ts#flows",
|
|
1216
|
+
"src/core/knowledgeGraphBuilder.ts#loadGitActivity",
|
|
1217
|
+
"src/core/knowledgeGraphBuilder.ts#gitPath",
|
|
1218
|
+
"src/core/knowledgeGraphBuilder.ts#loadSymbols",
|
|
1219
|
+
"src/core/knowledgeGraphBuilder.ts#symbolsPath",
|
|
1220
|
+
"src/core/knowledgeGraphBuilder.ts#sym",
|
|
1221
|
+
"src/core/knowledgeGraphBuilder.ts#loadFiles",
|
|
1222
|
+
"src/core/knowledgeGraphBuilder.ts#filesPath",
|
|
1223
|
+
"src/core/knowledgeGraphBuilder.ts#createNodes",
|
|
1224
|
+
"src/core/knowledgeGraphBuilder.ts#nodes",
|
|
1225
|
+
"src/core/knowledgeGraphBuilder.ts#nodeIds",
|
|
1226
|
+
"src/core/knowledgeGraphBuilder.ts#addNode",
|
|
1227
|
+
"src/core/knowledgeGraphBuilder.ts#git",
|
|
1228
|
+
"src/core/knowledgeGraphBuilder.ts#createEdges",
|
|
1229
|
+
"src/core/knowledgeGraphBuilder.ts#edges",
|
|
1230
|
+
"src/core/knowledgeGraphBuilder.ts#edgeKeys",
|
|
1231
|
+
"src/core/knowledgeGraphBuilder.ts#addEdge",
|
|
1232
|
+
"src/core/knowledgeGraphBuilder.ts#key",
|
|
1233
|
+
"src/core/knowledgeGraphBuilder.ts#flow",
|
|
1234
|
+
"src/core/knowledgeGraphBuilder.ts#feature",
|
|
1235
|
+
"src/core/knowledgeGraphBuilder.ts#intersection",
|
|
1236
|
+
"src/core/knowledgeGraphBuilder.ts#buildKnowledgeGraph",
|
|
1237
|
+
"src/core/knowledgeGraphBuilder.ts#targetAiDir",
|
|
1238
|
+
"src/core/knowledgeGraphBuilder.ts#graphDir",
|
|
1239
|
+
"src/core/knowledgeGraphBuilder.ts#sources",
|
|
1240
|
+
"src/core/knowledgeGraphBuilder.ts#graph",
|
|
1241
|
+
"src/core/knowledgeGraphBuilder.ts#loadKnowledgeGraph",
|
|
1242
|
+
"src/core/knowledgeGraphBuilder.ts#graphPath",
|
|
1243
|
+
"src/core/knowledgeGraphBuilder.ts#getNodesByType",
|
|
1244
|
+
"src/core/knowledgeGraphBuilder.ts#getEdgesByType",
|
|
1245
|
+
"src/core/knowledgeGraphBuilder.ts#getNeighbors",
|
|
1246
|
+
"src/core/knowledgeGraphBuilder.ts#neighborIds",
|
|
1247
|
+
"src/core/knowledgeGraphBuilder.ts#edge"
|
|
1248
|
+
],
|
|
1249
|
+
"module": "src"
|
|
1250
|
+
},
|
|
1251
|
+
"src/core/lazyAnalyzer.ts": {
|
|
1252
|
+
"symbols": [
|
|
1253
|
+
"src/core/lazyAnalyzer.ts#MinimalIndex",
|
|
1254
|
+
"src/core/lazyAnalyzer.ts#LazyIndexState",
|
|
1255
|
+
"src/core/lazyAnalyzer.ts#buildMinimalIndex",
|
|
1256
|
+
"src/core/lazyAnalyzer.ts#scanResult",
|
|
1257
|
+
"src/core/lazyAnalyzer.ts#techStack",
|
|
1258
|
+
"src/core/lazyAnalyzer.ts#entrypoints",
|
|
1259
|
+
"src/core/lazyAnalyzer.ts#repoMap",
|
|
1260
|
+
"src/core/lazyAnalyzer.ts#minimalIndex",
|
|
1261
|
+
"src/core/lazyAnalyzer.ts#state",
|
|
1262
|
+
"src/core/lazyAnalyzer.ts#statePath",
|
|
1263
|
+
"src/core/lazyAnalyzer.ts#expandFeatureContext",
|
|
1264
|
+
"src/core/lazyAnalyzer.ts#symbols",
|
|
1265
|
+
"src/core/lazyAnalyzer.ts#featureSymbols",
|
|
1266
|
+
"src/core/lazyAnalyzer.ts#featureContextPath",
|
|
1267
|
+
"src/core/lazyAnalyzer.ts#featureContext",
|
|
1268
|
+
"src/core/lazyAnalyzer.ts#expandFlowContext",
|
|
1269
|
+
"src/core/lazyAnalyzer.ts#dependencies",
|
|
1270
|
+
"src/core/lazyAnalyzer.ts#flowFiles",
|
|
1271
|
+
"src/core/lazyAnalyzer.ts#flowContextPath",
|
|
1272
|
+
"src/core/lazyAnalyzer.ts#flowContext",
|
|
1273
|
+
"src/core/lazyAnalyzer.ts#expandFullContext",
|
|
1274
|
+
"src/core/lazyAnalyzer.ts#symbolsPath",
|
|
1275
|
+
"src/core/lazyAnalyzer.ts#depsPath",
|
|
1276
|
+
"src/core/lazyAnalyzer.ts#getLazyIndexState",
|
|
1277
|
+
"src/core/lazyAnalyzer.ts#hasMinimalIndex",
|
|
1278
|
+
"src/core/lazyAnalyzer.ts#loadMinimalIndex",
|
|
1279
|
+
"src/core/lazyAnalyzer.ts#indexPath"
|
|
1280
|
+
],
|
|
1281
|
+
"module": "src"
|
|
1282
|
+
},
|
|
939
1283
|
"src/core/moduleGraph.ts": {
|
|
940
1284
|
"symbols": [
|
|
941
1285
|
"src/core/moduleGraph.ts#Module",
|
|
@@ -1040,79 +1384,128 @@
|
|
|
1040
1384
|
],
|
|
1041
1385
|
"module": "src"
|
|
1042
1386
|
},
|
|
1387
|
+
"src/core/schema.ts": {
|
|
1388
|
+
"symbols": [
|
|
1389
|
+
"src/core/schema.ts#SCHEMA_VERSION",
|
|
1390
|
+
"src/core/schema.ts#GENERATED_BY",
|
|
1391
|
+
"src/core/schema.ts#SchemaInfo",
|
|
1392
|
+
"src/core/schema.ts#ProjectInfo",
|
|
1393
|
+
"src/core/schema.ts#ToolsInfo",
|
|
1394
|
+
"src/core/schema.ts#AISchema",
|
|
1395
|
+
"src/core/schema.ts#generateSchema",
|
|
1396
|
+
"src/core/schema.ts#schema",
|
|
1397
|
+
"src/core/schema.ts#generateProject",
|
|
1398
|
+
"src/core/schema.ts#name",
|
|
1399
|
+
"src/core/schema.ts#features",
|
|
1400
|
+
"src/core/schema.ts#featuresDir",
|
|
1401
|
+
"src/core/schema.ts#flows",
|
|
1402
|
+
"src/core/schema.ts#flowsDir",
|
|
1403
|
+
"src/core/schema.ts#languages",
|
|
1404
|
+
"src/core/schema.ts#frameworks",
|
|
1405
|
+
"src/core/schema.ts#techStackPath",
|
|
1406
|
+
"src/core/schema.ts#content",
|
|
1407
|
+
"src/core/schema.ts#langMatch",
|
|
1408
|
+
"src/core/schema.ts#fwMatch",
|
|
1409
|
+
"src/core/schema.ts#project",
|
|
1410
|
+
"src/core/schema.ts#generateTools",
|
|
1411
|
+
"src/core/schema.ts#tools",
|
|
1412
|
+
"src/core/schema.ts#generateAllSchema",
|
|
1413
|
+
"src/core/schema.ts#loadSchema",
|
|
1414
|
+
"src/core/schema.ts#loadProject",
|
|
1415
|
+
"src/core/schema.ts#loadTools",
|
|
1416
|
+
"src/core/schema.ts#loadFullSchema",
|
|
1417
|
+
"src/core/schema.ts#isCompatible",
|
|
1418
|
+
"src/core/schema.ts#validateSchema",
|
|
1419
|
+
"src/core/schema.ts#errors"
|
|
1420
|
+
],
|
|
1421
|
+
"module": "src"
|
|
1422
|
+
},
|
|
1043
1423
|
"src/core/semanticContexts.ts": {
|
|
1044
1424
|
"symbols": [
|
|
1045
1425
|
"src/core/semanticContexts.ts#Feature",
|
|
1046
1426
|
"src/core/semanticContexts.ts#Flow",
|
|
1047
1427
|
"src/core/semanticContexts.ts#SemanticContexts",
|
|
1048
|
-
"src/core/semanticContexts.ts#
|
|
1049
|
-
"src/core/semanticContexts.ts#
|
|
1050
|
-
"src/core/semanticContexts.ts#CONTAINER_FOLDERS",
|
|
1428
|
+
"src/core/semanticContexts.ts#CANDIDATE_ROOTS",
|
|
1429
|
+
"src/core/semanticContexts.ts#IGNORED_FOLDERS",
|
|
1051
1430
|
"src/core/semanticContexts.ts#ENTRYPOINT_PATTERNS",
|
|
1052
|
-
"src/core/semanticContexts.ts#
|
|
1053
|
-
"src/core/semanticContexts.ts#
|
|
1431
|
+
"src/core/semanticContexts.ts#FLOW_ENTRY_PATTERNS",
|
|
1432
|
+
"src/core/semanticContexts.ts#FLOW_EXCLUDE",
|
|
1433
|
+
"src/core/semanticContexts.ts#LAYER_PATTERNS",
|
|
1434
|
+
"src/core/semanticContexts.ts#LAYER_PRIORITY",
|
|
1054
1435
|
"src/core/semanticContexts.ts#MAX_FLOW_DEPTH",
|
|
1055
1436
|
"src/core/semanticContexts.ts#MAX_FLOW_FILES",
|
|
1437
|
+
"src/core/semanticContexts.ts#SOURCE_EXTENSIONS",
|
|
1056
1438
|
"src/core/semanticContexts.ts#isSourceFile",
|
|
1057
1439
|
"src/core/semanticContexts.ts#ext",
|
|
1058
1440
|
"src/core/semanticContexts.ts#isEntrypoint",
|
|
1441
|
+
"src/core/semanticContexts.ts#lower",
|
|
1059
1442
|
"src/core/semanticContexts.ts#basename",
|
|
1060
|
-
"src/core/semanticContexts.ts#
|
|
1061
|
-
"src/core/semanticContexts.ts#
|
|
1062
|
-
"src/core/semanticContexts.ts#
|
|
1443
|
+
"src/core/semanticContexts.ts#isFlowEntrypoint",
|
|
1444
|
+
"src/core/semanticContexts.ts#isIgnoredFolder",
|
|
1445
|
+
"src/core/semanticContexts.ts#isFlowExcluded",
|
|
1446
|
+
"src/core/semanticContexts.ts#getLayer",
|
|
1447
|
+
"src/core/semanticContexts.ts#parts",
|
|
1448
|
+
"src/core/semanticContexts.ts#getLayerPriority",
|
|
1449
|
+
"src/core/semanticContexts.ts#name",
|
|
1450
|
+
"src/core/semanticContexts.ts#findFeatureCandidates",
|
|
1063
1451
|
"src/core/semanticContexts.ts#candidates",
|
|
1064
1452
|
"src/core/semanticContexts.ts#file",
|
|
1065
|
-
"src/core/semanticContexts.ts#
|
|
1066
|
-
"src/core/semanticContexts.ts#
|
|
1453
|
+
"src/core/semanticContexts.ts#rootIdx",
|
|
1454
|
+
"src/core/semanticContexts.ts#depth0FeatureIdx",
|
|
1455
|
+
"src/core/semanticContexts.ts#featureName0",
|
|
1456
|
+
"src/core/semanticContexts.ts#featurePath0",
|
|
1067
1457
|
"src/core/semanticContexts.ts#depth",
|
|
1068
1458
|
"src/core/semanticContexts.ts#featureIdx",
|
|
1069
1459
|
"src/core/semanticContexts.ts#featureName",
|
|
1070
|
-
"src/core/semanticContexts.ts#
|
|
1071
|
-
"src/core/semanticContexts.ts#
|
|
1072
|
-
"src/core/semanticContexts.ts#
|
|
1073
|
-
"src/core/semanticContexts.ts#
|
|
1074
|
-
"src/core/semanticContexts.ts#detectArchitecturalLayers",
|
|
1075
|
-
"src/core/semanticContexts.ts#layers",
|
|
1076
|
-
"src/core/semanticContexts.ts#part",
|
|
1077
|
-
"src/core/semanticContexts.ts#lower",
|
|
1078
|
-
"src/core/semanticContexts.ts#getFileLayer",
|
|
1460
|
+
"src/core/semanticContexts.ts#featurePath",
|
|
1461
|
+
"src/core/semanticContexts.ts#getFeatureDependencies",
|
|
1462
|
+
"src/core/semanticContexts.ts#deps",
|
|
1463
|
+
"src/core/semanticContexts.ts#featureFiles",
|
|
1079
1464
|
"src/core/semanticContexts.ts#generateFeatures",
|
|
1080
1465
|
"src/core/semanticContexts.ts#features",
|
|
1081
1466
|
"src/core/semanticContexts.ts#modules",
|
|
1082
1467
|
"src/core/semanticContexts.ts#data",
|
|
1083
|
-
"src/core/semanticContexts.ts#
|
|
1084
|
-
"src/core/semanticContexts.ts#mod",
|
|
1468
|
+
"src/core/semanticContexts.ts#files",
|
|
1085
1469
|
"src/core/semanticContexts.ts#sourceFiles",
|
|
1086
1470
|
"src/core/semanticContexts.ts#entrypoints",
|
|
1087
|
-
"src/core/semanticContexts.ts#
|
|
1471
|
+
"src/core/semanticContexts.ts#flowsFromGraph",
|
|
1088
1472
|
"src/core/semanticContexts.ts#flows",
|
|
1089
|
-
"src/core/semanticContexts.ts#
|
|
1090
|
-
"src/core/semanticContexts.ts#
|
|
1091
|
-
"src/core/semanticContexts.ts#rel",
|
|
1092
|
-
"src/core/semanticContexts.ts#entrypointSymbols",
|
|
1093
|
-
"src/core/semanticContexts.ts#symbol",
|
|
1094
|
-
"src/core/semanticContexts.ts#entrypointId",
|
|
1473
|
+
"src/core/semanticContexts.ts#bySymbol",
|
|
1474
|
+
"src/core/semanticContexts.ts#ep",
|
|
1095
1475
|
"src/core/semanticContexts.ts#visited",
|
|
1096
|
-
"src/core/semanticContexts.ts#
|
|
1097
|
-
"src/core/semanticContexts.ts#
|
|
1476
|
+
"src/core/semanticContexts.ts#fileSet",
|
|
1477
|
+
"src/core/semanticContexts.ts#layerSet",
|
|
1098
1478
|
"src/core/semanticContexts.ts#traverse",
|
|
1099
|
-
"src/core/semanticContexts.ts#
|
|
1100
|
-
"src/core/semanticContexts.ts#
|
|
1101
|
-
"src/core/semanticContexts.ts#
|
|
1102
|
-
"src/core/semanticContexts.ts#
|
|
1103
|
-
"src/core/semanticContexts.ts#
|
|
1104
|
-
"src/core/semanticContexts.ts#
|
|
1105
|
-
"src/core/semanticContexts.ts#
|
|
1479
|
+
"src/core/semanticContexts.ts#symbol",
|
|
1480
|
+
"src/core/semanticContexts.ts#flowsFromFolders",
|
|
1481
|
+
"src/core/semanticContexts.ts#byFeature",
|
|
1482
|
+
"src/core/semanticContexts.ts#baseName",
|
|
1483
|
+
"src/core/semanticContexts.ts#feature",
|
|
1484
|
+
"src/core/semanticContexts.ts#key",
|
|
1485
|
+
"src/core/semanticContexts.ts#hasEntrypoint",
|
|
1486
|
+
"src/core/semanticContexts.ts#layers",
|
|
1487
|
+
"src/core/semanticContexts.ts#sorted",
|
|
1488
|
+
"src/core/semanticContexts.ts#entrypoint",
|
|
1489
|
+
"src/core/semanticContexts.ts#flowsFromImports",
|
|
1490
|
+
"src/core/semanticContexts.ts#importsTo",
|
|
1491
|
+
"src/core/semanticContexts.ts#imp",
|
|
1492
|
+
"src/core/semanticContexts.ts#generateFlows",
|
|
1493
|
+
"src/core/semanticContexts.ts#graphData",
|
|
1494
|
+
"src/core/semanticContexts.ts#allFiles",
|
|
1495
|
+
"src/core/semanticContexts.ts#relationshipCount",
|
|
1496
|
+
"src/core/semanticContexts.ts#symbolCount",
|
|
1497
|
+
"src/core/semanticContexts.ts#density",
|
|
1498
|
+
"src/core/semanticContexts.ts#isWeakGraph",
|
|
1499
|
+
"src/core/semanticContexts.ts#seen",
|
|
1106
1500
|
"src/core/semanticContexts.ts#generateSemanticContexts",
|
|
1107
|
-
"src/core/semanticContexts.ts#contextDir",
|
|
1108
1501
|
"src/core/semanticContexts.ts#featuresDir",
|
|
1109
1502
|
"src/core/semanticContexts.ts#flowsDir",
|
|
1110
|
-
"src/core/semanticContexts.ts#
|
|
1503
|
+
"src/core/semanticContexts.ts#modulesPath",
|
|
1111
1504
|
"src/core/semanticContexts.ts#symbolsPath",
|
|
1112
|
-
"src/core/semanticContexts.ts#
|
|
1113
|
-
"src/core/semanticContexts.ts#
|
|
1114
|
-
"src/core/semanticContexts.ts#
|
|
1115
|
-
"src/core/semanticContexts.ts#
|
|
1505
|
+
"src/core/semanticContexts.ts#graphPath",
|
|
1506
|
+
"src/core/semanticContexts.ts#dependenciesPath",
|
|
1507
|
+
"src/core/semanticContexts.ts#filePath",
|
|
1508
|
+
"src/core/semanticContexts.ts#flow"
|
|
1116
1509
|
],
|
|
1117
1510
|
"module": "src"
|
|
1118
1511
|
},
|
|
@@ -1249,5 +1642,388 @@
|
|
|
1249
1642
|
"src/utils/fileUtils.ts#content"
|
|
1250
1643
|
],
|
|
1251
1644
|
"module": "src"
|
|
1645
|
+
},
|
|
1646
|
+
"test-projects/express-api/controllers/authController.js": {
|
|
1647
|
+
"symbols": [
|
|
1648
|
+
"test-projects/express-api/controllers/authController.js#jwt",
|
|
1649
|
+
"test-projects/express-api/controllers/authController.js#authService",
|
|
1650
|
+
"test-projects/express-api/controllers/authController.js#SECRET",
|
|
1651
|
+
"test-projects/express-api/controllers/authController.js#login",
|
|
1652
|
+
"test-projects/express-api/controllers/authController.js#user",
|
|
1653
|
+
"test-projects/express-api/controllers/authController.js#token",
|
|
1654
|
+
"test-projects/express-api/controllers/authController.js#register"
|
|
1655
|
+
],
|
|
1656
|
+
"module": "test-projects"
|
|
1657
|
+
},
|
|
1658
|
+
"test-projects/express-api/controllers/userController.js": {
|
|
1659
|
+
"symbols": [
|
|
1660
|
+
"test-projects/express-api/controllers/userController.js#userService",
|
|
1661
|
+
"test-projects/express-api/controllers/userController.js#getAll",
|
|
1662
|
+
"test-projects/express-api/controllers/userController.js#users",
|
|
1663
|
+
"test-projects/express-api/controllers/userController.js#getById",
|
|
1664
|
+
"test-projects/express-api/controllers/userController.js#user",
|
|
1665
|
+
"test-projects/express-api/controllers/userController.js#create",
|
|
1666
|
+
"test-projects/express-api/controllers/userController.js#update",
|
|
1667
|
+
"test-projects/express-api/controllers/userController.js#remove"
|
|
1668
|
+
],
|
|
1669
|
+
"module": "test-projects"
|
|
1670
|
+
},
|
|
1671
|
+
"test-projects/express-api/index.js": {
|
|
1672
|
+
"symbols": [
|
|
1673
|
+
"test-projects/express-api/index.js#express",
|
|
1674
|
+
"test-projects/express-api/index.js#authController",
|
|
1675
|
+
"test-projects/express-api/index.js#userController",
|
|
1676
|
+
"test-projects/express-api/index.js#app",
|
|
1677
|
+
"test-projects/express-api/index.js#PORT"
|
|
1678
|
+
],
|
|
1679
|
+
"module": "test-projects"
|
|
1680
|
+
},
|
|
1681
|
+
"test-projects/express-api/middleware/authMiddleware.js": {
|
|
1682
|
+
"symbols": [
|
|
1683
|
+
"test-projects/express-api/middleware/authMiddleware.js#jwt",
|
|
1684
|
+
"test-projects/express-api/middleware/authMiddleware.js#SECRET",
|
|
1685
|
+
"test-projects/express-api/middleware/authMiddleware.js#authenticate",
|
|
1686
|
+
"test-projects/express-api/middleware/authMiddleware.js#token",
|
|
1687
|
+
"test-projects/express-api/middleware/authMiddleware.js#decoded",
|
|
1688
|
+
"test-projects/express-api/middleware/authMiddleware.js#authorize"
|
|
1689
|
+
],
|
|
1690
|
+
"module": "test-projects"
|
|
1691
|
+
},
|
|
1692
|
+
"test-projects/express-api/models/userRepository.js": {
|
|
1693
|
+
"symbols": [
|
|
1694
|
+
"test-projects/express-api/models/userRepository.js#users",
|
|
1695
|
+
"test-projects/express-api/models/userRepository.js#db",
|
|
1696
|
+
"test-projects/express-api/models/userRepository.js#findAll",
|
|
1697
|
+
"test-projects/express-api/models/userRepository.js#findById",
|
|
1698
|
+
"test-projects/express-api/models/userRepository.js#findByEmail",
|
|
1699
|
+
"test-projects/express-api/models/userRepository.js#create",
|
|
1700
|
+
"test-projects/express-api/models/userRepository.js#user",
|
|
1701
|
+
"test-projects/express-api/models/userRepository.js#update",
|
|
1702
|
+
"test-projects/express-api/models/userRepository.js#index",
|
|
1703
|
+
"test-projects/express-api/models/userRepository.js#delete"
|
|
1704
|
+
],
|
|
1705
|
+
"module": "test-projects"
|
|
1706
|
+
},
|
|
1707
|
+
"test-projects/express-api/services/authService.js": {
|
|
1708
|
+
"symbols": [
|
|
1709
|
+
"test-projects/express-api/services/authService.js#bcrypt",
|
|
1710
|
+
"test-projects/express-api/services/authService.js#userRepository",
|
|
1711
|
+
"test-projects/express-api/services/authService.js#verifyCredentials",
|
|
1712
|
+
"test-projects/express-api/services/authService.js#user",
|
|
1713
|
+
"test-projects/express-api/services/authService.js#valid",
|
|
1714
|
+
"test-projects/express-api/services/authService.js#createUser",
|
|
1715
|
+
"test-projects/express-api/services/authService.js#hashedPassword"
|
|
1716
|
+
],
|
|
1717
|
+
"module": "test-projects"
|
|
1718
|
+
},
|
|
1719
|
+
"test-projects/express-api/services/userService.js": {
|
|
1720
|
+
"symbols": [
|
|
1721
|
+
"test-projects/express-api/services/userService.js#UserService",
|
|
1722
|
+
"test-projects/express-api/services/userService.js#repository"
|
|
1723
|
+
],
|
|
1724
|
+
"module": "test-projects"
|
|
1725
|
+
},
|
|
1726
|
+
"test-projects/nestjs-backend/src/app.module.ts": {
|
|
1727
|
+
"symbols": [
|
|
1728
|
+
"test-projects/nestjs-backend/src/app.module.ts#AppModule"
|
|
1729
|
+
],
|
|
1730
|
+
"module": "test-projects"
|
|
1731
|
+
},
|
|
1732
|
+
"test-projects/nestjs-backend/src/auth/auth.controller.ts": {
|
|
1733
|
+
"symbols": [
|
|
1734
|
+
"test-projects/nestjs-backend/src/auth/auth.controller.ts#AuthController",
|
|
1735
|
+
"test-projects/nestjs-backend/src/auth/auth.controller.ts#user"
|
|
1736
|
+
],
|
|
1737
|
+
"module": "test-projects"
|
|
1738
|
+
},
|
|
1739
|
+
"test-projects/nestjs-backend/src/auth/auth.module.ts": {
|
|
1740
|
+
"symbols": [
|
|
1741
|
+
"test-projects/nestjs-backend/src/auth/auth.module.ts#AuthModule"
|
|
1742
|
+
],
|
|
1743
|
+
"module": "test-projects"
|
|
1744
|
+
},
|
|
1745
|
+
"test-projects/nestjs-backend/src/auth/auth.service.ts": {
|
|
1746
|
+
"symbols": [
|
|
1747
|
+
"test-projects/nestjs-backend/src/auth/auth.service.ts#AuthService",
|
|
1748
|
+
"test-projects/nestjs-backend/src/auth/auth.service.ts#payload"
|
|
1749
|
+
],
|
|
1750
|
+
"module": "test-projects"
|
|
1751
|
+
},
|
|
1752
|
+
"test-projects/nestjs-backend/src/auth/dto/login.dto.ts": {
|
|
1753
|
+
"symbols": [
|
|
1754
|
+
"test-projects/nestjs-backend/src/auth/dto/login.dto.ts#LoginDto"
|
|
1755
|
+
],
|
|
1756
|
+
"module": "test-projects"
|
|
1757
|
+
},
|
|
1758
|
+
"test-projects/nestjs-backend/src/auth/strategies/jwt.strategy.ts": {
|
|
1759
|
+
"symbols": [
|
|
1760
|
+
"test-projects/nestjs-backend/src/auth/strategies/jwt.strategy.ts#JwtStrategy"
|
|
1761
|
+
],
|
|
1762
|
+
"module": "test-projects"
|
|
1763
|
+
},
|
|
1764
|
+
"test-projects/nestjs-backend/src/main.ts": {
|
|
1765
|
+
"symbols": [
|
|
1766
|
+
"test-projects/nestjs-backend/src/main.ts#bootstrap",
|
|
1767
|
+
"test-projects/nestjs-backend/src/main.ts#app"
|
|
1768
|
+
],
|
|
1769
|
+
"module": "test-projects"
|
|
1770
|
+
},
|
|
1771
|
+
"test-projects/nestjs-backend/src/users/users.controller.ts": {
|
|
1772
|
+
"symbols": [
|
|
1773
|
+
"test-projects/nestjs-backend/src/users/users.controller.ts#UsersController"
|
|
1774
|
+
],
|
|
1775
|
+
"module": "test-projects"
|
|
1776
|
+
},
|
|
1777
|
+
"test-projects/nestjs-backend/src/users/users.module.ts": {
|
|
1778
|
+
"symbols": [
|
|
1779
|
+
"test-projects/nestjs-backend/src/users/users.module.ts#UsersModule"
|
|
1780
|
+
],
|
|
1781
|
+
"module": "test-projects"
|
|
1782
|
+
},
|
|
1783
|
+
"test-projects/nestjs-backend/src/users/users.service.ts": {
|
|
1784
|
+
"symbols": [
|
|
1785
|
+
"test-projects/nestjs-backend/src/users/users.service.ts#User",
|
|
1786
|
+
"test-projects/nestjs-backend/src/users/users.service.ts#UsersService",
|
|
1787
|
+
"test-projects/nestjs-backend/src/users/users.service.ts#user",
|
|
1788
|
+
"test-projects/nestjs-backend/src/users/users.service.ts#index"
|
|
1789
|
+
],
|
|
1790
|
+
"module": "test-projects"
|
|
1791
|
+
},
|
|
1792
|
+
"test-projects/python-cli/cli/add_command.py": {
|
|
1793
|
+
"symbols": [
|
|
1794
|
+
"test-projects/python-cli/cli/add_command.py#execute"
|
|
1795
|
+
],
|
|
1796
|
+
"module": "test-projects"
|
|
1797
|
+
},
|
|
1798
|
+
"test-projects/python-cli/cli/list_command.py": {
|
|
1799
|
+
"symbols": [
|
|
1800
|
+
"test-projects/python-cli/cli/list_command.py#execute"
|
|
1801
|
+
],
|
|
1802
|
+
"module": "test-projects"
|
|
1803
|
+
},
|
|
1804
|
+
"test-projects/python-cli/cli/remove_command.py": {
|
|
1805
|
+
"symbols": [
|
|
1806
|
+
"test-projects/python-cli/cli/remove_command.py#execute"
|
|
1807
|
+
],
|
|
1808
|
+
"module": "test-projects"
|
|
1809
|
+
},
|
|
1810
|
+
"test-projects/python-cli/main.py": {
|
|
1811
|
+
"symbols": [
|
|
1812
|
+
"test-projects/python-cli/main.py#main"
|
|
1813
|
+
],
|
|
1814
|
+
"module": "test-projects"
|
|
1815
|
+
},
|
|
1816
|
+
"test-projects/python-cli/models/task.py": {
|
|
1817
|
+
"symbols": [
|
|
1818
|
+
"test-projects/python-cli/models/task.py#Task",
|
|
1819
|
+
"test-projects/python-cli/models/task.py#__init__",
|
|
1820
|
+
"test-projects/python-cli/models/task.py#to_dict"
|
|
1821
|
+
],
|
|
1822
|
+
"module": "test-projects"
|
|
1823
|
+
},
|
|
1824
|
+
"test-projects/python-cli/models/task_repository.py": {
|
|
1825
|
+
"symbols": [
|
|
1826
|
+
"test-projects/python-cli/models/task_repository.py#TaskRepository",
|
|
1827
|
+
"test-projects/python-cli/models/task_repository.py#__init__",
|
|
1828
|
+
"test-projects/python-cli/models/task_repository.py#create",
|
|
1829
|
+
"test-projects/python-cli/models/task_repository.py#find_all",
|
|
1830
|
+
"test-projects/python-cli/models/task_repository.py#find_by_id",
|
|
1831
|
+
"test-projects/python-cli/models/task_repository.py#update",
|
|
1832
|
+
"test-projects/python-cli/models/task_repository.py#delete"
|
|
1833
|
+
],
|
|
1834
|
+
"module": "test-projects"
|
|
1835
|
+
},
|
|
1836
|
+
"test-projects/react-app/src/App.tsx": {
|
|
1837
|
+
"symbols": [
|
|
1838
|
+
"test-projects/react-app/src/App.tsx#App"
|
|
1839
|
+
],
|
|
1840
|
+
"module": "test-projects"
|
|
1841
|
+
},
|
|
1842
|
+
"test-projects/react-app/src/context/AuthContext.tsx": {
|
|
1843
|
+
"symbols": [
|
|
1844
|
+
"test-projects/react-app/src/context/AuthContext.tsx#User",
|
|
1845
|
+
"test-projects/react-app/src/context/AuthContext.tsx#AuthContextType",
|
|
1846
|
+
"test-projects/react-app/src/context/AuthContext.tsx#login",
|
|
1847
|
+
"test-projects/react-app/src/context/AuthContext.tsx#logout",
|
|
1848
|
+
"test-projects/react-app/src/context/AuthContext.tsx#AuthContext",
|
|
1849
|
+
"test-projects/react-app/src/context/AuthContext.tsx#AuthProvider",
|
|
1850
|
+
"test-projects/react-app/src/context/AuthContext.tsx#response",
|
|
1851
|
+
"test-projects/react-app/src/context/AuthContext.tsx#data"
|
|
1852
|
+
],
|
|
1853
|
+
"module": "test-projects"
|
|
1854
|
+
},
|
|
1855
|
+
"test-projects/react-app/src/hooks/useAuth.ts": {
|
|
1856
|
+
"symbols": [
|
|
1857
|
+
"test-projects/react-app/src/hooks/useAuth.ts#useAuth",
|
|
1858
|
+
"test-projects/react-app/src/hooks/useAuth.ts#context"
|
|
1859
|
+
],
|
|
1860
|
+
"module": "test-projects"
|
|
1861
|
+
},
|
|
1862
|
+
"test-projects/react-app/src/main.tsx": {
|
|
1863
|
+
"symbols": [
|
|
1864
|
+
"test-projects/react-app/src/main.tsx#root"
|
|
1865
|
+
],
|
|
1866
|
+
"module": "test-projects"
|
|
1867
|
+
},
|
|
1868
|
+
"test-projects/react-app/src/pages/DashboardPage.tsx": {
|
|
1869
|
+
"symbols": [
|
|
1870
|
+
"test-projects/react-app/src/pages/DashboardPage.tsx#DashboardPage"
|
|
1871
|
+
],
|
|
1872
|
+
"module": "test-projects"
|
|
1873
|
+
},
|
|
1874
|
+
"test-projects/react-app/src/pages/LoginPage.tsx": {
|
|
1875
|
+
"symbols": [
|
|
1876
|
+
"test-projects/react-app/src/pages/LoginPage.tsx#LoginPage",
|
|
1877
|
+
"test-projects/react-app/src/pages/LoginPage.tsx#navigate",
|
|
1878
|
+
"test-projects/react-app/src/pages/LoginPage.tsx#handleSubmit"
|
|
1879
|
+
],
|
|
1880
|
+
"module": "test-projects"
|
|
1881
|
+
},
|
|
1882
|
+
"test-projects/react-app/src/pages/UsersPage.tsx": {
|
|
1883
|
+
"symbols": [
|
|
1884
|
+
"test-projects/react-app/src/pages/UsersPage.tsx#UsersPage",
|
|
1885
|
+
"test-projects/react-app/src/pages/UsersPage.tsx#fetchUsers",
|
|
1886
|
+
"test-projects/react-app/src/pages/UsersPage.tsx#response",
|
|
1887
|
+
"test-projects/react-app/src/pages/UsersPage.tsx#data"
|
|
1888
|
+
],
|
|
1889
|
+
"module": "test-projects"
|
|
1890
|
+
},
|
|
1891
|
+
"test-projects/react-app/src/services/userService.ts": {
|
|
1892
|
+
"symbols": [
|
|
1893
|
+
"test-projects/react-app/src/services/userService.ts#User",
|
|
1894
|
+
"test-projects/react-app/src/services/userService.ts#fetchUsers",
|
|
1895
|
+
"test-projects/react-app/src/services/userService.ts#response",
|
|
1896
|
+
"test-projects/react-app/src/services/userService.ts#fetchUser",
|
|
1897
|
+
"test-projects/react-app/src/services/userService.ts#createUser",
|
|
1898
|
+
"test-projects/react-app/src/services/userService.ts#updateUser",
|
|
1899
|
+
"test-projects/react-app/src/services/userService.ts#deleteUser"
|
|
1900
|
+
],
|
|
1901
|
+
"module": "test-projects"
|
|
1902
|
+
},
|
|
1903
|
+
"tests/adapters.test.ts": {
|
|
1904
|
+
"symbols": [
|
|
1905
|
+
"tests/adapters.test.ts#createTempProjectDir",
|
|
1906
|
+
"tests/adapters.test.ts#tempDir",
|
|
1907
|
+
"tests/adapters.test.ts#fullPath",
|
|
1908
|
+
"tests/adapters.test.ts#dir",
|
|
1909
|
+
"tests/adapters.test.ts#projectDir",
|
|
1910
|
+
"tests/adapters.test.ts#adapter",
|
|
1911
|
+
"tests/adapters.test.ts#ApplicationController",
|
|
1912
|
+
"tests/adapters.test.ts#Test",
|
|
1913
|
+
"tests/adapters.test.ts#Startup",
|
|
1914
|
+
"tests/adapters.test.ts#results",
|
|
1915
|
+
"tests/adapters.test.ts#adapters"
|
|
1916
|
+
],
|
|
1917
|
+
"module": "tests"
|
|
1918
|
+
},
|
|
1919
|
+
"tests/gitAnalyzer.test.ts": {
|
|
1920
|
+
"symbols": [
|
|
1921
|
+
"tests/gitAnalyzer.test.ts#testRepoRoot",
|
|
1922
|
+
"tests/gitAnalyzer.test.ts#tempDir",
|
|
1923
|
+
"tests/gitAnalyzer.test.ts#commits",
|
|
1924
|
+
"tests/gitAnalyzer.test.ts#files",
|
|
1925
|
+
"tests/gitAnalyzer.test.ts#features",
|
|
1926
|
+
"tests/gitAnalyzer.test.ts#flows",
|
|
1927
|
+
"tests/gitAnalyzer.test.ts#activity",
|
|
1928
|
+
"tests/gitAnalyzer.test.ts#aiDir",
|
|
1929
|
+
"tests/gitAnalyzer.test.ts#result"
|
|
1930
|
+
],
|
|
1931
|
+
"module": "tests"
|
|
1932
|
+
},
|
|
1933
|
+
"tests/incrementalAnalyzer.test.ts": {
|
|
1934
|
+
"symbols": [
|
|
1935
|
+
"tests/incrementalAnalyzer.test.ts#testRoot",
|
|
1936
|
+
"tests/incrementalAnalyzer.test.ts#changes",
|
|
1937
|
+
"tests/incrementalAnalyzer.test.ts#tempDir",
|
|
1938
|
+
"tests/incrementalAnalyzer.test.ts#result",
|
|
1939
|
+
"tests/incrementalAnalyzer.test.ts#aiDir",
|
|
1940
|
+
"tests/incrementalAnalyzer.test.ts#updated"
|
|
1941
|
+
],
|
|
1942
|
+
"module": "tests"
|
|
1943
|
+
},
|
|
1944
|
+
"tests/knowledgeGraph.test.ts": {
|
|
1945
|
+
"symbols": [
|
|
1946
|
+
"tests/knowledgeGraph.test.ts#testRoot",
|
|
1947
|
+
"tests/knowledgeGraph.test.ts#testAiDir",
|
|
1948
|
+
"tests/knowledgeGraph.test.ts#nodes",
|
|
1949
|
+
"tests/knowledgeGraph.test.ts#edges",
|
|
1950
|
+
"tests/knowledgeGraph.test.ts#validTypes",
|
|
1951
|
+
"tests/knowledgeGraph.test.ts#edge",
|
|
1952
|
+
"tests/knowledgeGraph.test.ts#tempDir",
|
|
1953
|
+
"tests/knowledgeGraph.test.ts#aiDir",
|
|
1954
|
+
"tests/knowledgeGraph.test.ts#graph",
|
|
1955
|
+
"tests/knowledgeGraph.test.ts#commitNodes",
|
|
1956
|
+
"tests/knowledgeGraph.test.ts#node",
|
|
1957
|
+
"tests/knowledgeGraph.test.ts#modifiesEdges",
|
|
1958
|
+
"tests/knowledgeGraph.test.ts#firstNode",
|
|
1959
|
+
"tests/knowledgeGraph.test.ts#neighbors"
|
|
1960
|
+
],
|
|
1961
|
+
"module": "tests"
|
|
1962
|
+
},
|
|
1963
|
+
"tests/lazyAnalyzer.test.ts": {
|
|
1964
|
+
"symbols": [
|
|
1965
|
+
"tests/lazyAnalyzer.test.ts#createTempProjectDir",
|
|
1966
|
+
"tests/lazyAnalyzer.test.ts#tempDir",
|
|
1967
|
+
"tests/lazyAnalyzer.test.ts#fullPath",
|
|
1968
|
+
"tests/lazyAnalyzer.test.ts#dir",
|
|
1969
|
+
"tests/lazyAnalyzer.test.ts#projectDir",
|
|
1970
|
+
"tests/lazyAnalyzer.test.ts#hello",
|
|
1971
|
+
"tests/lazyAnalyzer.test.ts#util",
|
|
1972
|
+
"tests/lazyAnalyzer.test.ts#aiDir",
|
|
1973
|
+
"tests/lazyAnalyzer.test.ts#result",
|
|
1974
|
+
"tests/lazyAnalyzer.test.ts#state",
|
|
1975
|
+
"tests/lazyAnalyzer.test.ts#minimal",
|
|
1976
|
+
"tests/lazyAnalyzer.test.ts#app",
|
|
1977
|
+
"tests/lazyAnalyzer.test.ts#indexPath",
|
|
1978
|
+
"tests/lazyAnalyzer.test.ts#content",
|
|
1979
|
+
"tests/lazyAnalyzer.test.ts#login",
|
|
1980
|
+
"tests/lazyAnalyzer.test.ts#logout",
|
|
1981
|
+
"tests/lazyAnalyzer.test.ts#auth",
|
|
1982
|
+
"tests/lazyAnalyzer.test.ts#index"
|
|
1983
|
+
],
|
|
1984
|
+
"module": "tests"
|
|
1985
|
+
},
|
|
1986
|
+
"tests/schema.test.ts": {
|
|
1987
|
+
"symbols": [
|
|
1988
|
+
"tests/schema.test.ts#createTempAiDir",
|
|
1989
|
+
"tests/schema.test.ts#tempDir",
|
|
1990
|
+
"tests/schema.test.ts#aiDir",
|
|
1991
|
+
"tests/schema.test.ts#schema",
|
|
1992
|
+
"tests/schema.test.ts#schemaPath",
|
|
1993
|
+
"tests/schema.test.ts#loaded",
|
|
1994
|
+
"tests/schema.test.ts#rootDir",
|
|
1995
|
+
"tests/schema.test.ts#project",
|
|
1996
|
+
"tests/schema.test.ts#projectPath",
|
|
1997
|
+
"tests/schema.test.ts#featuresDir",
|
|
1998
|
+
"tests/schema.test.ts#tools",
|
|
1999
|
+
"tests/schema.test.ts#toolsPath",
|
|
2000
|
+
"tests/schema.test.ts#result",
|
|
2001
|
+
"tests/schema.test.ts#full"
|
|
2002
|
+
],
|
|
2003
|
+
"module": "tests"
|
|
2004
|
+
},
|
|
2005
|
+
"tests/semanticContexts.test.ts": {
|
|
2006
|
+
"symbols": [
|
|
2007
|
+
"tests/semanticContexts.test.ts#Feature",
|
|
2008
|
+
"tests/semanticContexts.test.ts#Flow",
|
|
2009
|
+
"tests/semanticContexts.test.ts#createTempTestDir",
|
|
2010
|
+
"tests/semanticContexts.test.ts#tempDir",
|
|
2011
|
+
"tests/semanticContexts.test.ts#aiDir",
|
|
2012
|
+
"tests/semanticContexts.test.ts#modules",
|
|
2013
|
+
"tests/semanticContexts.test.ts#firstFile",
|
|
2014
|
+
"tests/semanticContexts.test.ts#pathParts",
|
|
2015
|
+
"tests/semanticContexts.test.ts#derivedPath",
|
|
2016
|
+
"tests/semanticContexts.test.ts#features",
|
|
2017
|
+
"tests/semanticContexts.test.ts#featureNames",
|
|
2018
|
+
"tests/semanticContexts.test.ts#authFeature",
|
|
2019
|
+
"tests/semanticContexts.test.ts#flows",
|
|
2020
|
+
"tests/semanticContexts.test.ts#flowNames",
|
|
2021
|
+
"tests/semanticContexts.test.ts#flow",
|
|
2022
|
+
"tests/semanticContexts.test.ts#weakGraph",
|
|
2023
|
+
"tests/semanticContexts.test.ts#result",
|
|
2024
|
+
"tests/semanticContexts.test.ts#featureFile",
|
|
2025
|
+
"tests/semanticContexts.test.ts#featureData"
|
|
2026
|
+
],
|
|
2027
|
+
"module": "tests"
|
|
1252
2028
|
}
|
|
1253
2029
|
}
|