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/cache.json
CHANGED
|
@@ -4,9 +4,13 @@
|
|
|
4
4
|
"hash": "18a32a19520dc577b2a8faa5a5b24660",
|
|
5
5
|
"mtime": 1773089671614.5596
|
|
6
6
|
},
|
|
7
|
+
"BUGS.md": {
|
|
8
|
+
"hash": "fb5e05da25ab9cff7ccba12a92e204ca",
|
|
9
|
+
"mtime": 1773779711389.5876
|
|
10
|
+
},
|
|
7
11
|
"CHANGELOG.md": {
|
|
8
|
-
"hash": "
|
|
9
|
-
"mtime":
|
|
12
|
+
"hash": "bfda5d772a4b3df6b0a306579b25c4cc",
|
|
13
|
+
"mtime": 1773258719942.4172
|
|
10
14
|
},
|
|
11
15
|
"CONTRIBUTING.md": {
|
|
12
16
|
"hash": "f08bff9a750bbe18e8e2d20a291aea6b",
|
|
@@ -25,25 +29,33 @@
|
|
|
25
29
|
"mtime": 1773165282282.2097
|
|
26
30
|
},
|
|
27
31
|
"ai/ai_context.md": {
|
|
28
|
-
"hash": "
|
|
29
|
-
"mtime":
|
|
32
|
+
"hash": "0cf6077c10cc73e019917738a1ed4955",
|
|
33
|
+
"mtime": 1773776714083.8076
|
|
30
34
|
},
|
|
31
35
|
"ai/ai_rules.md": {
|
|
32
|
-
"hash": "
|
|
33
|
-
"mtime":
|
|
36
|
+
"hash": "1b182cf1f35680dc5d94b0dd4f8d341b",
|
|
37
|
+
"mtime": 1773776130969.5242
|
|
34
38
|
},
|
|
35
39
|
"ai/architecture.md": {
|
|
36
|
-
"hash": "
|
|
37
|
-
"mtime":
|
|
40
|
+
"hash": "22b3987608a6c5654b5637d51ff4ea82",
|
|
41
|
+
"mtime": 1773776130904.5232
|
|
38
42
|
},
|
|
39
43
|
"ai/cache.json": {
|
|
40
|
-
"hash": "
|
|
41
|
-
"mtime":
|
|
44
|
+
"hash": "68133788b8c9770a2c895dd3d2161e41",
|
|
45
|
+
"mtime": 1773776637130.6052
|
|
42
46
|
},
|
|
43
47
|
"ai/ccp/jira-123/context.json": {
|
|
44
48
|
"hash": "60531ec055a219c58dfde8ae0d511c8a",
|
|
45
49
|
"mtime": 1773162450033.8916
|
|
46
50
|
},
|
|
51
|
+
"ai/context/features/commands.json": {
|
|
52
|
+
"hash": "48e3fd06862409e55b7e154a6683071a",
|
|
53
|
+
"mtime": 1773780155576.689
|
|
54
|
+
},
|
|
55
|
+
"ai/context/flows/ai-first.json": {
|
|
56
|
+
"hash": "b4d823a86d2a718c44fe122f91e74e27",
|
|
57
|
+
"mtime": 1773780155576.689
|
|
58
|
+
},
|
|
47
59
|
"ai/context/repo.json": {
|
|
48
60
|
"hash": "bd1c6fa8dd53ef2812310be1b0fb660c",
|
|
49
61
|
"mtime": 1773162421927.4534
|
|
@@ -53,72 +65,104 @@
|
|
|
53
65
|
"mtime": 1773162421927.4534
|
|
54
66
|
},
|
|
55
67
|
"ai/conventions.md": {
|
|
56
|
-
"hash": "
|
|
57
|
-
"mtime":
|
|
68
|
+
"hash": "3dfe3926ca897908529e645c31176604",
|
|
69
|
+
"mtime": 1773776130908.5232
|
|
58
70
|
},
|
|
59
71
|
"ai/dependencies.json": {
|
|
60
|
-
"hash": "
|
|
61
|
-
"mtime":
|
|
72
|
+
"hash": "d3198b05b6cb3814e3331b5d3809ccab",
|
|
73
|
+
"mtime": 1773780155576.689
|
|
62
74
|
},
|
|
63
75
|
"ai/embeddings.json": {
|
|
64
76
|
"hash": "26a10d77ee69ae123cc71fee255587c7",
|
|
65
77
|
"mtime": 1773074029679.9358
|
|
66
78
|
},
|
|
67
79
|
"ai/entrypoints.md": {
|
|
68
|
-
"hash": "
|
|
69
|
-
"mtime":
|
|
80
|
+
"hash": "df26433433e47eb6756676fe5d573dd6",
|
|
81
|
+
"mtime": 1773776130907.5232
|
|
70
82
|
},
|
|
71
83
|
"ai/files.json": {
|
|
72
|
-
"hash": "
|
|
73
|
-
"mtime":
|
|
84
|
+
"hash": "7ae38f6900d93dd30c887a21bdd97cd1",
|
|
85
|
+
"mtime": 1773781191882.6768
|
|
86
|
+
},
|
|
87
|
+
"ai/git/commit-activity.json": {
|
|
88
|
+
"hash": "eac589303e103dc160c2f12323d741a1",
|
|
89
|
+
"mtime": 1773776683842.3357
|
|
90
|
+
},
|
|
91
|
+
"ai/git/recent-features.json": {
|
|
92
|
+
"hash": "c78860b904cd2b24632331e98bf01292",
|
|
93
|
+
"mtime": 1773776683839.3357
|
|
94
|
+
},
|
|
95
|
+
"ai/git/recent-files.json": {
|
|
96
|
+
"hash": "8092070952d10808a13f82ac1181ce89",
|
|
97
|
+
"mtime": 1773776683839.3357
|
|
98
|
+
},
|
|
99
|
+
"ai/git/recent-flows.json": {
|
|
100
|
+
"hash": "f0686689f31e56ed244c82fd45627f3c",
|
|
101
|
+
"mtime": 1773776683839.3357
|
|
102
|
+
},
|
|
103
|
+
"ai/graph/knowledge-graph.json": {
|
|
104
|
+
"hash": "c079cd100854203412acbf609a1f5859",
|
|
105
|
+
"mtime": 1773780155652.69
|
|
74
106
|
},
|
|
75
107
|
"ai/graph/module-graph.json": {
|
|
76
|
-
"hash": "
|
|
77
|
-
"mtime":
|
|
108
|
+
"hash": "ba7af2fd760ab8081a38e9a88c6fc2ee",
|
|
109
|
+
"mtime": 1773781191711.6743
|
|
78
110
|
},
|
|
79
111
|
"ai/graph/symbol-graph.json": {
|
|
80
|
-
"hash": "
|
|
81
|
-
"mtime":
|
|
112
|
+
"hash": "5955bcd05c991fbf2d345ae0e7dcd115",
|
|
113
|
+
"mtime": 1773781191872.6765
|
|
82
114
|
},
|
|
83
115
|
"ai/graph/symbol-references.json": {
|
|
84
|
-
"hash": "
|
|
85
|
-
"mtime":
|
|
116
|
+
"hash": "dc531636cb2ededf6cb6df68be85c023",
|
|
117
|
+
"mtime": 1773781191881.6765
|
|
86
118
|
},
|
|
87
119
|
"ai/hierarchy.json": {
|
|
88
|
-
"hash": "
|
|
89
|
-
"mtime":
|
|
120
|
+
"hash": "92a7a9be5ad2752f4ceb8a3c3f8704e4",
|
|
121
|
+
"mtime": 1773776688736.412
|
|
90
122
|
},
|
|
91
123
|
"ai/index-state.json": {
|
|
92
|
-
"hash": "
|
|
93
|
-
"mtime":
|
|
124
|
+
"hash": "d0303023586348d5cd4b8e3773f8736f",
|
|
125
|
+
"mtime": 1773780155626.6897
|
|
94
126
|
},
|
|
95
127
|
"ai/modules.json": {
|
|
96
|
-
"hash": "
|
|
97
|
-
"mtime":
|
|
128
|
+
"hash": "34190d27e8861587af5e5dccc9b2083e",
|
|
129
|
+
"mtime": 1773781191662.6738
|
|
130
|
+
},
|
|
131
|
+
"ai/project.json": {
|
|
132
|
+
"hash": "f72acd67063fd555291f258ba03e993a",
|
|
133
|
+
"mtime": 1773776131008.525
|
|
98
134
|
},
|
|
99
135
|
"ai/repo-map.json": {
|
|
100
|
-
"hash": "
|
|
101
|
-
"mtime":
|
|
136
|
+
"hash": "21445ead2210d8352f43f8a6333907e1",
|
|
137
|
+
"mtime": 1773781191666.6738
|
|
102
138
|
},
|
|
103
139
|
"ai/repo_map.json": {
|
|
104
|
-
"hash": "
|
|
105
|
-
"mtime":
|
|
140
|
+
"hash": "2414d455e82664c6004ad2271f50eef8",
|
|
141
|
+
"mtime": 1773776714059.8074
|
|
106
142
|
},
|
|
107
143
|
"ai/repo_map.md": {
|
|
108
|
-
"hash": "
|
|
109
|
-
"mtime":
|
|
144
|
+
"hash": "32de701c200f84300631d2c0dea9d6cb",
|
|
145
|
+
"mtime": 1773776130901.5232
|
|
146
|
+
},
|
|
147
|
+
"ai/schema.json": {
|
|
148
|
+
"hash": "d40fb05a62df8c879343738f0532f3ee",
|
|
149
|
+
"mtime": 1773776131007.525
|
|
110
150
|
},
|
|
111
151
|
"ai/summary.md": {
|
|
112
|
-
"hash": "
|
|
113
|
-
"mtime":
|
|
152
|
+
"hash": "8a17f1e1c0c014f0dfa077c56267c3c8",
|
|
153
|
+
"mtime": 1773776130902.5232
|
|
114
154
|
},
|
|
115
155
|
"ai/symbols.json": {
|
|
116
|
-
"hash": "
|
|
117
|
-
"mtime":
|
|
156
|
+
"hash": "d751713988987e9331980363e24189ce",
|
|
157
|
+
"mtime": 1773780155571.6887
|
|
118
158
|
},
|
|
119
159
|
"ai/tech_stack.md": {
|
|
120
160
|
"hash": "00ba0b64188ca72ae0b3250ba7b2188f",
|
|
121
|
-
"mtime":
|
|
161
|
+
"mtime": 1773776130906.5232
|
|
162
|
+
},
|
|
163
|
+
"ai/tools.json": {
|
|
164
|
+
"hash": "b1356e52c74e9b3b6a0d397b790a4968",
|
|
165
|
+
"mtime": 1773776131008.525
|
|
122
166
|
},
|
|
123
167
|
"docs/.vitepress/config.ts": {
|
|
124
168
|
"hash": "6c53efc8669f87bc9040096b96847be3",
|
|
@@ -132,10 +176,46 @@
|
|
|
132
176
|
"hash": "a9a72e0000dd7687fd2d899d79e4aee0",
|
|
133
177
|
"mtime": 1773076127580.8638
|
|
134
178
|
},
|
|
179
|
+
"docs/es/guide/adapters.md": {
|
|
180
|
+
"hash": "a593b919a72920866a143d68d3f6114a",
|
|
181
|
+
"mtime": 1773184836139.1023
|
|
182
|
+
},
|
|
183
|
+
"docs/es/guide/ai-repository-schema.md": {
|
|
184
|
+
"hash": "36634728939ebe93bd4f47ebcbeee945",
|
|
185
|
+
"mtime": 1773251866778.0652
|
|
186
|
+
},
|
|
187
|
+
"docs/es/guide/features.md": {
|
|
188
|
+
"hash": "0b8d521e9b1156336091a441b64518f0",
|
|
189
|
+
"mtime": 1773178691579.252
|
|
190
|
+
},
|
|
191
|
+
"docs/es/guide/flows.md": {
|
|
192
|
+
"hash": "00cd75411f18ab0c21c0b1d110b14064",
|
|
193
|
+
"mtime": 1773178392796.509
|
|
194
|
+
},
|
|
135
195
|
"docs/es/guide/getting-started.md": {
|
|
136
196
|
"hash": "c446f6957beff061b7b41b0ccef510e2",
|
|
137
197
|
"mtime": 1773090370625.2866
|
|
138
198
|
},
|
|
199
|
+
"docs/es/guide/git-intelligence.md": {
|
|
200
|
+
"hash": "e47e2199964d144cb4e841a0c7a8b881",
|
|
201
|
+
"mtime": 1773238994485.4612
|
|
202
|
+
},
|
|
203
|
+
"docs/es/guide/incremental-analysis.md": {
|
|
204
|
+
"hash": "526453da195d833ad614c9a32585e3f3",
|
|
205
|
+
"mtime": 1773247246616.0706
|
|
206
|
+
},
|
|
207
|
+
"docs/es/guide/knowledge-graph.md": {
|
|
208
|
+
"hash": "a4deda34b2f4f587858127a7299c5e0b",
|
|
209
|
+
"mtime": 1773244257027.961
|
|
210
|
+
},
|
|
211
|
+
"docs/es/guide/lazy-indexing.md": {
|
|
212
|
+
"hash": "50862945713d450e7ca2401e62ce3e66",
|
|
213
|
+
"mtime": 1773258482771.7268
|
|
214
|
+
},
|
|
215
|
+
"docs/es/guide/performance.md": {
|
|
216
|
+
"hash": "624e29f574a1bc47347754e918476dcc",
|
|
217
|
+
"mtime": 1773181129397.9136
|
|
218
|
+
},
|
|
139
219
|
"docs/es/index.md": {
|
|
140
220
|
"hash": "920ea9e39b01a04495d68306c26d2fe9",
|
|
141
221
|
"mtime": 1773090256493.4934
|
|
@@ -156,18 +236,50 @@
|
|
|
156
236
|
"hash": "c3ae0d56ab0de03f6957a2c3685e2a10",
|
|
157
237
|
"mtime": 1773076494650.4448
|
|
158
238
|
},
|
|
239
|
+
"docs/guide/adapters.md": {
|
|
240
|
+
"hash": "54aff0280eef4b341723d9fe1f4936a1",
|
|
241
|
+
"mtime": 1773194224066.7905
|
|
242
|
+
},
|
|
243
|
+
"docs/guide/ai-repository-schema.md": {
|
|
244
|
+
"hash": "b953a4c87754d0ac445df26967444891",
|
|
245
|
+
"mtime": 1773251800916.9807
|
|
246
|
+
},
|
|
159
247
|
"docs/guide/architecture.md": {
|
|
160
|
-
"hash": "
|
|
161
|
-
"mtime":
|
|
248
|
+
"hash": "a73bf154ed909b4d0157e0f8f37a97aa",
|
|
249
|
+
"mtime": 1773176294334.256
|
|
250
|
+
},
|
|
251
|
+
"docs/guide/flows.md": {
|
|
252
|
+
"hash": "58dc503bbdf067153ba4a0b04a8c56f0",
|
|
253
|
+
"mtime": 1773176979656.7134
|
|
162
254
|
},
|
|
163
255
|
"docs/guide/getting-started.md": {
|
|
164
256
|
"hash": "b783c85c32dc67ffa2133915b5cd93fb",
|
|
165
257
|
"mtime": 1773076199524.7075
|
|
166
258
|
},
|
|
259
|
+
"docs/guide/git-intelligence.md": {
|
|
260
|
+
"hash": "2e6f8fc3e8efba54d92eea8cc631c19e",
|
|
261
|
+
"mtime": 1773238937863.8408
|
|
262
|
+
},
|
|
263
|
+
"docs/guide/incremental-analysis.md": {
|
|
264
|
+
"hash": "d4293f8de2ca740e2736c282f8b1514b",
|
|
265
|
+
"mtime": 1773247186818.0437
|
|
266
|
+
},
|
|
167
267
|
"docs/guide/installation.md": {
|
|
168
268
|
"hash": "7926dceb824c696ff79bc357aee27580",
|
|
169
269
|
"mtime": 1773076224028.002
|
|
170
270
|
},
|
|
271
|
+
"docs/guide/knowledge-graph.md": {
|
|
272
|
+
"hash": "3c00be517112f0fb1e865cedd2ec5a81",
|
|
273
|
+
"mtime": 1773244190994.9873
|
|
274
|
+
},
|
|
275
|
+
"docs/guide/lazy-indexing.md": {
|
|
276
|
+
"hash": "29c43fc104003e8819e731e45f7c640d",
|
|
277
|
+
"mtime": 1773258407656.5571
|
|
278
|
+
},
|
|
279
|
+
"docs/guide/performance.md": {
|
|
280
|
+
"hash": "a2a5434f93591785a72e202ff700467f",
|
|
281
|
+
"mtime": 1773181094035.3489
|
|
282
|
+
},
|
|
171
283
|
"docs/guide/quick-start.md": {
|
|
172
284
|
"hash": "dfa4c6196895c98b84845c138182dae6",
|
|
173
285
|
"mtime": 1773076244371.249
|
|
@@ -201,8 +313,8 @@
|
|
|
201
313
|
"mtime": 1773083490249.47
|
|
202
314
|
},
|
|
203
315
|
"package.json": {
|
|
204
|
-
"hash": "
|
|
205
|
-
"mtime":
|
|
316
|
+
"hash": "6cb7a2c83779a42506f33af859e4b1f1",
|
|
317
|
+
"mtime": 1773262330986.5657
|
|
206
318
|
},
|
|
207
319
|
"src/analyzers/aiRules.ts": {
|
|
208
320
|
"hash": "3213f98ebd24246dd24b2c39f696bd14",
|
|
@@ -241,8 +353,8 @@
|
|
|
241
353
|
"mtime": 1773153400053.8142
|
|
242
354
|
},
|
|
243
355
|
"src/commands/ai-first.ts": {
|
|
244
|
-
"hash": "
|
|
245
|
-
"mtime":
|
|
356
|
+
"hash": "3956a85894848dc72a85f4e35e12f6fe",
|
|
357
|
+
"mtime": 1773778970490.481
|
|
246
358
|
},
|
|
247
359
|
"src/commands/doctor.ts": {
|
|
248
360
|
"hash": "bf877242c2777a92c2c13c6f20952d63",
|
|
@@ -252,6 +364,66 @@
|
|
|
252
364
|
"hash": "684e64267e90e13ff9ae7a7a87deaa5d",
|
|
253
365
|
"mtime": 1773071610359.5925
|
|
254
366
|
},
|
|
367
|
+
"src/core/adapters/adapterRegistry.ts": {
|
|
368
|
+
"hash": "9c82d3399bf134c40c4d0d8239252813",
|
|
369
|
+
"mtime": 1773194865986.006
|
|
370
|
+
},
|
|
371
|
+
"src/core/adapters/baseAdapter.ts": {
|
|
372
|
+
"hash": "5f64bb1c62d32109898a576b1a11fc84",
|
|
373
|
+
"mtime": 1773183006248.3667
|
|
374
|
+
},
|
|
375
|
+
"src/core/adapters/community/fastapiAdapter.ts": {
|
|
376
|
+
"hash": "1d6e19ee052f97e3edeaf100199a4f6e",
|
|
377
|
+
"mtime": 1773195157323.2893
|
|
378
|
+
},
|
|
379
|
+
"src/core/adapters/community/index.ts": {
|
|
380
|
+
"hash": "869811b9969b694a69da22a0acf65062",
|
|
381
|
+
"mtime": 1773185647607.2932
|
|
382
|
+
},
|
|
383
|
+
"src/core/adapters/community/laravelAdapter.ts": {
|
|
384
|
+
"hash": "783b2d3973cb186133b0291cecf5bea4",
|
|
385
|
+
"mtime": 1773185437305.221
|
|
386
|
+
},
|
|
387
|
+
"src/core/adapters/community/nestjsAdapter.ts": {
|
|
388
|
+
"hash": "1497421c1608545d575172567db22956",
|
|
389
|
+
"mtime": 1773185475791.7996
|
|
390
|
+
},
|
|
391
|
+
"src/core/adapters/community/phoenixAdapter.ts": {
|
|
392
|
+
"hash": "06f5634a4d352223e4cd8f5ea795a7e4",
|
|
393
|
+
"mtime": 1773185580466.3152
|
|
394
|
+
},
|
|
395
|
+
"src/core/adapters/community/springBootAdapter.ts": {
|
|
396
|
+
"hash": "a4da44ea1657a242cfe06e2c80263c3b",
|
|
397
|
+
"mtime": 1773185539438.7197
|
|
398
|
+
},
|
|
399
|
+
"src/core/adapters/dotnetAdapter.ts": {
|
|
400
|
+
"hash": "cb85de66279ec84e49b78e202ad53172",
|
|
401
|
+
"mtime": 1773183211018.439
|
|
402
|
+
},
|
|
403
|
+
"src/core/adapters/index.ts": {
|
|
404
|
+
"hash": "52fbc30e12817507e27c51584e710041",
|
|
405
|
+
"mtime": 1773194224100.791
|
|
406
|
+
},
|
|
407
|
+
"src/core/adapters/javascriptAdapter.ts": {
|
|
408
|
+
"hash": "4344fc5d7dfa44800a3c27d04bf5b23d",
|
|
409
|
+
"mtime": 1773183042396.908
|
|
410
|
+
},
|
|
411
|
+
"src/core/adapters/pythonAdapter.ts": {
|
|
412
|
+
"hash": "01bf12d95ab7ebf0819b1bbc97bd0223",
|
|
413
|
+
"mtime": 1773183091831.6492
|
|
414
|
+
},
|
|
415
|
+
"src/core/adapters/railsAdapter.ts": {
|
|
416
|
+
"hash": "ce0622664c7614cd86fe33a6ed5cf9ec",
|
|
417
|
+
"mtime": 1773183128570.2004
|
|
418
|
+
},
|
|
419
|
+
"src/core/adapters/salesforceAdapter.ts": {
|
|
420
|
+
"hash": "9080869edee1b246baf94caf66732cf1",
|
|
421
|
+
"mtime": 1773183167520.7852
|
|
422
|
+
},
|
|
423
|
+
"src/core/adapters/sdk.ts": {
|
|
424
|
+
"hash": "cfe5d3b363b701aae09b29250274d495",
|
|
425
|
+
"mtime": 1773185372752.242
|
|
426
|
+
},
|
|
255
427
|
"src/core/aiContextGenerator.ts": {
|
|
256
428
|
"hash": "c520cef1f061e0f8517734b30957b947",
|
|
257
429
|
"mtime": 1773013859071.9048
|
|
@@ -276,10 +448,18 @@
|
|
|
276
448
|
"hash": "ce1769d7adec0510a295672f69a8ba41",
|
|
277
449
|
"mtime": 1773073766382.3613
|
|
278
450
|
},
|
|
451
|
+
"src/core/gitAnalyzer.ts": {
|
|
452
|
+
"hash": "cc017c698e64892c23a1761440d9dbd7",
|
|
453
|
+
"mtime": 1773237342075.0762
|
|
454
|
+
},
|
|
279
455
|
"src/core/hierarchyGenerator.ts": {
|
|
280
456
|
"hash": "c83b44b554d5aab8759f6a4807985a24",
|
|
281
457
|
"mtime": 1773016072837.5437
|
|
282
458
|
},
|
|
459
|
+
"src/core/incrementalAnalyzer.ts": {
|
|
460
|
+
"hash": "7057f4102daa2b59a53f62776a56b9e1",
|
|
461
|
+
"mtime": 1773246228077.465
|
|
462
|
+
},
|
|
283
463
|
"src/core/indexState.ts": {
|
|
284
464
|
"hash": "412559800f738abb82e28c9eb71f8a6c",
|
|
285
465
|
"mtime": 1773073382179.3071
|
|
@@ -288,6 +468,14 @@
|
|
|
288
468
|
"hash": "6e5b002d8661cf176d236b2e362db46c",
|
|
289
469
|
"mtime": 1773012050361.3564
|
|
290
470
|
},
|
|
471
|
+
"src/core/knowledgeGraphBuilder.ts": {
|
|
472
|
+
"hash": "274e5831b4e8be00cec10f2668b90735",
|
|
473
|
+
"mtime": 1773242876540.4153
|
|
474
|
+
},
|
|
475
|
+
"src/core/lazyAnalyzer.ts": {
|
|
476
|
+
"hash": "b28a51c974b1f4ea7eb98acd5ba6fddd",
|
|
477
|
+
"mtime": 1773257763051.4905
|
|
478
|
+
},
|
|
291
479
|
"src/core/moduleGraph.ts": {
|
|
292
480
|
"hash": "0bf6db06febcf2f929d92fdf569d753b",
|
|
293
481
|
"mtime": 1773071610359.6934
|
|
@@ -300,9 +488,13 @@
|
|
|
300
488
|
"hash": "78c4baf429b8365b779d779faec6c6f2",
|
|
301
489
|
"mtime": 1773004069943.8745
|
|
302
490
|
},
|
|
491
|
+
"src/core/schema.ts": {
|
|
492
|
+
"hash": "e6f173aea750cf98e4ef363846edd2b2",
|
|
493
|
+
"mtime": 1773249080973.0469
|
|
494
|
+
},
|
|
303
495
|
"src/core/semanticContexts.ts": {
|
|
304
|
-
"hash": "
|
|
305
|
-
"mtime":
|
|
496
|
+
"hash": "8c335cda53cbdecd1190a15d30910c17",
|
|
497
|
+
"mtime": 1773780076910.4495
|
|
306
498
|
},
|
|
307
499
|
"src/core/symbolGraph.ts": {
|
|
308
500
|
"hash": "2ed7da22206f2833ab0766b144e82f6b",
|
|
@@ -317,13 +509,601 @@
|
|
|
317
509
|
"mtime": 1773010637558.1929
|
|
318
510
|
},
|
|
319
511
|
"src/utils/fileUtils.ts": {
|
|
320
|
-
"hash": "
|
|
321
|
-
"mtime":
|
|
512
|
+
"hash": "f1b6c884e3f78c088b276ff82a7ad09e",
|
|
513
|
+
"mtime": 1773778112059.0947
|
|
514
|
+
},
|
|
515
|
+
"test-projects/express-api/ai/ai_context.md": {
|
|
516
|
+
"hash": "286f0083010c4a66f3906b020b9cc7b4",
|
|
517
|
+
"mtime": 1773780259902.3242
|
|
518
|
+
},
|
|
519
|
+
"test-projects/express-api/ai/ai_rules.md": {
|
|
520
|
+
"hash": "fa1a632e71f5b7055dee7d1368600ce0",
|
|
521
|
+
"mtime": 1773780259901.3242
|
|
522
|
+
},
|
|
523
|
+
"test-projects/express-api/ai/architecture.md": {
|
|
524
|
+
"hash": "5e9f157447aac07a89cf6fe7bffcdad4",
|
|
525
|
+
"mtime": 1773780259894.3242
|
|
526
|
+
},
|
|
527
|
+
"test-projects/express-api/ai/context/features/controllers.json": {
|
|
528
|
+
"hash": "65a9f94a405e51bd65bd7a5378dbb164",
|
|
529
|
+
"mtime": 1773780259903.3242
|
|
530
|
+
},
|
|
531
|
+
"test-projects/express-api/ai/context/features/services.json": {
|
|
532
|
+
"hash": "113525da53ad952071cca194ba355d48",
|
|
533
|
+
"mtime": 1773780259903.3242
|
|
534
|
+
},
|
|
535
|
+
"test-projects/express-api/ai/context/flows/auth.json": {
|
|
536
|
+
"hash": "a6200259a521a38e08dc6396d870a633",
|
|
537
|
+
"mtime": 1773780259903.3242
|
|
538
|
+
},
|
|
539
|
+
"test-projects/express-api/ai/context/flows/authController.json": {
|
|
540
|
+
"hash": "055ec4c463c9ed9ea4977b90ec6e15a6",
|
|
541
|
+
"mtime": 1773780259903.3242
|
|
542
|
+
},
|
|
543
|
+
"test-projects/express-api/ai/context/flows/user.json": {
|
|
544
|
+
"hash": "af049ebfc3b8ce808e6091ac96a651ee",
|
|
545
|
+
"mtime": 1773780259903.3242
|
|
546
|
+
},
|
|
547
|
+
"test-projects/express-api/ai/conventions.md": {
|
|
548
|
+
"hash": "fa8f117204dbd53d6b787e6ec1791dbf",
|
|
549
|
+
"mtime": 1773780259897.3242
|
|
550
|
+
},
|
|
551
|
+
"test-projects/express-api/ai/dependencies.json": {
|
|
552
|
+
"hash": "fd3a0a18b6d99f3e19494e6673b298a8",
|
|
553
|
+
"mtime": 1773780259900.3242
|
|
554
|
+
},
|
|
555
|
+
"test-projects/express-api/ai/entrypoints.md": {
|
|
556
|
+
"hash": "17b75097fff8baf7e8218553431dad64",
|
|
557
|
+
"mtime": 1773780259896.3242
|
|
558
|
+
},
|
|
559
|
+
"test-projects/express-api/ai/modules.json": {
|
|
560
|
+
"hash": "52396bb2eb3346493e373bf55805ef90",
|
|
561
|
+
"mtime": 1773780259902.3242
|
|
562
|
+
},
|
|
563
|
+
"test-projects/express-api/ai/project.json": {
|
|
564
|
+
"hash": "8a72c2ffacfc01f8fa718452544b587f",
|
|
565
|
+
"mtime": 1773780259904.3242
|
|
566
|
+
},
|
|
567
|
+
"test-projects/express-api/ai/repo_map.json": {
|
|
568
|
+
"hash": "93577c606ba5a2a923362d308515341d",
|
|
569
|
+
"mtime": 1773780259893.324
|
|
570
|
+
},
|
|
571
|
+
"test-projects/express-api/ai/repo_map.md": {
|
|
572
|
+
"hash": "35963e46f602438bc7b1318c630c9616",
|
|
573
|
+
"mtime": 1773780259893.324
|
|
574
|
+
},
|
|
575
|
+
"test-projects/express-api/ai/schema.json": {
|
|
576
|
+
"hash": "2529ada7b8d94813445044f50fa33a41",
|
|
577
|
+
"mtime": 1773780259904.3242
|
|
578
|
+
},
|
|
579
|
+
"test-projects/express-api/ai/summary.md": {
|
|
580
|
+
"hash": "792c7fa8536cdf57b7506a5b4390e1fd",
|
|
581
|
+
"mtime": 1773780259894.3242
|
|
582
|
+
},
|
|
583
|
+
"test-projects/express-api/ai/symbols.json": {
|
|
584
|
+
"hash": "55f09cedb48590dcdc4c0a4506026d52",
|
|
585
|
+
"mtime": 1773780259899.3242
|
|
586
|
+
},
|
|
587
|
+
"test-projects/express-api/ai/tech_stack.md": {
|
|
588
|
+
"hash": "bce98c307ddce9864d341031c914ba8a",
|
|
589
|
+
"mtime": 1773780259896.3242
|
|
590
|
+
},
|
|
591
|
+
"test-projects/express-api/ai/tools.json": {
|
|
592
|
+
"hash": "b1356e52c74e9b3b6a0d397b790a4968",
|
|
593
|
+
"mtime": 1773780259904.3242
|
|
594
|
+
},
|
|
595
|
+
"test-projects/express-api/controllers/authController.js": {
|
|
596
|
+
"hash": "7354721b063c069c013d70e04f4bee0f",
|
|
597
|
+
"mtime": 1773776832721.0393
|
|
598
|
+
},
|
|
599
|
+
"test-projects/express-api/controllers/userController.js": {
|
|
600
|
+
"hash": "e43bb45b1c75b7e4bcd072c60a70d848",
|
|
601
|
+
"mtime": 1773776845003.1538
|
|
602
|
+
},
|
|
603
|
+
"test-projects/express-api/index.js": {
|
|
604
|
+
"hash": "b866780bf160f2bfb2ac6baba6a1f6b1",
|
|
605
|
+
"mtime": 1773776791058.662
|
|
606
|
+
},
|
|
607
|
+
"test-projects/express-api/middleware/authMiddleware.js": {
|
|
608
|
+
"hash": "bd1176bd90f83f93b3f66d07758267e5",
|
|
609
|
+
"mtime": 1773776926397.9497
|
|
610
|
+
},
|
|
611
|
+
"test-projects/express-api/models/userRepository.js": {
|
|
612
|
+
"hash": "fdf8dfbb70b15c82f0d2b13e51a640f6",
|
|
613
|
+
"mtime": 1773776885672.544
|
|
614
|
+
},
|
|
615
|
+
"test-projects/express-api/package.json": {
|
|
616
|
+
"hash": "c64180130f77b5472a2850aafa61c7e9",
|
|
617
|
+
"mtime": 1773776784437.6038
|
|
618
|
+
},
|
|
619
|
+
"test-projects/express-api/services/authService.js": {
|
|
620
|
+
"hash": "cacf5bd493a669c8ef7b95bef67cf7e5",
|
|
621
|
+
"mtime": 1773776853984.2388
|
|
622
|
+
},
|
|
623
|
+
"test-projects/express-api/services/userService.js": {
|
|
624
|
+
"hash": "cb3b6f655977d154edee4038d6105d10",
|
|
625
|
+
"mtime": 1773776865182.3455
|
|
626
|
+
},
|
|
627
|
+
"test-projects/nestjs-backend/ai/ai_context.md": {
|
|
628
|
+
"hash": "01e94675a8faa5d598f2782c09e3d5ad",
|
|
629
|
+
"mtime": 1773780259999.3257
|
|
630
|
+
},
|
|
631
|
+
"test-projects/nestjs-backend/ai/ai_rules.md": {
|
|
632
|
+
"hash": "0056c2b3f1d212bd870734924f577d09",
|
|
633
|
+
"mtime": 1773780259999.3257
|
|
634
|
+
},
|
|
635
|
+
"test-projects/nestjs-backend/ai/architecture.md": {
|
|
636
|
+
"hash": "b763c79531f89caf3a6731d8c6b4f157",
|
|
637
|
+
"mtime": 1773780259992.3257
|
|
638
|
+
},
|
|
639
|
+
"test-projects/nestjs-backend/ai/context/features/src.json": {
|
|
640
|
+
"hash": "e62d7f714439c64f0a0051436687b023",
|
|
641
|
+
"mtime": 1773780260001.3257
|
|
642
|
+
},
|
|
643
|
+
"test-projects/nestjs-backend/ai/context/flows/auth..json": {
|
|
644
|
+
"hash": "064519d0be7978f42c408cf2f99edaf9",
|
|
645
|
+
"mtime": 1773780260001.3257
|
|
646
|
+
},
|
|
647
|
+
"test-projects/nestjs-backend/ai/context/flows/auth.controller.json": {
|
|
648
|
+
"hash": "a61ee04c482158f50919e84978222248",
|
|
649
|
+
"mtime": 1773780260001.3257
|
|
650
|
+
},
|
|
651
|
+
"test-projects/nestjs-backend/ai/context/flows/users..json": {
|
|
652
|
+
"hash": "743cdda74793f8b1d4fac2656267c24b",
|
|
653
|
+
"mtime": 1773780260001.3257
|
|
654
|
+
},
|
|
655
|
+
"test-projects/nestjs-backend/ai/context/flows/users.controller.json": {
|
|
656
|
+
"hash": "a797f6c268b0619dc79a49e34ed9dc0f",
|
|
657
|
+
"mtime": 1773780260001.3257
|
|
658
|
+
},
|
|
659
|
+
"test-projects/nestjs-backend/ai/conventions.md": {
|
|
660
|
+
"hash": "9924468f87cfd5d2328fa48737aac075",
|
|
661
|
+
"mtime": 1773780259994.3257
|
|
662
|
+
},
|
|
663
|
+
"test-projects/nestjs-backend/ai/dependencies.json": {
|
|
664
|
+
"hash": "02d90ce28c41920d2591c9a29255813d",
|
|
665
|
+
"mtime": 1773780259997.3257
|
|
666
|
+
},
|
|
667
|
+
"test-projects/nestjs-backend/ai/entrypoints.md": {
|
|
668
|
+
"hash": "31bc6c36186b7db7764086f994a34fcf",
|
|
669
|
+
"mtime": 1773780259994.3257
|
|
670
|
+
},
|
|
671
|
+
"test-projects/nestjs-backend/ai/modules.json": {
|
|
672
|
+
"hash": "11513775b7ba2c22e59f9bd915ea33fa",
|
|
673
|
+
"mtime": 1773780259999.3257
|
|
674
|
+
},
|
|
675
|
+
"test-projects/nestjs-backend/ai/project.json": {
|
|
676
|
+
"hash": "c6b3d408145afd2fd35063120fd6d922",
|
|
677
|
+
"mtime": 1773780260002.3257
|
|
678
|
+
},
|
|
679
|
+
"test-projects/nestjs-backend/ai/repo_map.json": {
|
|
680
|
+
"hash": "5286055a82f31ff2a9e6091b4299928b",
|
|
681
|
+
"mtime": 1773780259991.3257
|
|
682
|
+
},
|
|
683
|
+
"test-projects/nestjs-backend/ai/repo_map.md": {
|
|
684
|
+
"hash": "d3b93db63ba7b92c1bcba98b7682b487",
|
|
685
|
+
"mtime": 1773780259990.3257
|
|
686
|
+
},
|
|
687
|
+
"test-projects/nestjs-backend/ai/schema.json": {
|
|
688
|
+
"hash": "f39eaae38116c54da7659e845e463132",
|
|
689
|
+
"mtime": 1773780260002.3257
|
|
690
|
+
},
|
|
691
|
+
"test-projects/nestjs-backend/ai/summary.md": {
|
|
692
|
+
"hash": "c97180815314cb04e69623f705703641",
|
|
693
|
+
"mtime": 1773780259991.3257
|
|
694
|
+
},
|
|
695
|
+
"test-projects/nestjs-backend/ai/symbols.json": {
|
|
696
|
+
"hash": "86f0962de99584aca04f8773850703ba",
|
|
697
|
+
"mtime": 1773780259996.3257
|
|
698
|
+
},
|
|
699
|
+
"test-projects/nestjs-backend/ai/tech_stack.md": {
|
|
700
|
+
"hash": "a84eb022eb8e5959365181abc81e5f9d",
|
|
701
|
+
"mtime": 1773780259993.3257
|
|
702
|
+
},
|
|
703
|
+
"test-projects/nestjs-backend/ai/tools.json": {
|
|
704
|
+
"hash": "b1356e52c74e9b3b6a0d397b790a4968",
|
|
705
|
+
"mtime": 1773780260002.3257
|
|
706
|
+
},
|
|
707
|
+
"test-projects/nestjs-backend/package.json": {
|
|
708
|
+
"hash": "54188023d3f4898db4ed5ecb0963ad7c",
|
|
709
|
+
"mtime": 1773776957019.264
|
|
710
|
+
},
|
|
711
|
+
"test-projects/nestjs-backend/src/app.module.ts": {
|
|
712
|
+
"hash": "340f55f1f816bff231e0d7cceb640a6a",
|
|
713
|
+
"mtime": 1773777098469.8062
|
|
714
|
+
},
|
|
715
|
+
"test-projects/nestjs-backend/src/auth/auth.controller.ts": {
|
|
716
|
+
"hash": "042f9828f736d2cd17f81a9f38e92902",
|
|
717
|
+
"mtime": 1773776992110.6333
|
|
718
|
+
},
|
|
719
|
+
"test-projects/nestjs-backend/src/auth/auth.module.ts": {
|
|
720
|
+
"hash": "d77f0da16ab8259e61017e585aa84ba1",
|
|
721
|
+
"mtime": 1773776981771.5234
|
|
722
|
+
},
|
|
723
|
+
"test-projects/nestjs-backend/src/auth/auth.service.ts": {
|
|
724
|
+
"hash": "82d1c6ef4273438c42f5ec7a6d11af7e",
|
|
725
|
+
"mtime": 1773777003294.753
|
|
726
|
+
},
|
|
727
|
+
"test-projects/nestjs-backend/src/auth/dto/login.dto.ts": {
|
|
728
|
+
"hash": "ea30ef087078e1172bffc80a370ebff3",
|
|
729
|
+
"mtime": 1773777024191.979
|
|
730
|
+
},
|
|
731
|
+
"test-projects/nestjs-backend/src/auth/strategies/jwt.strategy.ts": {
|
|
732
|
+
"hash": "0f76815e6d72c4b1d3324713b6c09853",
|
|
733
|
+
"mtime": 1773777033163.077
|
|
734
|
+
},
|
|
735
|
+
"test-projects/nestjs-backend/src/main.ts": {
|
|
736
|
+
"hash": "37685b56941c1e865638bae7fd76d81c",
|
|
737
|
+
"mtime": 1773777107555.9097
|
|
738
|
+
},
|
|
739
|
+
"test-projects/nestjs-backend/src/users/users.controller.ts": {
|
|
740
|
+
"hash": "41b4cfa3872766fb0578a901abd294fa",
|
|
741
|
+
"mtime": 1773777065483.4343
|
|
742
|
+
},
|
|
743
|
+
"test-projects/nestjs-backend/src/users/users.module.ts": {
|
|
744
|
+
"hash": "f3eb2901994d3dcf77b5bb6766f937aa",
|
|
745
|
+
"mtime": 1773777054886.3164
|
|
746
|
+
},
|
|
747
|
+
"test-projects/nestjs-backend/src/users/users.service.ts": {
|
|
748
|
+
"hash": "34c037f935826f26a9f72d53774a3223",
|
|
749
|
+
"mtime": 1773777078186.5767
|
|
750
|
+
},
|
|
751
|
+
"test-projects/nestjs-backend/tsconfig.json": {
|
|
752
|
+
"hash": "f0902e207501d022c8048ac457251ecc",
|
|
753
|
+
"mtime": 1773777131755.1877
|
|
754
|
+
},
|
|
755
|
+
"test-projects/python-cli/__init__.py": {
|
|
756
|
+
"hash": "b8e919564af9b6e38c79d449bb77a7b5",
|
|
757
|
+
"mtime": 1773777152897.4336
|
|
758
|
+
},
|
|
759
|
+
"test-projects/python-cli/ai/ai_context.md": {
|
|
760
|
+
"hash": "ed58b5050b4b428a2dc5ddde0d8f0784",
|
|
761
|
+
"mtime": 1773780260093.3271
|
|
762
|
+
},
|
|
763
|
+
"test-projects/python-cli/ai/ai_rules.md": {
|
|
764
|
+
"hash": "497d2aaa36fc25e1a1d43ad93a5e3631",
|
|
765
|
+
"mtime": 1773780260093.3271
|
|
766
|
+
},
|
|
767
|
+
"test-projects/python-cli/ai/architecture.md": {
|
|
768
|
+
"hash": "96f6c50d3d91f5ac670473220a4aa87e",
|
|
769
|
+
"mtime": 1773780260088.3271
|
|
770
|
+
},
|
|
771
|
+
"test-projects/python-cli/ai/context/features/cli.json": {
|
|
772
|
+
"hash": "db233eedf90a4de1cbb42f260b4ec159",
|
|
773
|
+
"mtime": 1773780260095.3271
|
|
774
|
+
},
|
|
775
|
+
"test-projects/python-cli/ai/context/flows/add_.json": {
|
|
776
|
+
"hash": "8fd1b0ccd628661384b1982917527e10",
|
|
777
|
+
"mtime": 1773780260095.3271
|
|
778
|
+
},
|
|
779
|
+
"test-projects/python-cli/ai/context/flows/list_.json": {
|
|
780
|
+
"hash": "2307454625174d3b69e727acf6e10261",
|
|
781
|
+
"mtime": 1773780260095.3271
|
|
782
|
+
},
|
|
783
|
+
"test-projects/python-cli/ai/context/flows/remove_.json": {
|
|
784
|
+
"hash": "12bece7cdabce999d2430fee0b316b3b",
|
|
785
|
+
"mtime": 1773780260095.3271
|
|
786
|
+
},
|
|
787
|
+
"test-projects/python-cli/ai/conventions.md": {
|
|
788
|
+
"hash": "9c37d280c1cab6899447a58aa03b0f44",
|
|
789
|
+
"mtime": 1773780260090.3271
|
|
790
|
+
},
|
|
791
|
+
"test-projects/python-cli/ai/dependencies.json": {
|
|
792
|
+
"hash": "b1333fe58b2dddfa6ecb8c53292f442f",
|
|
793
|
+
"mtime": 1773780260092.3271
|
|
794
|
+
},
|
|
795
|
+
"test-projects/python-cli/ai/entrypoints.md": {
|
|
796
|
+
"hash": "34c8965a66697d9f1d428bb0904f5d8d",
|
|
797
|
+
"mtime": 1773780260089.3271
|
|
798
|
+
},
|
|
799
|
+
"test-projects/python-cli/ai/modules.json": {
|
|
800
|
+
"hash": "366ccb4be2fcb4b7098548e68cee7a06",
|
|
801
|
+
"mtime": 1773780260093.3271
|
|
802
|
+
},
|
|
803
|
+
"test-projects/python-cli/ai/project.json": {
|
|
804
|
+
"hash": "2ad66b030030670dee6d479322a4219e",
|
|
805
|
+
"mtime": 1773780260095.3271
|
|
806
|
+
},
|
|
807
|
+
"test-projects/python-cli/ai/repo_map.json": {
|
|
808
|
+
"hash": "2ccad74ba9da12a3fb671413f07438bb",
|
|
809
|
+
"mtime": 1773780260086.3271
|
|
810
|
+
},
|
|
811
|
+
"test-projects/python-cli/ai/repo_map.md": {
|
|
812
|
+
"hash": "ef0d7f67520571d71a944a89aed09b85",
|
|
813
|
+
"mtime": 1773780260085.3271
|
|
814
|
+
},
|
|
815
|
+
"test-projects/python-cli/ai/schema.json": {
|
|
816
|
+
"hash": "bbd5b30d441d153b010613b9688c34ac",
|
|
817
|
+
"mtime": 1773780260095.3271
|
|
818
|
+
},
|
|
819
|
+
"test-projects/python-cli/ai/summary.md": {
|
|
820
|
+
"hash": "ce45f19fa9b88934464c679faa8bb5e1",
|
|
821
|
+
"mtime": 1773780260086.3271
|
|
822
|
+
},
|
|
823
|
+
"test-projects/python-cli/ai/symbols.json": {
|
|
824
|
+
"hash": "cd04c4c359d5fdffb6f49d080ee81749",
|
|
825
|
+
"mtime": 1773780260091.3271
|
|
826
|
+
},
|
|
827
|
+
"test-projects/python-cli/ai/tech_stack.md": {
|
|
828
|
+
"hash": "549e166f1ac035b5c54f522a1962321e",
|
|
829
|
+
"mtime": 1773780260089.3271
|
|
830
|
+
},
|
|
831
|
+
"test-projects/python-cli/ai/tools.json": {
|
|
832
|
+
"hash": "b1356e52c74e9b3b6a0d397b790a4968",
|
|
833
|
+
"mtime": 1773780260095.3271
|
|
834
|
+
},
|
|
835
|
+
"test-projects/python-cli/cli/__init__.py": {
|
|
836
|
+
"hash": "a3b6d5054e9628836636cf4d6927e33a",
|
|
837
|
+
"mtime": 1773777227193.3157
|
|
838
|
+
},
|
|
839
|
+
"test-projects/python-cli/cli/add_command.py": {
|
|
840
|
+
"hash": "d9b48d790c714aebf7b29db0f8aa3464",
|
|
841
|
+
"mtime": 1773777196493.9478
|
|
842
|
+
},
|
|
843
|
+
"test-projects/python-cli/cli/list_command.py": {
|
|
844
|
+
"hash": "fd7ca8830013f013e16afd191e6c5c75",
|
|
845
|
+
"mtime": 1773777202889.024
|
|
846
|
+
},
|
|
847
|
+
"test-projects/python-cli/cli/remove_command.py": {
|
|
848
|
+
"hash": "1209f465970ad86ef87ed6c0409cef50",
|
|
849
|
+
"mtime": 1773777208836.0952
|
|
850
|
+
},
|
|
851
|
+
"test-projects/python-cli/main.py": {
|
|
852
|
+
"hash": "8e7d98c3b644a2b27f760c017100e886",
|
|
853
|
+
"mtime": 1773777186036.8235
|
|
854
|
+
},
|
|
855
|
+
"test-projects/python-cli/models/__init__.py": {
|
|
856
|
+
"hash": "a99db8f336d72b5c5700545705baf7de",
|
|
857
|
+
"mtime": 1773777266541.7935
|
|
858
|
+
},
|
|
859
|
+
"test-projects/python-cli/models/task.py": {
|
|
860
|
+
"hash": "95274739cbb686a2f8c661836623c692",
|
|
861
|
+
"mtime": 1773777234068.3987
|
|
862
|
+
},
|
|
863
|
+
"test-projects/python-cli/models/task_repository.py": {
|
|
864
|
+
"hash": "68215671f3b74e5dbd6fdc06671b08b1",
|
|
865
|
+
"mtime": 1773777261367.7302
|
|
866
|
+
},
|
|
867
|
+
"test-projects/react-app/ai/ai_context.md": {
|
|
868
|
+
"hash": "4866a92297737fd2e34fabcd82b4974f",
|
|
869
|
+
"mtime": 1773780260187.3286
|
|
870
|
+
},
|
|
871
|
+
"test-projects/react-app/ai/ai_rules.md": {
|
|
872
|
+
"hash": "187ea54135fe8b42b7d38acb8c45ace3",
|
|
873
|
+
"mtime": 1773780260186.3286
|
|
874
|
+
},
|
|
875
|
+
"test-projects/react-app/ai/architecture.md": {
|
|
876
|
+
"hash": "e8662d770fe3c6360a9fc9b20c341266",
|
|
877
|
+
"mtime": 1773780260180.3286
|
|
878
|
+
},
|
|
879
|
+
"test-projects/react-app/ai/context/features/src.json": {
|
|
880
|
+
"hash": "2d248c2486297a3db63103469fcb4d7b",
|
|
881
|
+
"mtime": 1773780260188.3286
|
|
882
|
+
},
|
|
883
|
+
"test-projects/react-app/ai/context/flows/UsersPage.json": {
|
|
884
|
+
"hash": "853ec72db0e500595f06ef542848523a",
|
|
885
|
+
"mtime": 1773780260188.3286
|
|
886
|
+
},
|
|
887
|
+
"test-projects/react-app/ai/context/flows/dashboard.json": {
|
|
888
|
+
"hash": "0fbc56b67033373bb6157659552c82d9",
|
|
889
|
+
"mtime": 1773780260188.3286
|
|
890
|
+
},
|
|
891
|
+
"test-projects/react-app/ai/context/flows/login.json": {
|
|
892
|
+
"hash": "9311af687ac6a30df3de225f1e18f879",
|
|
893
|
+
"mtime": 1773780260188.3286
|
|
894
|
+
},
|
|
895
|
+
"test-projects/react-app/ai/context/flows/users.json": {
|
|
896
|
+
"hash": "b5ee48090ea670d1afe36d1fa13500b7",
|
|
897
|
+
"mtime": 1773780260188.3286
|
|
898
|
+
},
|
|
899
|
+
"test-projects/react-app/ai/conventions.md": {
|
|
900
|
+
"hash": "cf36cf015f6c293ebf89ec2c7756bb57",
|
|
901
|
+
"mtime": 1773780260182.3286
|
|
902
|
+
},
|
|
903
|
+
"test-projects/react-app/ai/dependencies.json": {
|
|
904
|
+
"hash": "f0e25ff1d391f812cc8c79e3bf31be6b",
|
|
905
|
+
"mtime": 1773780260185.3286
|
|
906
|
+
},
|
|
907
|
+
"test-projects/react-app/ai/entrypoints.md": {
|
|
908
|
+
"hash": "34c8965a66697d9f1d428bb0904f5d8d",
|
|
909
|
+
"mtime": 1773780260182.3286
|
|
910
|
+
},
|
|
911
|
+
"test-projects/react-app/ai/modules.json": {
|
|
912
|
+
"hash": "c539e0624fa9a288ddfb14bd48b5587e",
|
|
913
|
+
"mtime": 1773780260187.3286
|
|
914
|
+
},
|
|
915
|
+
"test-projects/react-app/ai/project.json": {
|
|
916
|
+
"hash": "116fb16f4f139b2e6bd3716b639d3c17",
|
|
917
|
+
"mtime": 1773780260189.3286
|
|
918
|
+
},
|
|
919
|
+
"test-projects/react-app/ai/repo_map.json": {
|
|
920
|
+
"hash": "ea1325a23611934930ca1ce2ac79d710",
|
|
921
|
+
"mtime": 1773780260179.3286
|
|
922
|
+
},
|
|
923
|
+
"test-projects/react-app/ai/repo_map.md": {
|
|
924
|
+
"hash": "f3361ccec5c3c9c2b4ead2c27b5fd571",
|
|
925
|
+
"mtime": 1773780260178.3286
|
|
926
|
+
},
|
|
927
|
+
"test-projects/react-app/ai/schema.json": {
|
|
928
|
+
"hash": "4c88d365f8e280e491cde1b9f8498678",
|
|
929
|
+
"mtime": 1773780260189.3286
|
|
930
|
+
},
|
|
931
|
+
"test-projects/react-app/ai/summary.md": {
|
|
932
|
+
"hash": "6c7df62f23d13a49598c071057253eae",
|
|
933
|
+
"mtime": 1773780260179.3286
|
|
934
|
+
},
|
|
935
|
+
"test-projects/react-app/ai/symbols.json": {
|
|
936
|
+
"hash": "ad94b9b17ac8aee49fe27f0113994ceb",
|
|
937
|
+
"mtime": 1773780260184.3286
|
|
938
|
+
},
|
|
939
|
+
"test-projects/react-app/ai/tech_stack.md": {
|
|
940
|
+
"hash": "d7e224852b6ec88de645453bfb065c40",
|
|
941
|
+
"mtime": 1773780260181.3286
|
|
942
|
+
},
|
|
943
|
+
"test-projects/react-app/ai/tools.json": {
|
|
944
|
+
"hash": "b1356e52c74e9b3b6a0d397b790a4968",
|
|
945
|
+
"mtime": 1773780260189.3286
|
|
946
|
+
},
|
|
947
|
+
"test-projects/react-app/package.json": {
|
|
948
|
+
"hash": "12744c74a0278dc2edfb68294b9b9125",
|
|
949
|
+
"mtime": 1773777304827.265
|
|
950
|
+
},
|
|
951
|
+
"test-projects/react-app/src/App.tsx": {
|
|
952
|
+
"hash": "1bd200aa3ea7b4e1175a07d0f26f8dc4",
|
|
953
|
+
"mtime": 1773777339360.6953
|
|
954
|
+
},
|
|
955
|
+
"test-projects/react-app/src/context/AuthContext.tsx": {
|
|
956
|
+
"hash": "4113336d7e2eb6ac2b78cebe8464276e",
|
|
957
|
+
"mtime": 1773777350783.8386
|
|
958
|
+
},
|
|
959
|
+
"test-projects/react-app/src/hooks/useAuth.ts": {
|
|
960
|
+
"hash": "036b7295855cbd8214eb4653954f10cc",
|
|
961
|
+
"mtime": 1773777417490.685
|
|
962
|
+
},
|
|
963
|
+
"test-projects/react-app/src/main.tsx": {
|
|
964
|
+
"hash": "283000b4b4218c8dc8b4e634a70bbbe3",
|
|
965
|
+
"mtime": 1773777310472.335
|
|
966
|
+
},
|
|
967
|
+
"test-projects/react-app/src/pages/DashboardPage.tsx": {
|
|
968
|
+
"hash": "4c9a9c8fc6a53db6bdbb4d0de6561baf",
|
|
969
|
+
"mtime": 1773777385566.278
|
|
970
|
+
},
|
|
971
|
+
"test-projects/react-app/src/pages/LoginPage.tsx": {
|
|
972
|
+
"hash": "16a9451aafa3dd13e3c62b8816ab98d6",
|
|
973
|
+
"mtime": 1773777377789.1794
|
|
974
|
+
},
|
|
975
|
+
"test-projects/react-app/src/pages/UsersPage.tsx": {
|
|
976
|
+
"hash": "e24caa3c7d598228c36600eb1ca95b30",
|
|
977
|
+
"mtime": 1773777394130.387
|
|
978
|
+
},
|
|
979
|
+
"test-projects/react-app/src/services/userService.ts": {
|
|
980
|
+
"hash": "78df2c3240cd630cedb2095347616301",
|
|
981
|
+
"mtime": 1773777428144.8215
|
|
982
|
+
},
|
|
983
|
+
"test-projects/salesforce-cli/ai/ai_context.md": {
|
|
984
|
+
"hash": "f038c6e81ed1afc0b5582c214b42fe69",
|
|
985
|
+
"mtime": 1773780260286.3303
|
|
986
|
+
},
|
|
987
|
+
"test-projects/salesforce-cli/ai/ai_rules.md": {
|
|
988
|
+
"hash": "d6864e4c14fb24f5b12fc0dbc5fe50f7",
|
|
989
|
+
"mtime": 1773780260286.3303
|
|
990
|
+
},
|
|
991
|
+
"test-projects/salesforce-cli/ai/architecture.md": {
|
|
992
|
+
"hash": "587f3de6d1623a0fc13d924503ab2ad9",
|
|
993
|
+
"mtime": 1773780260282.33
|
|
994
|
+
},
|
|
995
|
+
"test-projects/salesforce-cli/ai/context/features/force-app.json": {
|
|
996
|
+
"hash": "05a59b12f59343ac6550313514d26378",
|
|
997
|
+
"mtime": 1773780260288.3303
|
|
998
|
+
},
|
|
999
|
+
"test-projects/salesforce-cli/ai/context/flows/account.json": {
|
|
1000
|
+
"hash": "b598b9ea1bc7ba8e8220ce3861cd9a6b",
|
|
1001
|
+
"mtime": 1773780260288.3303
|
|
1002
|
+
},
|
|
1003
|
+
"test-projects/salesforce-cli/ai/context/flows/opportunity.json": {
|
|
1004
|
+
"hash": "ac8e6a6f053bb84d99784bd2e4556e90",
|
|
1005
|
+
"mtime": 1773780260288.3303
|
|
1006
|
+
},
|
|
1007
|
+
"test-projects/salesforce-cli/ai/conventions.md": {
|
|
1008
|
+
"hash": "d11ac646a8916e3c6cc376f610368317",
|
|
1009
|
+
"mtime": 1773780260284.3303
|
|
1010
|
+
},
|
|
1011
|
+
"test-projects/salesforce-cli/ai/dependencies.json": {
|
|
1012
|
+
"hash": "038f80a99cbcc45991786b645398758e",
|
|
1013
|
+
"mtime": 1773780260285.3303
|
|
1014
|
+
},
|
|
1015
|
+
"test-projects/salesforce-cli/ai/entrypoints.md": {
|
|
1016
|
+
"hash": "34c8965a66697d9f1d428bb0904f5d8d",
|
|
1017
|
+
"mtime": 1773780260284.3303
|
|
1018
|
+
},
|
|
1019
|
+
"test-projects/salesforce-cli/ai/modules.json": {
|
|
1020
|
+
"hash": "1d0ec72acc3fc6e1c8c1c28b1ad87252",
|
|
1021
|
+
"mtime": 1773780260287.3303
|
|
1022
|
+
},
|
|
1023
|
+
"test-projects/salesforce-cli/ai/project.json": {
|
|
1024
|
+
"hash": "de8dcae01581a166e605720419782e81",
|
|
1025
|
+
"mtime": 1773780260288.3303
|
|
1026
|
+
},
|
|
1027
|
+
"test-projects/salesforce-cli/ai/repo_map.json": {
|
|
1028
|
+
"hash": "8acf4ab9bc359d96240514f1e5e315ff",
|
|
1029
|
+
"mtime": 1773780260281.33
|
|
1030
|
+
},
|
|
1031
|
+
"test-projects/salesforce-cli/ai/repo_map.md": {
|
|
1032
|
+
"hash": "612c1b7f776ec7f0e02e6a2a80bafe3b",
|
|
1033
|
+
"mtime": 1773780260280.33
|
|
1034
|
+
},
|
|
1035
|
+
"test-projects/salesforce-cli/ai/schema.json": {
|
|
1036
|
+
"hash": "a757dca2fda36f996bbf8cd2c5a3a3f5",
|
|
1037
|
+
"mtime": 1773780260288.3303
|
|
1038
|
+
},
|
|
1039
|
+
"test-projects/salesforce-cli/ai/summary.md": {
|
|
1040
|
+
"hash": "52c99c74210210438e7bf314915ef872",
|
|
1041
|
+
"mtime": 1773780260281.33
|
|
1042
|
+
},
|
|
1043
|
+
"test-projects/salesforce-cli/ai/symbols.json": {
|
|
1044
|
+
"hash": "6edde050dc3089a9e15bf3934226a7c4",
|
|
1045
|
+
"mtime": 1773780260285.3303
|
|
1046
|
+
},
|
|
1047
|
+
"test-projects/salesforce-cli/ai/tech_stack.md": {
|
|
1048
|
+
"hash": "4f67b75666a8dab1f2f82196130ab030",
|
|
1049
|
+
"mtime": 1773780260283.33
|
|
1050
|
+
},
|
|
1051
|
+
"test-projects/salesforce-cli/ai/tools.json": {
|
|
1052
|
+
"hash": "b1356e52c74e9b3b6a0d397b790a4968",
|
|
1053
|
+
"mtime": 1773780260288.3303
|
|
1054
|
+
},
|
|
1055
|
+
"test-projects/salesforce-cli/force-app/main/default/classes/AccountController.cls": {
|
|
1056
|
+
"hash": "f42a5c32b2194cf4c6227503ba00f6fe",
|
|
1057
|
+
"mtime": 1773777904495.204
|
|
1058
|
+
},
|
|
1059
|
+
"test-projects/salesforce-cli/force-app/main/default/classes/OpportunityController.cls": {
|
|
1060
|
+
"hash": "27984b63f77bef40953426e0a6b0c685",
|
|
1061
|
+
"mtime": 1773777913625.33
|
|
1062
|
+
},
|
|
1063
|
+
"test-projects/salesforce-cli/force-app/main/default/triggers/AccountTrigger.trigger": {
|
|
1064
|
+
"hash": "84c54cb056848e844af710a70c5ef243",
|
|
1065
|
+
"mtime": 1773777952108.863
|
|
1066
|
+
},
|
|
1067
|
+
"test-projects/salesforce-cli/sfdx-project.json": {
|
|
1068
|
+
"hash": "d2a50cc298ee84931caa1b54ae8b18ed",
|
|
1069
|
+
"mtime": 1773777895732.083
|
|
1070
|
+
},
|
|
1071
|
+
"tests/adapters.test.ts": {
|
|
1072
|
+
"hash": "dd001e296fb4f6840c55cace91598fe3",
|
|
1073
|
+
"mtime": 1773189127885.884
|
|
1074
|
+
},
|
|
1075
|
+
"tests/e2e/README.md": {
|
|
1076
|
+
"hash": "7f999ef4a2cf0b3aead8e52722a81922",
|
|
1077
|
+
"mtime": 1773777663589.9187
|
|
1078
|
+
},
|
|
1079
|
+
"tests/gitAnalyzer.test.ts": {
|
|
1080
|
+
"hash": "ce622fbb549463aaae743c63a4893b19",
|
|
1081
|
+
"mtime": 1773238789169.5671
|
|
1082
|
+
},
|
|
1083
|
+
"tests/incrementalAnalyzer.test.ts": {
|
|
1084
|
+
"hash": "bc6176d6120da7f2ec3329c9fb6509a7",
|
|
1085
|
+
"mtime": 1773247021660.156
|
|
1086
|
+
},
|
|
1087
|
+
"tests/knowledgeGraph.test.ts": {
|
|
1088
|
+
"hash": "0db7cd99fd3d87f88ca0a39e24a30525",
|
|
1089
|
+
"mtime": 1773244016810.462
|
|
1090
|
+
},
|
|
1091
|
+
"tests/lazyAnalyzer.test.ts": {
|
|
1092
|
+
"hash": "6726ead95b81f122da2bfa47db63964f",
|
|
1093
|
+
"mtime": 1773258331083.3643
|
|
1094
|
+
},
|
|
1095
|
+
"tests/schema.test.ts": {
|
|
1096
|
+
"hash": "0e54cc7b18fdc335a08ad5cd021cc6f7",
|
|
1097
|
+
"mtime": 1773251240586.4749
|
|
1098
|
+
},
|
|
1099
|
+
"tests/semanticContexts.test.ts": {
|
|
1100
|
+
"hash": "52883ed5b704088e58cbbc0c505d2af2",
|
|
1101
|
+
"mtime": 1773780147914.5684
|
|
322
1102
|
},
|
|
323
1103
|
"tsconfig.json": {
|
|
324
1104
|
"hash": "7f7a4bcb349bfbd33e1550e0b02d501b",
|
|
325
1105
|
"mtime": 1773004002782.7
|
|
326
1106
|
}
|
|
327
1107
|
},
|
|
328
|
-
"lastIndexed": "2026-03-
|
|
1108
|
+
"lastIndexed": "2026-03-17T20:59:51.883Z"
|
|
329
1109
|
}
|