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
|
@@ -12,15 +12,32 @@
|
|
|
12
12
|
"docs/.vitepress/config.ts",
|
|
13
13
|
"docs/.vitepress/theme/custom.css",
|
|
14
14
|
"docs/.vitepress/theme/index.ts",
|
|
15
|
+
"docs/es/guide/adapters.md",
|
|
16
|
+
"docs/es/guide/ai-repository-schema.md",
|
|
17
|
+
"docs/es/guide/features.md",
|
|
18
|
+
"docs/es/guide/flows.md",
|
|
15
19
|
"docs/es/guide/getting-started.md",
|
|
20
|
+
"docs/es/guide/git-intelligence.md",
|
|
21
|
+
"docs/es/guide/incremental-analysis.md",
|
|
22
|
+
"docs/es/guide/knowledge-graph.md",
|
|
23
|
+
"docs/es/guide/lazy-indexing.md",
|
|
24
|
+
"docs/es/guide/performance.md",
|
|
16
25
|
"docs/es/index.md",
|
|
17
26
|
"docs/examples/express-api.md",
|
|
18
27
|
"docs/examples/index.md",
|
|
19
28
|
"docs/examples/python-django.md",
|
|
20
29
|
"docs/examples/react-app.md",
|
|
30
|
+
"docs/guide/adapters.md",
|
|
31
|
+
"docs/guide/ai-repository-schema.md",
|
|
21
32
|
"docs/guide/architecture.md",
|
|
33
|
+
"docs/guide/flows.md",
|
|
22
34
|
"docs/guide/getting-started.md",
|
|
35
|
+
"docs/guide/git-intelligence.md",
|
|
36
|
+
"docs/guide/incremental-analysis.md",
|
|
23
37
|
"docs/guide/installation.md",
|
|
38
|
+
"docs/guide/knowledge-graph.md",
|
|
39
|
+
"docs/guide/lazy-indexing.md",
|
|
40
|
+
"docs/guide/performance.md",
|
|
24
41
|
"docs/guide/quick-start.md",
|
|
25
42
|
"docs/index.md",
|
|
26
43
|
"docs/reference/commands.md"
|
|
@@ -50,24 +67,201 @@
|
|
|
50
67
|
"src/commands/ai-first.ts",
|
|
51
68
|
"src/commands/doctor.ts",
|
|
52
69
|
"src/commands/explore.ts",
|
|
70
|
+
"src/core/adapters/adapterRegistry.ts",
|
|
71
|
+
"src/core/adapters/baseAdapter.ts",
|
|
72
|
+
"src/core/adapters/community/fastapiAdapter.ts",
|
|
73
|
+
"src/core/adapters/community/index.ts",
|
|
74
|
+
"src/core/adapters/community/laravelAdapter.ts",
|
|
75
|
+
"src/core/adapters/community/nestjsAdapter.ts",
|
|
76
|
+
"src/core/adapters/community/phoenixAdapter.ts",
|
|
77
|
+
"src/core/adapters/community/springBootAdapter.ts",
|
|
78
|
+
"src/core/adapters/dotnetAdapter.ts",
|
|
79
|
+
"src/core/adapters/index.ts",
|
|
80
|
+
"src/core/adapters/javascriptAdapter.ts",
|
|
81
|
+
"src/core/adapters/pythonAdapter.ts",
|
|
82
|
+
"src/core/adapters/railsAdapter.ts",
|
|
83
|
+
"src/core/adapters/salesforceAdapter.ts",
|
|
84
|
+
"src/core/adapters/sdk.ts",
|
|
53
85
|
"src/core/aiContextGenerator.ts",
|
|
54
86
|
"src/core/ccp.ts",
|
|
55
87
|
"src/core/chunker.ts",
|
|
56
88
|
"src/core/contextGenerator.ts",
|
|
57
89
|
"src/core/contextPacket.ts",
|
|
58
90
|
"src/core/embeddings.ts",
|
|
91
|
+
"src/core/gitAnalyzer.ts",
|
|
59
92
|
"src/core/hierarchyGenerator.ts",
|
|
93
|
+
"src/core/incrementalAnalyzer.ts",
|
|
60
94
|
"src/core/indexState.ts",
|
|
61
95
|
"src/core/indexer.ts",
|
|
96
|
+
"src/core/knowledgeGraphBuilder.ts",
|
|
97
|
+
"src/core/lazyAnalyzer.ts",
|
|
62
98
|
"src/core/moduleGraph.ts",
|
|
63
99
|
"src/core/repoMapper.ts",
|
|
64
100
|
"src/core/repoScanner.ts",
|
|
101
|
+
"src/core/schema.ts",
|
|
65
102
|
"src/core/semanticContexts.ts",
|
|
66
103
|
"src/core/symbolGraph.ts",
|
|
67
104
|
"src/index.ts",
|
|
68
105
|
"src/types/sql.js.d.ts",
|
|
69
106
|
"src/utils/fileUtils.ts"
|
|
70
107
|
]
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "test-projects",
|
|
111
|
+
"paths": [
|
|
112
|
+
"test-projects/express-api/ai/ai_context.md",
|
|
113
|
+
"test-projects/express-api/ai/ai_rules.md",
|
|
114
|
+
"test-projects/express-api/ai/architecture.md",
|
|
115
|
+
"test-projects/express-api/ai/context/features/controllers.json",
|
|
116
|
+
"test-projects/express-api/ai/context/features/services.json",
|
|
117
|
+
"test-projects/express-api/ai/context/flows/auth.json",
|
|
118
|
+
"test-projects/express-api/ai/context/flows/authController.json",
|
|
119
|
+
"test-projects/express-api/ai/context/flows/user.json",
|
|
120
|
+
"test-projects/express-api/ai/conventions.md",
|
|
121
|
+
"test-projects/express-api/ai/dependencies.json",
|
|
122
|
+
"test-projects/express-api/ai/entrypoints.md",
|
|
123
|
+
"test-projects/express-api/ai/modules.json",
|
|
124
|
+
"test-projects/express-api/ai/project.json",
|
|
125
|
+
"test-projects/express-api/ai/repo_map.json",
|
|
126
|
+
"test-projects/express-api/ai/repo_map.md",
|
|
127
|
+
"test-projects/express-api/ai/schema.json",
|
|
128
|
+
"test-projects/express-api/ai/summary.md",
|
|
129
|
+
"test-projects/express-api/ai/symbols.json",
|
|
130
|
+
"test-projects/express-api/ai/tech_stack.md",
|
|
131
|
+
"test-projects/express-api/ai/tools.json",
|
|
132
|
+
"test-projects/express-api/controllers/authController.js",
|
|
133
|
+
"test-projects/express-api/controllers/userController.js",
|
|
134
|
+
"test-projects/express-api/index.js",
|
|
135
|
+
"test-projects/express-api/middleware/authMiddleware.js",
|
|
136
|
+
"test-projects/express-api/models/userRepository.js",
|
|
137
|
+
"test-projects/express-api/package.json",
|
|
138
|
+
"test-projects/express-api/services/authService.js",
|
|
139
|
+
"test-projects/express-api/services/userService.js",
|
|
140
|
+
"test-projects/nestjs-backend/ai/ai_context.md",
|
|
141
|
+
"test-projects/nestjs-backend/ai/ai_rules.md",
|
|
142
|
+
"test-projects/nestjs-backend/ai/architecture.md",
|
|
143
|
+
"test-projects/nestjs-backend/ai/context/features/src.json",
|
|
144
|
+
"test-projects/nestjs-backend/ai/context/flows/auth..json",
|
|
145
|
+
"test-projects/nestjs-backend/ai/context/flows/auth.controller.json",
|
|
146
|
+
"test-projects/nestjs-backend/ai/context/flows/users..json",
|
|
147
|
+
"test-projects/nestjs-backend/ai/context/flows/users.controller.json",
|
|
148
|
+
"test-projects/nestjs-backend/ai/conventions.md",
|
|
149
|
+
"test-projects/nestjs-backend/ai/dependencies.json",
|
|
150
|
+
"test-projects/nestjs-backend/ai/entrypoints.md",
|
|
151
|
+
"test-projects/nestjs-backend/ai/modules.json",
|
|
152
|
+
"test-projects/nestjs-backend/ai/project.json",
|
|
153
|
+
"test-projects/nestjs-backend/ai/repo_map.json",
|
|
154
|
+
"test-projects/nestjs-backend/ai/repo_map.md",
|
|
155
|
+
"test-projects/nestjs-backend/ai/schema.json",
|
|
156
|
+
"test-projects/nestjs-backend/ai/summary.md",
|
|
157
|
+
"test-projects/nestjs-backend/ai/symbols.json",
|
|
158
|
+
"test-projects/nestjs-backend/ai/tech_stack.md",
|
|
159
|
+
"test-projects/nestjs-backend/ai/tools.json",
|
|
160
|
+
"test-projects/nestjs-backend/package.json",
|
|
161
|
+
"test-projects/nestjs-backend/src/app.module.ts",
|
|
162
|
+
"test-projects/nestjs-backend/src/auth/auth.controller.ts",
|
|
163
|
+
"test-projects/nestjs-backend/src/auth/auth.module.ts",
|
|
164
|
+
"test-projects/nestjs-backend/src/auth/auth.service.ts",
|
|
165
|
+
"test-projects/nestjs-backend/src/auth/dto/login.dto.ts",
|
|
166
|
+
"test-projects/nestjs-backend/src/auth/strategies/jwt.strategy.ts",
|
|
167
|
+
"test-projects/nestjs-backend/src/main.ts",
|
|
168
|
+
"test-projects/nestjs-backend/src/users/users.controller.ts",
|
|
169
|
+
"test-projects/nestjs-backend/src/users/users.module.ts",
|
|
170
|
+
"test-projects/nestjs-backend/src/users/users.service.ts",
|
|
171
|
+
"test-projects/nestjs-backend/tsconfig.json",
|
|
172
|
+
"test-projects/python-cli/__init__.py",
|
|
173
|
+
"test-projects/python-cli/ai/ai_context.md",
|
|
174
|
+
"test-projects/python-cli/ai/ai_rules.md",
|
|
175
|
+
"test-projects/python-cli/ai/architecture.md",
|
|
176
|
+
"test-projects/python-cli/ai/context/features/cli.json",
|
|
177
|
+
"test-projects/python-cli/ai/context/flows/add_.json",
|
|
178
|
+
"test-projects/python-cli/ai/context/flows/list_.json",
|
|
179
|
+
"test-projects/python-cli/ai/context/flows/remove_.json",
|
|
180
|
+
"test-projects/python-cli/ai/conventions.md",
|
|
181
|
+
"test-projects/python-cli/ai/dependencies.json",
|
|
182
|
+
"test-projects/python-cli/ai/entrypoints.md",
|
|
183
|
+
"test-projects/python-cli/ai/modules.json",
|
|
184
|
+
"test-projects/python-cli/ai/project.json",
|
|
185
|
+
"test-projects/python-cli/ai/repo_map.json",
|
|
186
|
+
"test-projects/python-cli/ai/repo_map.md",
|
|
187
|
+
"test-projects/python-cli/ai/schema.json",
|
|
188
|
+
"test-projects/python-cli/ai/summary.md",
|
|
189
|
+
"test-projects/python-cli/ai/symbols.json",
|
|
190
|
+
"test-projects/python-cli/ai/tech_stack.md",
|
|
191
|
+
"test-projects/python-cli/ai/tools.json",
|
|
192
|
+
"test-projects/python-cli/cli/__init__.py",
|
|
193
|
+
"test-projects/python-cli/cli/add_command.py",
|
|
194
|
+
"test-projects/python-cli/cli/list_command.py",
|
|
195
|
+
"test-projects/python-cli/cli/remove_command.py",
|
|
196
|
+
"test-projects/python-cli/main.py",
|
|
197
|
+
"test-projects/python-cli/models/__init__.py",
|
|
198
|
+
"test-projects/python-cli/models/task.py",
|
|
199
|
+
"test-projects/python-cli/models/task_repository.py",
|
|
200
|
+
"test-projects/react-app/ai/ai_context.md",
|
|
201
|
+
"test-projects/react-app/ai/ai_rules.md",
|
|
202
|
+
"test-projects/react-app/ai/architecture.md",
|
|
203
|
+
"test-projects/react-app/ai/context/features/src.json",
|
|
204
|
+
"test-projects/react-app/ai/context/flows/UsersPage.json",
|
|
205
|
+
"test-projects/react-app/ai/context/flows/dashboard.json",
|
|
206
|
+
"test-projects/react-app/ai/context/flows/login.json",
|
|
207
|
+
"test-projects/react-app/ai/context/flows/users.json",
|
|
208
|
+
"test-projects/react-app/ai/conventions.md",
|
|
209
|
+
"test-projects/react-app/ai/dependencies.json",
|
|
210
|
+
"test-projects/react-app/ai/entrypoints.md",
|
|
211
|
+
"test-projects/react-app/ai/modules.json",
|
|
212
|
+
"test-projects/react-app/ai/project.json",
|
|
213
|
+
"test-projects/react-app/ai/repo_map.json",
|
|
214
|
+
"test-projects/react-app/ai/repo_map.md",
|
|
215
|
+
"test-projects/react-app/ai/schema.json",
|
|
216
|
+
"test-projects/react-app/ai/summary.md",
|
|
217
|
+
"test-projects/react-app/ai/symbols.json",
|
|
218
|
+
"test-projects/react-app/ai/tech_stack.md",
|
|
219
|
+
"test-projects/react-app/ai/tools.json",
|
|
220
|
+
"test-projects/react-app/package.json",
|
|
221
|
+
"test-projects/react-app/src/App.tsx",
|
|
222
|
+
"test-projects/react-app/src/context/AuthContext.tsx",
|
|
223
|
+
"test-projects/react-app/src/hooks/useAuth.ts",
|
|
224
|
+
"test-projects/react-app/src/main.tsx",
|
|
225
|
+
"test-projects/react-app/src/pages/DashboardPage.tsx",
|
|
226
|
+
"test-projects/react-app/src/pages/LoginPage.tsx",
|
|
227
|
+
"test-projects/react-app/src/pages/UsersPage.tsx",
|
|
228
|
+
"test-projects/react-app/src/services/userService.ts",
|
|
229
|
+
"test-projects/salesforce-cli/ai/ai_context.md",
|
|
230
|
+
"test-projects/salesforce-cli/ai/ai_rules.md",
|
|
231
|
+
"test-projects/salesforce-cli/ai/architecture.md",
|
|
232
|
+
"test-projects/salesforce-cli/ai/context/features/force-app.json",
|
|
233
|
+
"test-projects/salesforce-cli/ai/context/flows/account.json",
|
|
234
|
+
"test-projects/salesforce-cli/ai/context/flows/opportunity.json",
|
|
235
|
+
"test-projects/salesforce-cli/ai/conventions.md",
|
|
236
|
+
"test-projects/salesforce-cli/ai/dependencies.json",
|
|
237
|
+
"test-projects/salesforce-cli/ai/entrypoints.md",
|
|
238
|
+
"test-projects/salesforce-cli/ai/modules.json",
|
|
239
|
+
"test-projects/salesforce-cli/ai/project.json",
|
|
240
|
+
"test-projects/salesforce-cli/ai/repo_map.json",
|
|
241
|
+
"test-projects/salesforce-cli/ai/repo_map.md",
|
|
242
|
+
"test-projects/salesforce-cli/ai/schema.json",
|
|
243
|
+
"test-projects/salesforce-cli/ai/summary.md",
|
|
244
|
+
"test-projects/salesforce-cli/ai/symbols.json",
|
|
245
|
+
"test-projects/salesforce-cli/ai/tech_stack.md",
|
|
246
|
+
"test-projects/salesforce-cli/ai/tools.json",
|
|
247
|
+
"test-projects/salesforce-cli/force-app/main/default/classes/AccountController.cls",
|
|
248
|
+
"test-projects/salesforce-cli/force-app/main/default/classes/OpportunityController.cls",
|
|
249
|
+
"test-projects/salesforce-cli/force-app/main/default/triggers/AccountTrigger.trigger",
|
|
250
|
+
"test-projects/salesforce-cli/sfdx-project.json"
|
|
251
|
+
]
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"name": "tests",
|
|
255
|
+
"paths": [
|
|
256
|
+
"tests/adapters.test.ts",
|
|
257
|
+
"tests/e2e/README.md",
|
|
258
|
+
"tests/gitAnalyzer.test.ts",
|
|
259
|
+
"tests/incrementalAnalyzer.test.ts",
|
|
260
|
+
"tests/knowledgeGraph.test.ts",
|
|
261
|
+
"tests/lazyAnalyzer.test.ts",
|
|
262
|
+
"tests/schema.test.ts",
|
|
263
|
+
"tests/semanticContexts.test.ts"
|
|
264
|
+
]
|
|
71
265
|
}
|
|
72
266
|
],
|
|
73
267
|
"dependencies": [
|
|
@@ -103,10 +297,22 @@
|
|
|
103
297
|
"from": "src",
|
|
104
298
|
"to": "url"
|
|
105
299
|
},
|
|
300
|
+
{
|
|
301
|
+
"from": "src",
|
|
302
|
+
"to": "ora"
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"from": "src",
|
|
306
|
+
"to": "process"
|
|
307
|
+
},
|
|
106
308
|
{
|
|
107
309
|
"from": "src",
|
|
108
310
|
"to": "crypto"
|
|
109
311
|
},
|
|
312
|
+
{
|
|
313
|
+
"from": "src",
|
|
314
|
+
"to": "child_process"
|
|
315
|
+
},
|
|
110
316
|
{
|
|
111
317
|
"from": "src",
|
|
112
318
|
"to": "sql.js"
|
|
@@ -114,6 +320,70 @@
|
|
|
114
320
|
{
|
|
115
321
|
"from": "src",
|
|
116
322
|
"to": "chokidar"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"from": "test-projects",
|
|
326
|
+
"to": "jsonwebtoken"
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"from": "test-projects",
|
|
330
|
+
"to": "express"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"from": "test-projects",
|
|
334
|
+
"to": "bcrypt"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"from": "test-projects",
|
|
338
|
+
"to": "@nestjs"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"from": "test-projects",
|
|
342
|
+
"to": "passport-jwt"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"from": "test-projects",
|
|
346
|
+
"to": "cli.commands"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"from": "test-projects",
|
|
350
|
+
"to": "argparse"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"from": "test-projects",
|
|
354
|
+
"to": "datetime"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"from": "test-projects",
|
|
358
|
+
"to": "models.task"
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"from": "test-projects",
|
|
362
|
+
"to": "react-router-dom"
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"from": "test-projects",
|
|
366
|
+
"to": "react"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"from": "test-projects",
|
|
370
|
+
"to": "react-dom"
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"from": "tests",
|
|
374
|
+
"to": "vitest"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"from": "tests",
|
|
378
|
+
"to": "fs"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"from": "tests",
|
|
382
|
+
"to": "path"
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"from": "tests",
|
|
386
|
+
"to": "os"
|
|
117
387
|
}
|
|
118
388
|
]
|
|
119
389
|
}
|