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/index-state.json
CHANGED
|
@@ -1,931 +1,1939 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"lastIndexed": "2026-03-
|
|
4
|
-
"totalFiles":
|
|
3
|
+
"lastIndexed": "2026-03-18T01:20:04.749Z",
|
|
4
|
+
"totalFiles": 276,
|
|
5
5
|
"files": {
|
|
6
6
|
".netlify/state.json": {
|
|
7
7
|
"path": ".netlify/state.json",
|
|
8
8
|
"hash": "18a32a19520dc577b2a8faa5a5b24660",
|
|
9
9
|
"mtime": 1773089671614.5596,
|
|
10
10
|
"size": 53,
|
|
11
|
-
"indexedAt": "2026-03-
|
|
11
|
+
"indexedAt": "2026-03-17T19:44:01.302Z"
|
|
12
12
|
},
|
|
13
13
|
"CHANGELOG.md": {
|
|
14
14
|
"path": "CHANGELOG.md",
|
|
15
|
-
"hash": "
|
|
16
|
-
"mtime":
|
|
17
|
-
"size":
|
|
18
|
-
"indexedAt": "2026-03-
|
|
15
|
+
"hash": "bfda5d772a4b3df6b0a306579b25c4cc",
|
|
16
|
+
"mtime": 1773258719942.4172,
|
|
17
|
+
"size": 12579,
|
|
18
|
+
"indexedAt": "2026-03-17T19:44:01.302Z"
|
|
19
19
|
},
|
|
20
20
|
"CONTRIBUTING.md": {
|
|
21
21
|
"path": "CONTRIBUTING.md",
|
|
22
22
|
"hash": "f08bff9a750bbe18e8e2d20a291aea6b",
|
|
23
23
|
"mtime": 1773008956996.6243,
|
|
24
24
|
"size": 1768,
|
|
25
|
-
"indexedAt": "2026-03-
|
|
25
|
+
"indexedAt": "2026-03-17T19:44:01.302Z"
|
|
26
26
|
},
|
|
27
27
|
"FLOW.md": {
|
|
28
28
|
"path": "FLOW.md",
|
|
29
29
|
"hash": "3229cb5aed9575b09415c641ffa24a81",
|
|
30
30
|
"mtime": 1773010195719.8748,
|
|
31
31
|
"size": 8721,
|
|
32
|
-
"indexedAt": "2026-03-
|
|
32
|
+
"indexedAt": "2026-03-17T19:44:01.302Z"
|
|
33
33
|
},
|
|
34
34
|
"README.es.md": {
|
|
35
35
|
"path": "README.es.md",
|
|
36
|
-
"hash": "
|
|
37
|
-
"mtime":
|
|
38
|
-
"size":
|
|
39
|
-
"indexedAt": "2026-03-
|
|
36
|
+
"hash": "01dec2cc8fb7dd7d1a4812f42b193d07",
|
|
37
|
+
"mtime": 1773165384491.799,
|
|
38
|
+
"size": 13051,
|
|
39
|
+
"indexedAt": "2026-03-17T19:44:01.302Z"
|
|
40
40
|
},
|
|
41
41
|
"README.md": {
|
|
42
42
|
"path": "README.md",
|
|
43
|
-
"hash": "
|
|
44
|
-
"mtime":
|
|
45
|
-
"size":
|
|
46
|
-
"indexedAt": "2026-03-
|
|
43
|
+
"hash": "9712f00575eb69d064e44c9ca7f12097",
|
|
44
|
+
"mtime": 1773165282282.2097,
|
|
45
|
+
"size": 14162,
|
|
46
|
+
"indexedAt": "2026-03-17T19:44:01.302Z"
|
|
47
47
|
},
|
|
48
48
|
"ai/ai_context.md": {
|
|
49
49
|
"path": "ai/ai_context.md",
|
|
50
|
-
"hash": "
|
|
51
|
-
"mtime":
|
|
52
|
-
"size":
|
|
53
|
-
"indexedAt": "2026-03-
|
|
50
|
+
"hash": "998c6a6c6e8c5609bb75a171e607ed4e",
|
|
51
|
+
"mtime": 1773793520470.9119,
|
|
52
|
+
"size": 2815,
|
|
53
|
+
"indexedAt": "2026-03-18T01:20:04.719Z"
|
|
54
54
|
},
|
|
55
55
|
"ai/ai_rules.md": {
|
|
56
56
|
"path": "ai/ai_rules.md",
|
|
57
|
-
"hash": "
|
|
58
|
-
"mtime":
|
|
59
|
-
"size":
|
|
60
|
-
"indexedAt": "2026-03-
|
|
57
|
+
"hash": "d59285d1954065b0e17c573a44840486",
|
|
58
|
+
"mtime": 1773793520470.9119,
|
|
59
|
+
"size": 1173,
|
|
60
|
+
"indexedAt": "2026-03-18T01:20:04.719Z"
|
|
61
61
|
},
|
|
62
62
|
"ai/architecture.md": {
|
|
63
63
|
"path": "ai/architecture.md",
|
|
64
|
-
"hash": "
|
|
65
|
-
"mtime":
|
|
66
|
-
"size":
|
|
67
|
-
"indexedAt": "2026-03-
|
|
64
|
+
"hash": "1dd35c6d4a1c6f21e6f3cb086e4d462a",
|
|
65
|
+
"mtime": 1773793520399.9106,
|
|
66
|
+
"size": 2201,
|
|
67
|
+
"indexedAt": "2026-03-18T01:20:04.719Z"
|
|
68
68
|
},
|
|
69
69
|
"ai/cache.json": {
|
|
70
70
|
"path": "ai/cache.json",
|
|
71
|
-
"hash": "
|
|
72
|
-
"mtime":
|
|
73
|
-
"size":
|
|
74
|
-
"indexedAt": "2026-03-
|
|
71
|
+
"hash": "edd388ae4eadb164b8dd655062eeb764",
|
|
72
|
+
"mtime": 1773781191900.677,
|
|
73
|
+
"size": 37708,
|
|
74
|
+
"indexedAt": "2026-03-18T01:20:04.719Z"
|
|
75
|
+
},
|
|
76
|
+
"ai/ccp/jira-123/context.json": {
|
|
77
|
+
"path": "ai/ccp/jira-123/context.json",
|
|
78
|
+
"hash": "60531ec055a219c58dfde8ae0d511c8a",
|
|
79
|
+
"mtime": 1773162450033.8916,
|
|
80
|
+
"size": 96,
|
|
81
|
+
"indexedAt": "2026-03-17T19:44:01.302Z"
|
|
82
|
+
},
|
|
83
|
+
"ai/context/features/commands.json": {
|
|
84
|
+
"path": "ai/context/features/commands.json",
|
|
85
|
+
"hash": "48e3fd06862409e55b7e154a6683071a",
|
|
86
|
+
"mtime": 1773776637189.6062,
|
|
87
|
+
"size": 323,
|
|
88
|
+
"indexedAt": "2026-03-17T19:44:01.302Z"
|
|
89
|
+
},
|
|
90
|
+
"ai/context/flows/ai-first.json": {
|
|
91
|
+
"path": "ai/context/flows/ai-first.json",
|
|
92
|
+
"hash": "b4d823a86d2a718c44fe122f91e74e27",
|
|
93
|
+
"mtime": 1773776637189.6062,
|
|
94
|
+
"size": 1249,
|
|
95
|
+
"indexedAt": "2026-03-17T19:44:01.302Z"
|
|
96
|
+
},
|
|
97
|
+
"ai/context/repo.json": {
|
|
98
|
+
"path": "ai/context/repo.json",
|
|
99
|
+
"hash": "bd1c6fa8dd53ef2812310be1b0fb660c",
|
|
100
|
+
"mtime": 1773162421927.4534,
|
|
101
|
+
"size": 1529,
|
|
102
|
+
"indexedAt": "2026-03-17T19:44:01.302Z"
|
|
103
|
+
},
|
|
104
|
+
"ai/context/utils.json": {
|
|
105
|
+
"path": "ai/context/utils.json",
|
|
106
|
+
"hash": "1e24ba3674bfffeb902de264f3bfe104",
|
|
107
|
+
"mtime": 1773162421927.4534,
|
|
108
|
+
"size": 121,
|
|
109
|
+
"indexedAt": "2026-03-17T19:44:01.302Z"
|
|
75
110
|
},
|
|
76
111
|
"ai/conventions.md": {
|
|
77
112
|
"path": "ai/conventions.md",
|
|
78
|
-
"hash": "
|
|
79
|
-
"mtime":
|
|
80
|
-
"size":
|
|
81
|
-
"indexedAt": "2026-03-
|
|
113
|
+
"hash": "3dfe3926ca897908529e645c31176604",
|
|
114
|
+
"mtime": 1773793520403.9106,
|
|
115
|
+
"size": 850,
|
|
116
|
+
"indexedAt": "2026-03-18T01:20:04.719Z"
|
|
82
117
|
},
|
|
83
118
|
"ai/dependencies.json": {
|
|
84
119
|
"path": "ai/dependencies.json",
|
|
85
|
-
"hash": "
|
|
86
|
-
"mtime":
|
|
87
|
-
"size":
|
|
88
|
-
"indexedAt": "2026-03-
|
|
120
|
+
"hash": "88ac15aa885e119b1242234162fe25f0",
|
|
121
|
+
"mtime": 1773796804695.2522,
|
|
122
|
+
"size": 16123,
|
|
123
|
+
"indexedAt": "2026-03-18T01:20:04.720Z"
|
|
89
124
|
},
|
|
90
125
|
"ai/embeddings.json": {
|
|
91
126
|
"path": "ai/embeddings.json",
|
|
92
127
|
"hash": "26a10d77ee69ae123cc71fee255587c7",
|
|
93
128
|
"mtime": 1773074029679.9358,
|
|
94
129
|
"size": 706073,
|
|
95
|
-
"indexedAt": "2026-03-
|
|
130
|
+
"indexedAt": "2026-03-17T19:44:01.303Z"
|
|
96
131
|
},
|
|
97
132
|
"ai/entrypoints.md": {
|
|
98
133
|
"path": "ai/entrypoints.md",
|
|
99
|
-
"hash": "
|
|
100
|
-
"mtime":
|
|
101
|
-
"size":
|
|
102
|
-
"indexedAt": "2026-03-
|
|
134
|
+
"hash": "ec0759563a5d2f2d9351ee65013fbde8",
|
|
135
|
+
"mtime": 1773793520401.9106,
|
|
136
|
+
"size": 1068,
|
|
137
|
+
"indexedAt": "2026-03-18T01:20:04.720Z"
|
|
103
138
|
},
|
|
104
139
|
"ai/files.json": {
|
|
105
140
|
"path": "ai/files.json",
|
|
106
|
-
"hash": "
|
|
107
|
-
"mtime":
|
|
108
|
-
"size":
|
|
109
|
-
"indexedAt": "2026-03-
|
|
141
|
+
"hash": "7ae38f6900d93dd30c887a21bdd97cd1",
|
|
142
|
+
"mtime": 1773781191882.6768,
|
|
143
|
+
"size": 84862,
|
|
144
|
+
"indexedAt": "2026-03-18T01:20:04.720Z"
|
|
145
|
+
},
|
|
146
|
+
"ai/git/commit-activity.json": {
|
|
147
|
+
"path": "ai/git/commit-activity.json",
|
|
148
|
+
"hash": "eac589303e103dc160c2f12323d741a1",
|
|
149
|
+
"mtime": 1773776683842.3357,
|
|
150
|
+
"size": 556821,
|
|
151
|
+
"indexedAt": "2026-03-18T01:20:04.721Z"
|
|
152
|
+
},
|
|
153
|
+
"ai/git/recent-features.json": {
|
|
154
|
+
"path": "ai/git/recent-features.json",
|
|
155
|
+
"hash": "c78860b904cd2b24632331e98bf01292",
|
|
156
|
+
"mtime": 1773776683839.3357,
|
|
157
|
+
"size": 16,
|
|
158
|
+
"indexedAt": "2026-03-18T01:20:04.721Z"
|
|
159
|
+
},
|
|
160
|
+
"ai/git/recent-files.json": {
|
|
161
|
+
"path": "ai/git/recent-files.json",
|
|
162
|
+
"hash": "8092070952d10808a13f82ac1181ce89",
|
|
163
|
+
"mtime": 1773776683839.3357,
|
|
164
|
+
"size": 1624,
|
|
165
|
+
"indexedAt": "2026-03-18T01:20:04.721Z"
|
|
166
|
+
},
|
|
167
|
+
"ai/git/recent-flows.json": {
|
|
168
|
+
"path": "ai/git/recent-flows.json",
|
|
169
|
+
"hash": "f0686689f31e56ed244c82fd45627f3c",
|
|
170
|
+
"mtime": 1773776683839.3357,
|
|
171
|
+
"size": 16,
|
|
172
|
+
"indexedAt": "2026-03-18T01:20:04.721Z"
|
|
173
|
+
},
|
|
174
|
+
"ai/graph/knowledge-graph.json": {
|
|
175
|
+
"path": "ai/graph/knowledge-graph.json",
|
|
176
|
+
"hash": "c8373622c33d7fb48034990021cc388d",
|
|
177
|
+
"mtime": 1773796804716.2524,
|
|
178
|
+
"size": 1629300,
|
|
179
|
+
"indexedAt": "2026-03-18T01:20:04.723Z"
|
|
110
180
|
},
|
|
111
181
|
"ai/graph/module-graph.json": {
|
|
112
182
|
"path": "ai/graph/module-graph.json",
|
|
113
|
-
"hash": "
|
|
114
|
-
"mtime":
|
|
115
|
-
"size":
|
|
116
|
-
"indexedAt": "2026-03-
|
|
183
|
+
"hash": "ba7af2fd760ab8081a38e9a88c6fc2ee",
|
|
184
|
+
"mtime": 1773781191711.6743,
|
|
185
|
+
"size": 14074,
|
|
186
|
+
"indexedAt": "2026-03-18T01:20:04.723Z"
|
|
117
187
|
},
|
|
118
188
|
"ai/graph/symbol-graph.json": {
|
|
119
189
|
"path": "ai/graph/symbol-graph.json",
|
|
120
|
-
"hash": "
|
|
121
|
-
"mtime":
|
|
122
|
-
"size":
|
|
123
|
-
"indexedAt": "2026-03-
|
|
190
|
+
"hash": "5955bcd05c991fbf2d345ae0e7dcd115",
|
|
191
|
+
"mtime": 1773781191872.6765,
|
|
192
|
+
"size": 2533243,
|
|
193
|
+
"indexedAt": "2026-03-18T01:20:04.726Z"
|
|
124
194
|
},
|
|
125
195
|
"ai/graph/symbol-references.json": {
|
|
126
196
|
"path": "ai/graph/symbol-references.json",
|
|
127
|
-
"hash": "
|
|
128
|
-
"mtime":
|
|
129
|
-
"size":
|
|
130
|
-
"indexedAt": "2026-03-
|
|
197
|
+
"hash": "dc531636cb2ededf6cb6df68be85c023",
|
|
198
|
+
"mtime": 1773781191881.6765,
|
|
199
|
+
"size": 110767,
|
|
200
|
+
"indexedAt": "2026-03-18T01:20:04.727Z"
|
|
131
201
|
},
|
|
132
202
|
"ai/hierarchy.json": {
|
|
133
203
|
"path": "ai/hierarchy.json",
|
|
134
|
-
"hash": "
|
|
135
|
-
"mtime":
|
|
136
|
-
"size":
|
|
137
|
-
"indexedAt": "2026-03-
|
|
204
|
+
"hash": "d45c141cd559a955640ffd04fa5404a2",
|
|
205
|
+
"mtime": 1773796015512.866,
|
|
206
|
+
"size": 97,
|
|
207
|
+
"indexedAt": "2026-03-18T01:20:04.727Z"
|
|
138
208
|
},
|
|
139
209
|
"ai/index-state.json": {
|
|
140
210
|
"path": "ai/index-state.json",
|
|
141
|
-
"hash": "
|
|
142
|
-
"mtime":
|
|
143
|
-
"size":
|
|
144
|
-
"indexedAt": "2026-03-
|
|
211
|
+
"hash": "58a4c0d15a6343cbd5daa56bbadacc6a",
|
|
212
|
+
"mtime": 1773791491266.7134,
|
|
213
|
+
"size": 61132,
|
|
214
|
+
"indexedAt": "2026-03-18T01:20:04.727Z"
|
|
145
215
|
},
|
|
146
216
|
"ai/modules.json": {
|
|
147
217
|
"path": "ai/modules.json",
|
|
148
|
-
"hash": "
|
|
149
|
-
"mtime":
|
|
150
|
-
"size":
|
|
151
|
-
"indexedAt": "2026-03-
|
|
218
|
+
"hash": "1ca93125db67f42b8adf1cd23edac1d1",
|
|
219
|
+
"mtime": 1773793520471.9119,
|
|
220
|
+
"size": 14149,
|
|
221
|
+
"indexedAt": "2026-03-18T01:20:04.727Z"
|
|
222
|
+
},
|
|
223
|
+
"ai/project.json": {
|
|
224
|
+
"path": "ai/project.json",
|
|
225
|
+
"hash": "f72acd67063fd555291f258ba03e993a",
|
|
226
|
+
"mtime": 1773776131008.525,
|
|
227
|
+
"size": 188,
|
|
228
|
+
"indexedAt": "2026-03-17T19:44:01.312Z"
|
|
229
|
+
},
|
|
230
|
+
"ai/repo-map.json": {
|
|
231
|
+
"path": "ai/repo-map.json",
|
|
232
|
+
"hash": "21445ead2210d8352f43f8a6333907e1",
|
|
233
|
+
"mtime": 1773781191666.6738,
|
|
234
|
+
"size": 76175,
|
|
235
|
+
"indexedAt": "2026-03-18T01:20:04.727Z"
|
|
152
236
|
},
|
|
153
237
|
"ai/repo_map.json": {
|
|
154
238
|
"path": "ai/repo_map.json",
|
|
155
|
-
"hash": "
|
|
156
|
-
"mtime":
|
|
157
|
-
"size":
|
|
158
|
-
"indexedAt": "2026-03-
|
|
239
|
+
"hash": "3bac0a481583c80af5df0afcca16587d",
|
|
240
|
+
"mtime": 1773793520397.9106,
|
|
241
|
+
"size": 89407,
|
|
242
|
+
"indexedAt": "2026-03-18T01:20:04.727Z"
|
|
159
243
|
},
|
|
160
244
|
"ai/repo_map.md": {
|
|
161
245
|
"path": "ai/repo_map.md",
|
|
162
|
-
"hash": "
|
|
163
|
-
"mtime":
|
|
164
|
-
"size":
|
|
165
|
-
"indexedAt": "2026-03-
|
|
246
|
+
"hash": "b3b76cb31d88c24428904068737ffba1",
|
|
247
|
+
"mtime": 1773793520395.9106,
|
|
248
|
+
"size": 22069,
|
|
249
|
+
"indexedAt": "2026-03-18T01:20:04.727Z"
|
|
250
|
+
},
|
|
251
|
+
"ai/schema.json": {
|
|
252
|
+
"path": "ai/schema.json",
|
|
253
|
+
"hash": "d40fb05a62df8c879343738f0532f3ee",
|
|
254
|
+
"mtime": 1773776131007.525,
|
|
255
|
+
"size": 102,
|
|
256
|
+
"indexedAt": "2026-03-17T19:44:01.312Z"
|
|
166
257
|
},
|
|
167
258
|
"ai/summary.md": {
|
|
168
259
|
"path": "ai/summary.md",
|
|
169
|
-
"hash": "
|
|
170
|
-
"mtime":
|
|
171
|
-
"size":
|
|
172
|
-
"indexedAt": "2026-03-
|
|
260
|
+
"hash": "14dd8d143f05300636caa6102574bd8b",
|
|
261
|
+
"mtime": 1773793520397.9106,
|
|
262
|
+
"size": 506,
|
|
263
|
+
"indexedAt": "2026-03-18T01:20:04.727Z"
|
|
173
264
|
},
|
|
174
265
|
"ai/symbols.json": {
|
|
175
266
|
"path": "ai/symbols.json",
|
|
176
267
|
"hash": "d751713988987e9331980363e24189ce",
|
|
177
|
-
"mtime":
|
|
268
|
+
"mtime": 1773796804694.252,
|
|
178
269
|
"size": 2,
|
|
179
|
-
"indexedAt": "2026-03-
|
|
270
|
+
"indexedAt": "2026-03-18T01:20:04.727Z"
|
|
180
271
|
},
|
|
181
272
|
"ai/tech_stack.md": {
|
|
182
273
|
"path": "ai/tech_stack.md",
|
|
183
|
-
"hash": "
|
|
184
|
-
"mtime":
|
|
185
|
-
"size":
|
|
186
|
-
"indexedAt": "2026-03-
|
|
274
|
+
"hash": "179d076ad74ab36e20a79af75f8cd26e",
|
|
275
|
+
"mtime": 1773793520401.9106,
|
|
276
|
+
"size": 535,
|
|
277
|
+
"indexedAt": "2026-03-18T01:20:04.728Z"
|
|
278
|
+
},
|
|
279
|
+
"ai/tools.json": {
|
|
280
|
+
"path": "ai/tools.json",
|
|
281
|
+
"hash": "b1356e52c74e9b3b6a0d397b790a4968",
|
|
282
|
+
"mtime": 1773776131008.525,
|
|
283
|
+
"size": 138,
|
|
284
|
+
"indexedAt": "2026-03-17T19:44:01.312Z"
|
|
187
285
|
},
|
|
188
286
|
"docs/.vitepress/config.ts": {
|
|
189
287
|
"path": "docs/.vitepress/config.ts",
|
|
190
288
|
"hash": "6c53efc8669f87bc9040096b96847be3",
|
|
191
289
|
"mtime": 1773090332406.6528,
|
|
192
290
|
"size": 3219,
|
|
193
|
-
"indexedAt": "2026-03-
|
|
291
|
+
"indexedAt": "2026-03-17T19:44:01.312Z"
|
|
194
292
|
},
|
|
195
293
|
"docs/.vitepress/theme/custom.css": {
|
|
196
294
|
"path": "docs/.vitepress/theme/custom.css",
|
|
197
295
|
"hash": "924287015c3c64819e66cdfc0f24fa46",
|
|
198
296
|
"mtime": 1773076171344.3733,
|
|
199
297
|
"size": 4021,
|
|
200
|
-
"indexedAt": "2026-03-
|
|
298
|
+
"indexedAt": "2026-03-17T19:44:01.312Z"
|
|
201
299
|
},
|
|
202
300
|
"docs/.vitepress/theme/index.ts": {
|
|
203
301
|
"path": "docs/.vitepress/theme/index.ts",
|
|
204
302
|
"hash": "a9a72e0000dd7687fd2d899d79e4aee0",
|
|
205
303
|
"mtime": 1773076127580.8638,
|
|
206
304
|
"size": 182,
|
|
207
|
-
"indexedAt": "2026-03-
|
|
305
|
+
"indexedAt": "2026-03-17T19:44:01.312Z"
|
|
306
|
+
},
|
|
307
|
+
"docs/es/guide/adapters.md": {
|
|
308
|
+
"path": "docs/es/guide/adapters.md",
|
|
309
|
+
"hash": "a593b919a72920866a143d68d3f6114a",
|
|
310
|
+
"mtime": 1773184836139.1023,
|
|
311
|
+
"size": 3853,
|
|
312
|
+
"indexedAt": "2026-03-17T19:44:01.312Z"
|
|
313
|
+
},
|
|
314
|
+
"docs/es/guide/ai-repository-schema.md": {
|
|
315
|
+
"path": "docs/es/guide/ai-repository-schema.md",
|
|
316
|
+
"hash": "36634728939ebe93bd4f47ebcbeee945",
|
|
317
|
+
"mtime": 1773251866778.0652,
|
|
318
|
+
"size": 3030,
|
|
319
|
+
"indexedAt": "2026-03-17T19:44:01.312Z"
|
|
320
|
+
},
|
|
321
|
+
"docs/es/guide/features.md": {
|
|
322
|
+
"path": "docs/es/guide/features.md",
|
|
323
|
+
"hash": "0b8d521e9b1156336091a441b64518f0",
|
|
324
|
+
"mtime": 1773178691579.252,
|
|
325
|
+
"size": 1785,
|
|
326
|
+
"indexedAt": "2026-03-17T19:44:01.312Z"
|
|
327
|
+
},
|
|
328
|
+
"docs/es/guide/flows.md": {
|
|
329
|
+
"path": "docs/es/guide/flows.md",
|
|
330
|
+
"hash": "00cd75411f18ab0c21c0b1d110b14064",
|
|
331
|
+
"mtime": 1773178392796.509,
|
|
332
|
+
"size": 3671,
|
|
333
|
+
"indexedAt": "2026-03-17T19:44:01.312Z"
|
|
208
334
|
},
|
|
209
335
|
"docs/es/guide/getting-started.md": {
|
|
210
336
|
"path": "docs/es/guide/getting-started.md",
|
|
211
337
|
"hash": "c446f6957beff061b7b41b0ccef510e2",
|
|
212
338
|
"mtime": 1773090370625.2866,
|
|
213
339
|
"size": 619,
|
|
214
|
-
"indexedAt": "2026-03-
|
|
340
|
+
"indexedAt": "2026-03-17T19:44:01.312Z"
|
|
341
|
+
},
|
|
342
|
+
"docs/es/guide/git-intelligence.md": {
|
|
343
|
+
"path": "docs/es/guide/git-intelligence.md",
|
|
344
|
+
"hash": "e47e2199964d144cb4e841a0c7a8b881",
|
|
345
|
+
"mtime": 1773238994485.4612,
|
|
346
|
+
"size": 4390,
|
|
347
|
+
"indexedAt": "2026-03-17T19:44:01.312Z"
|
|
348
|
+
},
|
|
349
|
+
"docs/es/guide/incremental-analysis.md": {
|
|
350
|
+
"path": "docs/es/guide/incremental-analysis.md",
|
|
351
|
+
"hash": "526453da195d833ad614c9a32585e3f3",
|
|
352
|
+
"mtime": 1773247246616.0706,
|
|
353
|
+
"size": 3419,
|
|
354
|
+
"indexedAt": "2026-03-17T19:44:01.312Z"
|
|
355
|
+
},
|
|
356
|
+
"docs/es/guide/knowledge-graph.md": {
|
|
357
|
+
"path": "docs/es/guide/knowledge-graph.md",
|
|
358
|
+
"hash": "a4deda34b2f4f587858127a7299c5e0b",
|
|
359
|
+
"mtime": 1773244257027.961,
|
|
360
|
+
"size": 3593,
|
|
361
|
+
"indexedAt": "2026-03-17T19:44:01.312Z"
|
|
362
|
+
},
|
|
363
|
+
"docs/es/guide/lazy-indexing.md": {
|
|
364
|
+
"path": "docs/es/guide/lazy-indexing.md",
|
|
365
|
+
"hash": "50862945713d450e7ca2401e62ce3e66",
|
|
366
|
+
"mtime": 1773258482771.7268,
|
|
367
|
+
"size": 3918,
|
|
368
|
+
"indexedAt": "2026-03-17T19:44:01.312Z"
|
|
369
|
+
},
|
|
370
|
+
"docs/es/guide/performance.md": {
|
|
371
|
+
"path": "docs/es/guide/performance.md",
|
|
372
|
+
"hash": "624e29f574a1bc47347754e918476dcc",
|
|
373
|
+
"mtime": 1773181129397.9136,
|
|
374
|
+
"size": 3199,
|
|
375
|
+
"indexedAt": "2026-03-17T19:44:01.312Z"
|
|
215
376
|
},
|
|
216
377
|
"docs/es/index.md": {
|
|
217
378
|
"path": "docs/es/index.md",
|
|
218
379
|
"hash": "920ea9e39b01a04495d68306c26d2fe9",
|
|
219
380
|
"mtime": 1773090256493.4934,
|
|
220
381
|
"size": 3121,
|
|
221
|
-
"indexedAt": "2026-03-
|
|
382
|
+
"indexedAt": "2026-03-17T19:44:01.312Z"
|
|
222
383
|
},
|
|
223
384
|
"docs/examples/express-api.md": {
|
|
224
385
|
"path": "docs/examples/express-api.md",
|
|
225
386
|
"hash": "54af0d58910939c041d98437a73cf231",
|
|
226
387
|
"mtime": 1773076482605.2854,
|
|
227
388
|
"size": 2665,
|
|
228
|
-
"indexedAt": "2026-03-
|
|
389
|
+
"indexedAt": "2026-03-17T19:44:01.312Z"
|
|
229
390
|
},
|
|
230
391
|
"docs/examples/index.md": {
|
|
231
392
|
"path": "docs/examples/index.md",
|
|
232
393
|
"hash": "67f774e8e8b170d44b51cfcfff9ecdd7",
|
|
233
394
|
"mtime": 1773076421849.489,
|
|
234
395
|
"size": 738,
|
|
235
|
-
"indexedAt": "2026-03-
|
|
396
|
+
"indexedAt": "2026-03-17T19:44:01.312Z"
|
|
236
397
|
},
|
|
237
398
|
"docs/examples/python-django.md": {
|
|
238
399
|
"path": "docs/examples/python-django.md",
|
|
239
400
|
"hash": "a57217d9a4a0eba7e6750caf75b86aae",
|
|
240
401
|
"mtime": 1773076518221.758,
|
|
241
402
|
"size": 1926,
|
|
242
|
-
"indexedAt": "2026-03-
|
|
403
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
243
404
|
},
|
|
244
405
|
"docs/examples/react-app.md": {
|
|
245
406
|
"path": "docs/examples/react-app.md",
|
|
246
407
|
"hash": "c3ae0d56ab0de03f6957a2c3685e2a10",
|
|
247
408
|
"mtime": 1773076494650.4448,
|
|
248
409
|
"size": 2305,
|
|
249
|
-
"indexedAt": "2026-03-
|
|
410
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
411
|
+
},
|
|
412
|
+
"docs/guide/adapters.md": {
|
|
413
|
+
"path": "docs/guide/adapters.md",
|
|
414
|
+
"hash": "54aff0280eef4b341723d9fe1f4936a1",
|
|
415
|
+
"mtime": 1773194224066.7905,
|
|
416
|
+
"size": 6006,
|
|
417
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
418
|
+
},
|
|
419
|
+
"docs/guide/ai-repository-schema.md": {
|
|
420
|
+
"path": "docs/guide/ai-repository-schema.md",
|
|
421
|
+
"hash": "b953a4c87754d0ac445df26967444891",
|
|
422
|
+
"mtime": 1773251800916.9807,
|
|
423
|
+
"size": 2757,
|
|
424
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
250
425
|
},
|
|
251
426
|
"docs/guide/architecture.md": {
|
|
252
427
|
"path": "docs/guide/architecture.md",
|
|
253
|
-
"hash": "
|
|
254
|
-
"mtime":
|
|
255
|
-
"size":
|
|
256
|
-
"indexedAt": "2026-03-
|
|
428
|
+
"hash": "a73bf154ed909b4d0157e0f8f37a97aa",
|
|
429
|
+
"mtime": 1773176294334.256,
|
|
430
|
+
"size": 12576,
|
|
431
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
432
|
+
},
|
|
433
|
+
"docs/guide/flows.md": {
|
|
434
|
+
"path": "docs/guide/flows.md",
|
|
435
|
+
"hash": "58dc503bbdf067153ba4a0b04a8c56f0",
|
|
436
|
+
"mtime": 1773176979656.7134,
|
|
437
|
+
"size": 3165,
|
|
438
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
257
439
|
},
|
|
258
440
|
"docs/guide/getting-started.md": {
|
|
259
441
|
"path": "docs/guide/getting-started.md",
|
|
260
442
|
"hash": "b783c85c32dc67ffa2133915b5cd93fb",
|
|
261
443
|
"mtime": 1773076199524.7075,
|
|
262
444
|
"size": 2315,
|
|
263
|
-
"indexedAt": "2026-03-
|
|
445
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
446
|
+
},
|
|
447
|
+
"docs/guide/git-intelligence.md": {
|
|
448
|
+
"path": "docs/guide/git-intelligence.md",
|
|
449
|
+
"hash": "2e6f8fc3e8efba54d92eea8cc631c19e",
|
|
450
|
+
"mtime": 1773238937863.8408,
|
|
451
|
+
"size": 4071,
|
|
452
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
453
|
+
},
|
|
454
|
+
"docs/guide/incremental-analysis.md": {
|
|
455
|
+
"path": "docs/guide/incremental-analysis.md",
|
|
456
|
+
"hash": "d4293f8de2ca740e2736c282f8b1514b",
|
|
457
|
+
"mtime": 1773247186818.0437,
|
|
458
|
+
"size": 3138,
|
|
459
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
264
460
|
},
|
|
265
461
|
"docs/guide/installation.md": {
|
|
266
462
|
"path": "docs/guide/installation.md",
|
|
267
463
|
"hash": "7926dceb824c696ff79bc357aee27580",
|
|
268
464
|
"mtime": 1773076224028.002,
|
|
269
465
|
"size": 1276,
|
|
270
|
-
"indexedAt": "2026-03-
|
|
466
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
467
|
+
},
|
|
468
|
+
"docs/guide/knowledge-graph.md": {
|
|
469
|
+
"path": "docs/guide/knowledge-graph.md",
|
|
470
|
+
"hash": "3c00be517112f0fb1e865cedd2ec5a81",
|
|
471
|
+
"mtime": 1773244190994.9873,
|
|
472
|
+
"size": 3408,
|
|
473
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
474
|
+
},
|
|
475
|
+
"docs/guide/lazy-indexing.md": {
|
|
476
|
+
"path": "docs/guide/lazy-indexing.md",
|
|
477
|
+
"hash": "29c43fc104003e8819e731e45f7c640d",
|
|
478
|
+
"mtime": 1773258407656.5571,
|
|
479
|
+
"size": 3491,
|
|
480
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
481
|
+
},
|
|
482
|
+
"docs/guide/performance.md": {
|
|
483
|
+
"path": "docs/guide/performance.md",
|
|
484
|
+
"hash": "a2a5434f93591785a72e202ff700467f",
|
|
485
|
+
"mtime": 1773181094035.3489,
|
|
486
|
+
"size": 2783,
|
|
487
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
271
488
|
},
|
|
272
489
|
"docs/guide/quick-start.md": {
|
|
273
490
|
"path": "docs/guide/quick-start.md",
|
|
274
491
|
"hash": "dfa4c6196895c98b84845c138182dae6",
|
|
275
492
|
"mtime": 1773076244371.249,
|
|
276
493
|
"size": 1732,
|
|
277
|
-
"indexedAt": "2026-03-
|
|
494
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
278
495
|
},
|
|
279
496
|
"docs/index.md": {
|
|
280
497
|
"path": "docs/index.md",
|
|
281
498
|
"hash": "9032437ec565b4935df406022143d2ae",
|
|
282
499
|
"mtime": 1773089168385.8672,
|
|
283
500
|
"size": 3163,
|
|
284
|
-
"indexedAt": "2026-03-
|
|
501
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
285
502
|
},
|
|
286
503
|
"docs/reference/commands.md": {
|
|
287
504
|
"path": "docs/reference/commands.md",
|
|
288
505
|
"hash": "f9b509d9a44a4a8ffebc433d4adb07c5",
|
|
289
506
|
"mtime": 1773095909341.2031,
|
|
290
507
|
"size": 3817,
|
|
291
|
-
"indexedAt": "2026-03-
|
|
508
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
292
509
|
},
|
|
293
510
|
"examples/01-express-api.md": {
|
|
294
511
|
"path": "examples/01-express-api.md",
|
|
295
512
|
"hash": "54af0d58910939c041d98437a73cf231",
|
|
296
513
|
"mtime": 1773014837445.3228,
|
|
297
514
|
"size": 2665,
|
|
298
|
-
"indexedAt": "2026-03-
|
|
515
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
299
516
|
},
|
|
300
517
|
"examples/02-react-app.md": {
|
|
301
518
|
"path": "examples/02-react-app.md",
|
|
302
519
|
"hash": "2f1948bf3765228b37697f9f48d37b79",
|
|
303
520
|
"mtime": 1773014866555.722,
|
|
304
521
|
"size": 2702,
|
|
305
|
-
"indexedAt": "2026-03-
|
|
522
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
306
523
|
},
|
|
307
524
|
"examples/03-python-django.md": {
|
|
308
525
|
"path": "examples/03-python-django.md",
|
|
309
526
|
"hash": "fccd23e390a3d29d7d0d5d34a14d8cf3",
|
|
310
527
|
"mtime": 1773014902647.2178,
|
|
311
528
|
"size": 2947,
|
|
312
|
-
"indexedAt": "2026-03-
|
|
529
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
313
530
|
},
|
|
314
531
|
"examples/README.md": {
|
|
315
532
|
"path": "examples/README.md",
|
|
316
533
|
"hash": "4e8a85046bacda16352b5dff84e3ffe4",
|
|
317
534
|
"mtime": 1773014931866.6204,
|
|
318
535
|
"size": 1660,
|
|
319
|
-
"indexedAt": "2026-03-
|
|
536
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
320
537
|
},
|
|
321
538
|
"package-lock.json": {
|
|
322
539
|
"path": "package-lock.json",
|
|
323
540
|
"hash": "52220838924486c8aa10ed329be1adf5",
|
|
324
541
|
"mtime": 1773083490249.47,
|
|
325
542
|
"size": 126683,
|
|
326
|
-
"indexedAt": "2026-03-
|
|
543
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
327
544
|
},
|
|
328
545
|
"package.json": {
|
|
329
546
|
"path": "package.json",
|
|
330
|
-
"hash": "
|
|
331
|
-
"mtime":
|
|
547
|
+
"hash": "a546a5bbbc0bb05fa0f59b7a8928c09b",
|
|
548
|
+
"mtime": 1773791422071.7427,
|
|
332
549
|
"size": 1538,
|
|
333
|
-
"indexedAt": "2026-03-
|
|
550
|
+
"indexedAt": "2026-03-17T23:51:31.264Z"
|
|
334
551
|
},
|
|
335
552
|
"src/analyzers/aiRules.ts": {
|
|
336
553
|
"path": "src/analyzers/aiRules.ts",
|
|
337
554
|
"hash": "3213f98ebd24246dd24b2c39f696bd14",
|
|
338
555
|
"mtime": 1773009335276.8303,
|
|
339
556
|
"size": 4961,
|
|
340
|
-
"indexedAt": "2026-03-
|
|
557
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
341
558
|
},
|
|
342
559
|
"src/analyzers/androidResources.ts": {
|
|
343
560
|
"path": "src/analyzers/androidResources.ts",
|
|
344
561
|
"hash": "d260211a62c187920db680c232367505",
|
|
345
562
|
"mtime": 1773153784923.4502,
|
|
346
563
|
"size": 3203,
|
|
347
|
-
"indexedAt": "2026-03-
|
|
564
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
348
565
|
},
|
|
349
566
|
"src/analyzers/architecture.ts": {
|
|
350
567
|
"path": "src/analyzers/architecture.ts",
|
|
351
568
|
"hash": "263e2e84afa0800cd4e95820f7d5aacb",
|
|
352
569
|
"mtime": 1773007837808.1536,
|
|
353
570
|
"size": 9551,
|
|
354
|
-
"indexedAt": "2026-03-
|
|
571
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
355
572
|
},
|
|
356
573
|
"src/analyzers/conventions.ts": {
|
|
357
574
|
"path": "src/analyzers/conventions.ts",
|
|
358
575
|
"hash": "887a991db6e0b9d658046b81cbe719b6",
|
|
359
576
|
"mtime": 1773008352611.8462,
|
|
360
577
|
"size": 7412,
|
|
361
|
-
"indexedAt": "2026-03-
|
|
578
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
362
579
|
},
|
|
363
580
|
"src/analyzers/dependencies.ts": {
|
|
364
581
|
"path": "src/analyzers/dependencies.ts",
|
|
365
|
-
"hash": "
|
|
366
|
-
"mtime":
|
|
367
|
-
"size":
|
|
368
|
-
"indexedAt": "2026-03-
|
|
582
|
+
"hash": "ea3827141d1e8903df1b2a5399b1a5e4",
|
|
583
|
+
"mtime": 1773784064247.5059,
|
|
584
|
+
"size": 9142,
|
|
585
|
+
"indexedAt": "2026-03-17T21:51:06.625Z"
|
|
369
586
|
},
|
|
370
587
|
"src/analyzers/entrypoints.ts": {
|
|
371
588
|
"path": "src/analyzers/entrypoints.ts",
|
|
372
589
|
"hash": "c4a26db8302561ab46319ed6ba9019be",
|
|
373
590
|
"mtime": 1773153667235.145,
|
|
374
591
|
"size": 6659,
|
|
375
|
-
"indexedAt": "2026-03-
|
|
592
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
376
593
|
},
|
|
377
594
|
"src/analyzers/gradleModules.ts": {
|
|
378
595
|
"path": "src/analyzers/gradleModules.ts",
|
|
379
596
|
"hash": "fd4d77c29f554bf967e2ce4a05574497",
|
|
380
597
|
"mtime": 1773153804000.0356,
|
|
381
598
|
"size": 2761,
|
|
382
|
-
"indexedAt": "2026-03-
|
|
599
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
383
600
|
},
|
|
384
601
|
"src/analyzers/symbols.ts": {
|
|
385
602
|
"path": "src/analyzers/symbols.ts",
|
|
386
603
|
"hash": "47b731c0e9bd4757b6aab646de5249ed",
|
|
387
604
|
"mtime": 1773095734207.4124,
|
|
388
605
|
"size": 10850,
|
|
389
|
-
"indexedAt": "2026-03-
|
|
606
|
+
"indexedAt": "2026-03-17T19:44:01.313Z"
|
|
390
607
|
},
|
|
391
608
|
"src/analyzers/techStack.ts": {
|
|
392
609
|
"path": "src/analyzers/techStack.ts",
|
|
393
610
|
"hash": "64ef322c5475e2b0ef1d95eab41b6b4c",
|
|
394
611
|
"mtime": 1773153400053.8142,
|
|
395
612
|
"size": 13336,
|
|
396
|
-
"indexedAt": "2026-03-
|
|
613
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
397
614
|
},
|
|
398
615
|
"src/commands/ai-first.ts": {
|
|
399
616
|
"path": "src/commands/ai-first.ts",
|
|
400
|
-
"hash": "
|
|
401
|
-
"mtime":
|
|
402
|
-
"size":
|
|
403
|
-
"indexedAt": "2026-03-
|
|
617
|
+
"hash": "744534a7d07aa4d8ae0f96b100eb980a",
|
|
618
|
+
"mtime": 1773781526151.2285,
|
|
619
|
+
"size": 51200,
|
|
620
|
+
"indexedAt": "2026-03-17T21:51:06.625Z"
|
|
404
621
|
},
|
|
405
622
|
"src/commands/doctor.ts": {
|
|
406
623
|
"path": "src/commands/doctor.ts",
|
|
407
624
|
"hash": "bf877242c2777a92c2c13c6f20952d63",
|
|
408
625
|
"mtime": 1773072336100.912,
|
|
409
626
|
"size": 3599,
|
|
410
|
-
"indexedAt": "2026-03-
|
|
627
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
411
628
|
},
|
|
412
629
|
"src/commands/explore.ts": {
|
|
413
630
|
"path": "src/commands/explore.ts",
|
|
414
631
|
"hash": "684e64267e90e13ff9ae7a7a87deaa5d",
|
|
415
632
|
"mtime": 1773071610359.5925,
|
|
416
633
|
"size": 2787,
|
|
417
|
-
"indexedAt": "2026-03-
|
|
634
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
635
|
+
},
|
|
636
|
+
"src/core/adapters/adapterRegistry.ts": {
|
|
637
|
+
"path": "src/core/adapters/adapterRegistry.ts",
|
|
638
|
+
"hash": "9c82d3399bf134c40c4d0d8239252813",
|
|
639
|
+
"mtime": 1773194865986.006,
|
|
640
|
+
"size": 4746,
|
|
641
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
642
|
+
},
|
|
643
|
+
"src/core/adapters/baseAdapter.ts": {
|
|
644
|
+
"path": "src/core/adapters/baseAdapter.ts",
|
|
645
|
+
"hash": "5f64bb1c62d32109898a576b1a11fc84",
|
|
646
|
+
"mtime": 1773183006248.3667,
|
|
647
|
+
"size": 2706,
|
|
648
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
649
|
+
},
|
|
650
|
+
"src/core/adapters/community/fastapiAdapter.ts": {
|
|
651
|
+
"path": "src/core/adapters/community/fastapiAdapter.ts",
|
|
652
|
+
"hash": "1d6e19ee052f97e3edeaf100199a4f6e",
|
|
653
|
+
"mtime": 1773195157323.2893,
|
|
654
|
+
"size": 1227,
|
|
655
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
656
|
+
},
|
|
657
|
+
"src/core/adapters/community/index.ts": {
|
|
658
|
+
"path": "src/core/adapters/community/index.ts",
|
|
659
|
+
"hash": "869811b9969b694a69da22a0acf65062",
|
|
660
|
+
"mtime": 1773185647607.2932,
|
|
661
|
+
"size": 366,
|
|
662
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
663
|
+
},
|
|
664
|
+
"src/core/adapters/community/laravelAdapter.ts": {
|
|
665
|
+
"path": "src/core/adapters/community/laravelAdapter.ts",
|
|
666
|
+
"hash": "783b2d3973cb186133b0291cecf5bea4",
|
|
667
|
+
"mtime": 1773185437305.221,
|
|
668
|
+
"size": 1501,
|
|
669
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
670
|
+
},
|
|
671
|
+
"src/core/adapters/community/nestjsAdapter.ts": {
|
|
672
|
+
"path": "src/core/adapters/community/nestjsAdapter.ts",
|
|
673
|
+
"hash": "1497421c1608545d575172567db22956",
|
|
674
|
+
"mtime": 1773185475791.7996,
|
|
675
|
+
"size": 1519,
|
|
676
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
677
|
+
},
|
|
678
|
+
"src/core/adapters/community/phoenixAdapter.ts": {
|
|
679
|
+
"path": "src/core/adapters/community/phoenixAdapter.ts",
|
|
680
|
+
"hash": "06f5634a4d352223e4cd8f5ea795a7e4",
|
|
681
|
+
"mtime": 1773185580466.3152,
|
|
682
|
+
"size": 1331,
|
|
683
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
684
|
+
},
|
|
685
|
+
"src/core/adapters/community/springBootAdapter.ts": {
|
|
686
|
+
"path": "src/core/adapters/community/springBootAdapter.ts",
|
|
687
|
+
"hash": "a4da44ea1657a242cfe06e2c80263c3b",
|
|
688
|
+
"mtime": 1773185539438.7197,
|
|
689
|
+
"size": 1502,
|
|
690
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
691
|
+
},
|
|
692
|
+
"src/core/adapters/dotnetAdapter.ts": {
|
|
693
|
+
"path": "src/core/adapters/dotnetAdapter.ts",
|
|
694
|
+
"hash": "cb85de66279ec84e49b78e202ad53172",
|
|
695
|
+
"mtime": 1773183211018.439,
|
|
696
|
+
"size": 3432,
|
|
697
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
698
|
+
},
|
|
699
|
+
"src/core/adapters/index.ts": {
|
|
700
|
+
"path": "src/core/adapters/index.ts",
|
|
701
|
+
"hash": "52fbc30e12817507e27c51584e710041",
|
|
702
|
+
"mtime": 1773194224100.791,
|
|
703
|
+
"size": 1096,
|
|
704
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
705
|
+
},
|
|
706
|
+
"src/core/adapters/javascriptAdapter.ts": {
|
|
707
|
+
"path": "src/core/adapters/javascriptAdapter.ts",
|
|
708
|
+
"hash": "4344fc5d7dfa44800a3c27d04bf5b23d",
|
|
709
|
+
"mtime": 1773183042396.908,
|
|
710
|
+
"size": 2152,
|
|
711
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
712
|
+
},
|
|
713
|
+
"src/core/adapters/pythonAdapter.ts": {
|
|
714
|
+
"path": "src/core/adapters/pythonAdapter.ts",
|
|
715
|
+
"hash": "01bf12d95ab7ebf0819b1bbc97bd0223",
|
|
716
|
+
"mtime": 1773183091831.6492,
|
|
717
|
+
"size": 4108,
|
|
718
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
719
|
+
},
|
|
720
|
+
"src/core/adapters/railsAdapter.ts": {
|
|
721
|
+
"path": "src/core/adapters/railsAdapter.ts",
|
|
722
|
+
"hash": "ce0622664c7614cd86fe33a6ed5cf9ec",
|
|
723
|
+
"mtime": 1773183128570.2004,
|
|
724
|
+
"size": 1983,
|
|
725
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
726
|
+
},
|
|
727
|
+
"src/core/adapters/salesforceAdapter.ts": {
|
|
728
|
+
"path": "src/core/adapters/salesforceAdapter.ts",
|
|
729
|
+
"hash": "9080869edee1b246baf94caf66732cf1",
|
|
730
|
+
"mtime": 1773183167520.7852,
|
|
731
|
+
"size": 2375,
|
|
732
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
733
|
+
},
|
|
734
|
+
"src/core/adapters/sdk.ts": {
|
|
735
|
+
"path": "src/core/adapters/sdk.ts",
|
|
736
|
+
"hash": "cfe5d3b363b701aae09b29250274d495",
|
|
737
|
+
"mtime": 1773185372752.242,
|
|
738
|
+
"size": 4947,
|
|
739
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
418
740
|
},
|
|
419
741
|
"src/core/aiContextGenerator.ts": {
|
|
420
742
|
"path": "src/core/aiContextGenerator.ts",
|
|
421
743
|
"hash": "c520cef1f061e0f8517734b30957b947",
|
|
422
744
|
"mtime": 1773013859071.9048,
|
|
423
745
|
"size": 30018,
|
|
424
|
-
"indexedAt": "2026-03-
|
|
746
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
425
747
|
},
|
|
426
748
|
"src/core/ccp.ts": {
|
|
427
749
|
"path": "src/core/ccp.ts",
|
|
428
750
|
"hash": "cdab3bf243f95155d0a15e26b6582afb",
|
|
429
751
|
"mtime": 1773157731340.6924,
|
|
430
752
|
"size": 6267,
|
|
431
|
-
"indexedAt": "2026-03-
|
|
753
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
432
754
|
},
|
|
433
755
|
"src/core/chunker.ts": {
|
|
434
756
|
"path": "src/core/chunker.ts",
|
|
435
757
|
"hash": "7f53952952c9d801672a5a6ad729e7d5",
|
|
436
758
|
"mtime": 1773073665099.1428,
|
|
437
759
|
"size": 9678,
|
|
438
|
-
"indexedAt": "2026-03-
|
|
760
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
439
761
|
},
|
|
440
762
|
"src/core/contextGenerator.ts": {
|
|
441
763
|
"path": "src/core/contextGenerator.ts",
|
|
442
764
|
"hash": "0e3c3077c006ce8092c64f0232f750c0",
|
|
443
765
|
"mtime": 1773006174980.9766,
|
|
444
766
|
"size": 8351,
|
|
445
|
-
"indexedAt": "2026-03-
|
|
767
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
446
768
|
},
|
|
447
769
|
"src/core/contextPacket.ts": {
|
|
448
770
|
"path": "src/core/contextPacket.ts",
|
|
449
771
|
"hash": "0febc90214d77fc907e412222f94e6c1",
|
|
450
772
|
"mtime": 1773095515712.9194,
|
|
451
773
|
"size": 13322,
|
|
452
|
-
"indexedAt": "2026-03-
|
|
774
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
453
775
|
},
|
|
454
776
|
"src/core/embeddings.ts": {
|
|
455
777
|
"path": "src/core/embeddings.ts",
|
|
456
778
|
"hash": "ce1769d7adec0510a295672f69a8ba41",
|
|
457
779
|
"mtime": 1773073766382.3613,
|
|
458
780
|
"size": 4541,
|
|
459
|
-
"indexedAt": "2026-03-
|
|
781
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
782
|
+
},
|
|
783
|
+
"src/core/gitAnalyzer.ts": {
|
|
784
|
+
"path": "src/core/gitAnalyzer.ts",
|
|
785
|
+
"hash": "cc017c698e64892c23a1761440d9dbd7",
|
|
786
|
+
"mtime": 1773237342075.0762,
|
|
787
|
+
"size": 10336,
|
|
788
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
460
789
|
},
|
|
461
790
|
"src/core/hierarchyGenerator.ts": {
|
|
462
791
|
"path": "src/core/hierarchyGenerator.ts",
|
|
463
792
|
"hash": "c83b44b554d5aab8759f6a4807985a24",
|
|
464
793
|
"mtime": 1773016072837.5437,
|
|
465
794
|
"size": 10914,
|
|
466
|
-
"indexedAt": "2026-03-
|
|
795
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
796
|
+
},
|
|
797
|
+
"src/core/incrementalAnalyzer.ts": {
|
|
798
|
+
"path": "src/core/incrementalAnalyzer.ts",
|
|
799
|
+
"hash": "7057f4102daa2b59a53f62776a56b9e1",
|
|
800
|
+
"mtime": 1773246228077.465,
|
|
801
|
+
"size": 12487,
|
|
802
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
467
803
|
},
|
|
468
804
|
"src/core/indexState.ts": {
|
|
469
805
|
"path": "src/core/indexState.ts",
|
|
470
806
|
"hash": "412559800f738abb82e28c9eb71f8a6c",
|
|
471
807
|
"mtime": 1773073382179.3071,
|
|
472
808
|
"size": 4850,
|
|
473
|
-
"indexedAt": "2026-03-
|
|
809
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
474
810
|
},
|
|
475
811
|
"src/core/indexer.ts": {
|
|
476
812
|
"path": "src/core/indexer.ts",
|
|
477
813
|
"hash": "6e5b002d8661cf176d236b2e362db46c",
|
|
478
814
|
"mtime": 1773012050361.3564,
|
|
479
815
|
"size": 25617,
|
|
480
|
-
"indexedAt": "2026-03-
|
|
816
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
817
|
+
},
|
|
818
|
+
"src/core/knowledgeGraphBuilder.ts": {
|
|
819
|
+
"path": "src/core/knowledgeGraphBuilder.ts",
|
|
820
|
+
"hash": "274e5831b4e8be00cec10f2668b90735",
|
|
821
|
+
"mtime": 1773242876540.4153,
|
|
822
|
+
"size": 7833,
|
|
823
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
824
|
+
},
|
|
825
|
+
"src/core/lazyAnalyzer.ts": {
|
|
826
|
+
"path": "src/core/lazyAnalyzer.ts",
|
|
827
|
+
"hash": "b28a51c974b1f4ea7eb98acd5ba6fddd",
|
|
828
|
+
"mtime": 1773257763051.4905,
|
|
829
|
+
"size": 8092,
|
|
830
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
481
831
|
},
|
|
482
832
|
"src/core/moduleGraph.ts": {
|
|
483
833
|
"path": "src/core/moduleGraph.ts",
|
|
484
834
|
"hash": "0bf6db06febcf2f929d92fdf569d753b",
|
|
485
835
|
"mtime": 1773071610359.6934,
|
|
486
836
|
"size": 5256,
|
|
487
|
-
"indexedAt": "2026-03-
|
|
837
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
488
838
|
},
|
|
489
839
|
"src/core/repoMapper.ts": {
|
|
490
840
|
"path": "src/core/repoMapper.ts",
|
|
491
841
|
"hash": "2b5a86b04f99bcbfaa6b29291857a0d4",
|
|
492
842
|
"mtime": 1773005052293.012,
|
|
493
843
|
"size": 4464,
|
|
494
|
-
"indexedAt": "2026-03-
|
|
844
|
+
"indexedAt": "2026-03-17T19:44:01.314Z"
|
|
495
845
|
},
|
|
496
846
|
"src/core/repoScanner.ts": {
|
|
497
847
|
"path": "src/core/repoScanner.ts",
|
|
498
848
|
"hash": "78c4baf429b8365b779d779faec6c6f2",
|
|
499
849
|
"mtime": 1773004069943.8745,
|
|
500
850
|
"size": 2351,
|
|
501
|
-
"indexedAt": "2026-03-
|
|
851
|
+
"indexedAt": "2026-03-17T19:44:01.315Z"
|
|
852
|
+
},
|
|
853
|
+
"src/core/schema.ts": {
|
|
854
|
+
"path": "src/core/schema.ts",
|
|
855
|
+
"hash": "e6f173aea750cf98e4ef363846edd2b2",
|
|
856
|
+
"mtime": 1773249080973.0469,
|
|
857
|
+
"size": 5195,
|
|
858
|
+
"indexedAt": "2026-03-17T19:44:01.315Z"
|
|
859
|
+
},
|
|
860
|
+
"src/core/semanticContexts.ts": {
|
|
861
|
+
"path": "src/core/semanticContexts.ts",
|
|
862
|
+
"hash": "8c335cda53cbdecd1190a15d30910c17",
|
|
863
|
+
"mtime": 1773780076910.4495,
|
|
864
|
+
"size": 17361,
|
|
865
|
+
"indexedAt": "2026-03-17T21:51:06.625Z"
|
|
502
866
|
},
|
|
503
867
|
"src/core/symbolGraph.ts": {
|
|
504
868
|
"path": "src/core/symbolGraph.ts",
|
|
505
|
-
"hash": "
|
|
506
|
-
"mtime":
|
|
507
|
-
"size":
|
|
508
|
-
"indexedAt": "2026-03-
|
|
869
|
+
"hash": "32cf884e7fd3e92bd87c94d0610a2654",
|
|
870
|
+
"mtime": 1773783846665.3743,
|
|
871
|
+
"size": 17845,
|
|
872
|
+
"indexedAt": "2026-03-17T21:51:06.625Z"
|
|
509
873
|
},
|
|
510
874
|
"src/index.ts": {
|
|
511
875
|
"path": "src/index.ts",
|
|
512
876
|
"hash": "f79ef17442d3a4a7a0288a646e2b21b0",
|
|
513
877
|
"mtime": 1773069735666.7573,
|
|
514
878
|
"size": 556,
|
|
515
|
-
"indexedAt": "2026-03-
|
|
879
|
+
"indexedAt": "2026-03-17T19:44:01.315Z"
|
|
516
880
|
},
|
|
517
881
|
"src/types/sql.js.d.ts": {
|
|
518
882
|
"path": "src/types/sql.js.d.ts",
|
|
519
883
|
"hash": "5b68823eaec8a56784c956075d1954ce",
|
|
520
884
|
"mtime": 1773010637558.1929,
|
|
521
885
|
"size": 515,
|
|
522
|
-
"indexedAt": "2026-03-
|
|
886
|
+
"indexedAt": "2026-03-17T19:44:01.315Z"
|
|
523
887
|
},
|
|
524
888
|
"src/utils/fileUtils.ts": {
|
|
525
889
|
"path": "src/utils/fileUtils.ts",
|
|
526
|
-
"hash": "
|
|
527
|
-
"mtime":
|
|
528
|
-
"size":
|
|
529
|
-
"indexedAt": "2026-03-
|
|
890
|
+
"hash": "f1b6c884e3f78c088b276ff82a7ad09e",
|
|
891
|
+
"mtime": 1773778112059.0947,
|
|
892
|
+
"size": 2746,
|
|
893
|
+
"indexedAt": "2026-03-17T21:51:06.625Z"
|
|
894
|
+
},
|
|
895
|
+
"tests/adapters.test.ts": {
|
|
896
|
+
"path": "tests/adapters.test.ts",
|
|
897
|
+
"hash": "dd001e296fb4f6840c55cace91598fe3",
|
|
898
|
+
"mtime": 1773189127885.884,
|
|
899
|
+
"size": 5484,
|
|
900
|
+
"indexedAt": "2026-03-17T19:44:01.315Z"
|
|
901
|
+
},
|
|
902
|
+
"tests/gitAnalyzer.test.ts": {
|
|
903
|
+
"path": "tests/gitAnalyzer.test.ts",
|
|
904
|
+
"hash": "ce622fbb549463aaae743c63a4893b19",
|
|
905
|
+
"mtime": 1773238789169.5671,
|
|
906
|
+
"size": 4818,
|
|
907
|
+
"indexedAt": "2026-03-17T19:44:01.315Z"
|
|
908
|
+
},
|
|
909
|
+
"tests/incrementalAnalyzer.test.ts": {
|
|
910
|
+
"path": "tests/incrementalAnalyzer.test.ts",
|
|
911
|
+
"hash": "bc6176d6120da7f2ec3329c9fb6509a7",
|
|
912
|
+
"mtime": 1773247021660.156,
|
|
913
|
+
"size": 2860,
|
|
914
|
+
"indexedAt": "2026-03-17T19:44:01.315Z"
|
|
915
|
+
},
|
|
916
|
+
"tests/knowledgeGraph.test.ts": {
|
|
917
|
+
"path": "tests/knowledgeGraph.test.ts",
|
|
918
|
+
"hash": "0db7cd99fd3d87f88ca0a39e24a30525",
|
|
919
|
+
"mtime": 1773244016810.462,
|
|
920
|
+
"size": 4990,
|
|
921
|
+
"indexedAt": "2026-03-17T19:44:01.315Z"
|
|
922
|
+
},
|
|
923
|
+
"tests/lazyAnalyzer.test.ts": {
|
|
924
|
+
"path": "tests/lazyAnalyzer.test.ts",
|
|
925
|
+
"hash": "6726ead95b81f122da2bfa47db63964f",
|
|
926
|
+
"mtime": 1773258331083.3643,
|
|
927
|
+
"size": 7239,
|
|
928
|
+
"indexedAt": "2026-03-17T19:44:01.315Z"
|
|
929
|
+
},
|
|
930
|
+
"tests/schema.test.ts": {
|
|
931
|
+
"path": "tests/schema.test.ts",
|
|
932
|
+
"hash": "0e54cc7b18fdc335a08ad5cd021cc6f7",
|
|
933
|
+
"mtime": 1773251240586.4749,
|
|
934
|
+
"size": 6626,
|
|
935
|
+
"indexedAt": "2026-03-17T19:44:01.315Z"
|
|
936
|
+
},
|
|
937
|
+
"tests/semanticContexts.test.ts": {
|
|
938
|
+
"path": "tests/semanticContexts.test.ts",
|
|
939
|
+
"hash": "52883ed5b704088e58cbbc0c505d2af2",
|
|
940
|
+
"mtime": 1773780147914.5684,
|
|
941
|
+
"size": 14187,
|
|
942
|
+
"indexedAt": "2026-03-17T21:51:06.625Z"
|
|
530
943
|
},
|
|
531
944
|
"tsconfig.json": {
|
|
532
945
|
"path": "tsconfig.json",
|
|
533
946
|
"hash": "7f7a4bcb349bfbd33e1550e0b02d501b",
|
|
534
947
|
"mtime": 1773004002782.7,
|
|
535
948
|
"size": 475,
|
|
536
|
-
"indexedAt": "2026-03-
|
|
537
|
-
},
|
|
538
|
-
"
|
|
539
|
-
"path": "
|
|
540
|
-
"hash": "
|
|
541
|
-
"mtime":
|
|
542
|
-
"size":
|
|
543
|
-
"indexedAt": "2026-03-
|
|
544
|
-
},
|
|
545
|
-
"dist/
|
|
546
|
-
"path": "dist/
|
|
547
|
-
"hash": "
|
|
548
|
-
"mtime":
|
|
549
|
-
"size":
|
|
550
|
-
"indexedAt": "2026-03-
|
|
551
|
-
},
|
|
552
|
-
"dist/
|
|
553
|
-
"path": "dist/
|
|
554
|
-
"hash": "
|
|
555
|
-
"mtime":
|
|
556
|
-
"size":
|
|
557
|
-
"indexedAt": "2026-03-
|
|
949
|
+
"indexedAt": "2026-03-17T19:44:01.315Z"
|
|
950
|
+
},
|
|
951
|
+
"ai/index.db": {
|
|
952
|
+
"path": "ai/index.db",
|
|
953
|
+
"hash": "c41b3eaf3be6735e0a2633a9cf1c0a36",
|
|
954
|
+
"mtime": 1773793405228.955,
|
|
955
|
+
"size": 45056,
|
|
956
|
+
"indexedAt": "2026-03-18T01:20:04.727Z"
|
|
957
|
+
},
|
|
958
|
+
"dist/core/semanticContexts.d.ts.map": {
|
|
959
|
+
"path": "dist/core/semanticContexts.d.ts.map",
|
|
960
|
+
"hash": "181bbc64a3d2bc43ccba70e49fdb4f21",
|
|
961
|
+
"mtime": 1773796484551.2808,
|
|
962
|
+
"size": 851,
|
|
963
|
+
"indexedAt": "2026-03-18T01:20:04.728Z"
|
|
964
|
+
},
|
|
965
|
+
"dist/core/semanticContexts.js": {
|
|
966
|
+
"path": "dist/core/semanticContexts.js",
|
|
967
|
+
"hash": "6e6793c0fbe7b9a2b4e0bc66378aaa97",
|
|
968
|
+
"mtime": 1773796484551.2808,
|
|
969
|
+
"size": 17410,
|
|
970
|
+
"indexedAt": "2026-03-18T01:20:04.728Z"
|
|
971
|
+
},
|
|
972
|
+
"dist/core/semanticContexts.js.map": {
|
|
973
|
+
"path": "dist/core/semanticContexts.js.map",
|
|
974
|
+
"hash": "23834140ed418ba85bc360d11adf152c",
|
|
975
|
+
"mtime": 1773796484550.2808,
|
|
976
|
+
"size": 16515,
|
|
977
|
+
"indexedAt": "2026-03-18T01:20:04.728Z"
|
|
558
978
|
},
|
|
559
979
|
"node_modules/.package-lock.json": {
|
|
560
980
|
"path": "node_modules/.package-lock.json",
|
|
561
|
-
"hash": "
|
|
562
|
-
"mtime":
|
|
563
|
-
"size":
|
|
564
|
-
"indexedAt": "2026-03-
|
|
981
|
+
"hash": "15d77f8a68ea7f6630e20270de359749",
|
|
982
|
+
"mtime": 1773793490989.4165,
|
|
983
|
+
"size": 132935,
|
|
984
|
+
"indexedAt": "2026-03-18T01:20:04.729Z"
|
|
565
985
|
},
|
|
566
986
|
"node_modules/@iconify-json/simple-icons/icons.json": {
|
|
567
987
|
"path": "node_modules/@iconify-json/simple-icons/icons.json",
|
|
568
|
-
"hash": "
|
|
569
|
-
"mtime":
|
|
570
|
-
"size":
|
|
571
|
-
"indexedAt": "2026-03-
|
|
988
|
+
"hash": "718ad702d19c468d670d4770ae42bd8f",
|
|
989
|
+
"mtime": 1773791421764.7385,
|
|
990
|
+
"size": 4744428,
|
|
991
|
+
"indexedAt": "2026-03-18T01:20:04.738Z"
|
|
572
992
|
},
|
|
573
993
|
"node_modules/@iconify-json/simple-icons/info.json": {
|
|
574
994
|
"path": "node_modules/@iconify-json/simple-icons/info.json",
|
|
575
|
-
"hash": "
|
|
576
|
-
"mtime":
|
|
995
|
+
"hash": "5914851786de37947d2d89d175aed5d8",
|
|
996
|
+
"mtime": 1773791421764.7385,
|
|
577
997
|
"size": 502,
|
|
578
|
-
"indexedAt": "2026-03-
|
|
998
|
+
"indexedAt": "2026-03-18T01:20:04.738Z"
|
|
579
999
|
},
|
|
580
1000
|
"node_modules/@iconify-json/simple-icons/package.json": {
|
|
581
1001
|
"path": "node_modules/@iconify-json/simple-icons/package.json",
|
|
582
|
-
"hash": "
|
|
583
|
-
"mtime":
|
|
1002
|
+
"hash": "d82882bf6417b3004bd18514f1ece9a2",
|
|
1003
|
+
"mtime": 1773791421765.5642,
|
|
584
1004
|
"size": 677,
|
|
585
|
-
"indexedAt": "2026-03-
|
|
1005
|
+
"indexedAt": "2026-03-18T01:20:04.738Z"
|
|
586
1006
|
},
|
|
587
1007
|
"node_modules/bare-stream/package.json": {
|
|
588
1008
|
"path": "node_modules/bare-stream/package.json",
|
|
589
1009
|
"hash": "f1f0c4c0a0ae319b54133c406dd15cb1",
|
|
590
1010
|
"mtime": 1773255231587.3245,
|
|
591
1011
|
"size": 1330,
|
|
592
|
-
"indexedAt": "2026-03-
|
|
1012
|
+
"indexedAt": "2026-03-18T01:20:04.741Z"
|
|
593
1013
|
},
|
|
594
1014
|
"node_modules/bare-stream/web.js": {
|
|
595
1015
|
"path": "node_modules/bare-stream/web.js",
|
|
596
1016
|
"hash": "813cec46ba0e1ca646cce4761f14df97",
|
|
597
1017
|
"mtime": 1773255231585.2495,
|
|
598
1018
|
"size": 10809,
|
|
599
|
-
"indexedAt": "2026-03-
|
|
1019
|
+
"indexedAt": "2026-03-18T01:20:04.741Z"
|
|
600
1020
|
},
|
|
601
1021
|
"node_modules/estree-walker/README.md": {
|
|
602
1022
|
"path": "node_modules/estree-walker/README.md",
|
|
603
1023
|
"hash": "5f9f4c15b1e6b440b3aa4823ea00102b",
|
|
604
1024
|
"mtime": 1773255231592.2498,
|
|
605
1025
|
"size": 1591,
|
|
606
|
-
"indexedAt": "2026-03-
|
|
1026
|
+
"indexedAt": "2026-03-18T01:20:04.741Z"
|
|
607
1027
|
},
|
|
608
1028
|
"node_modules/estree-walker/package.json": {
|
|
609
1029
|
"path": "node_modules/estree-walker/package.json",
|
|
610
1030
|
"hash": "2aad9549ac50c68535376606fc432447",
|
|
611
1031
|
"mtime": 1773255231591.2498,
|
|
612
1032
|
"size": 720,
|
|
613
|
-
"indexedAt": "2026-03-
|
|
1033
|
+
"indexedAt": "2026-03-18T01:20:04.741Z"
|
|
614
1034
|
},
|
|
615
1035
|
"node_modules/estree-walker/src/async.js": {
|
|
616
1036
|
"path": "node_modules/estree-walker/src/async.js",
|
|
617
1037
|
"hash": "dc39d8d0ac14f7f715ed8d4fafdc0e8a",
|
|
618
1038
|
"mtime": 1773255231574.2495,
|
|
619
1039
|
"size": 3474,
|
|
620
|
-
"indexedAt": "2026-03-
|
|
1040
|
+
"indexedAt": "2026-03-18T01:20:04.741Z"
|
|
621
1041
|
},
|
|
622
1042
|
"node_modules/estree-walker/src/index.js": {
|
|
623
1043
|
"path": "node_modules/estree-walker/src/index.js",
|
|
624
1044
|
"hash": "9b6f26f366d15e040471e3293d14d542",
|
|
625
1045
|
"mtime": 1773255231581.2495,
|
|
626
1046
|
"size": 806,
|
|
627
|
-
"indexedAt": "2026-03-
|
|
1047
|
+
"indexedAt": "2026-03-18T01:20:04.741Z"
|
|
628
1048
|
},
|
|
629
1049
|
"node_modules/estree-walker/src/sync.js": {
|
|
630
1050
|
"path": "node_modules/estree-walker/src/sync.js",
|
|
631
1051
|
"hash": "962561751bf71b557617efa5a502a464",
|
|
632
1052
|
"mtime": 1773255231586.2498,
|
|
633
1053
|
"size": 3418,
|
|
634
|
-
"indexedAt": "2026-03-
|
|
1054
|
+
"indexedAt": "2026-03-18T01:20:04.741Z"
|
|
635
1055
|
},
|
|
636
1056
|
"node_modules/estree-walker/src/walker.js": {
|
|
637
1057
|
"path": "node_modules/estree-walker/src/walker.js",
|
|
638
1058
|
"hash": "e202e77221195e3c5ea9287ad2b1b77b",
|
|
639
1059
|
"mtime": 1773255231589.2498,
|
|
640
1060
|
"size": 1393,
|
|
641
|
-
"indexedAt": "2026-03-
|
|
1061
|
+
"indexedAt": "2026-03-18T01:20:04.741Z"
|
|
642
1062
|
},
|
|
643
1063
|
"node_modules/estree-walker/types/async.d.ts": {
|
|
644
1064
|
"path": "node_modules/estree-walker/types/async.d.ts",
|
|
645
1065
|
"hash": "651825d9064839c1fdeee83756536c0e",
|
|
646
1066
|
"mtime": 1773255231596.2498,
|
|
647
1067
|
"size": 1455,
|
|
648
|
-
"indexedAt": "2026-03-
|
|
1068
|
+
"indexedAt": "2026-03-18T01:20:04.741Z"
|
|
649
1069
|
},
|
|
650
1070
|
"node_modules/estree-walker/types/index.d.ts": {
|
|
651
1071
|
"path": "node_modules/estree-walker/types/index.d.ts",
|
|
652
1072
|
"hash": "68c13af0ee8ef9f0ac54d1655f402094",
|
|
653
1073
|
"mtime": 1773255231598.2498,
|
|
654
1074
|
"size": 858,
|
|
655
|
-
"indexedAt": "2026-03-
|
|
1075
|
+
"indexedAt": "2026-03-18T01:20:04.741Z"
|
|
656
1076
|
},
|
|
657
1077
|
"node_modules/estree-walker/types/sync.d.ts": {
|
|
658
1078
|
"path": "node_modules/estree-walker/types/sync.d.ts",
|
|
659
1079
|
"hash": "d293f438b8e9f975bda0a80f85ae0eff",
|
|
660
1080
|
"mtime": 1773255231600.2498,
|
|
661
1081
|
"size": 1408,
|
|
662
|
-
"indexedAt": "2026-03-
|
|
1082
|
+
"indexedAt": "2026-03-18T01:20:04.741Z"
|
|
663
1083
|
},
|
|
664
1084
|
"node_modules/estree-walker/types/walker.d.ts": {
|
|
665
1085
|
"path": "node_modules/estree-walker/types/walker.d.ts",
|
|
666
1086
|
"hash": "42a219a4529f7481d67fd48542b2985d",
|
|
667
1087
|
"mtime": 1773255231601.2498,
|
|
668
1088
|
"size": 1350,
|
|
669
|
-
"indexedAt": "2026-03-
|
|
1089
|
+
"indexedAt": "2026-03-18T01:20:04.741Z"
|
|
1090
|
+
},
|
|
1091
|
+
"node_modules/node-abi/abi_registry.json": {
|
|
1092
|
+
"path": "node_modules/node-abi/abi_registry.json",
|
|
1093
|
+
"hash": "f9d3d5e15c3bfdd5f701b57b9010419b",
|
|
1094
|
+
"mtime": 1773791421094.729,
|
|
1095
|
+
"size": 7403,
|
|
1096
|
+
"indexedAt": "2026-03-18T01:20:04.741Z"
|
|
1097
|
+
},
|
|
1098
|
+
"node_modules/node-abi/package.json": {
|
|
1099
|
+
"path": "node_modules/node-abi/package.json",
|
|
1100
|
+
"hash": "c0e744793839a8c3dd74bcd8eda9a48d",
|
|
1101
|
+
"mtime": 1773791421095.729,
|
|
1102
|
+
"size": 1164,
|
|
1103
|
+
"indexedAt": "2026-03-18T01:20:04.741Z"
|
|
670
1104
|
},
|
|
671
1105
|
"node_modules/preact/compat/dist/compat.js": {
|
|
672
1106
|
"path": "node_modules/preact/compat/dist/compat.js",
|
|
673
1107
|
"hash": "2f27022c8de6a048f1dc7eab1c4111e0",
|
|
674
1108
|
"mtime": 1773255231603.2498,
|
|
675
1109
|
"size": 11446,
|
|
676
|
-
"indexedAt": "2026-03-
|
|
1110
|
+
"indexedAt": "2026-03-18T01:20:04.741Z"
|
|
677
1111
|
},
|
|
678
1112
|
"node_modules/preact/compat/dist/compat.js.map": {
|
|
679
1113
|
"path": "node_modules/preact/compat/dist/compat.js.map",
|
|
680
1114
|
"hash": "3c15890bcc5c75a2583e9ce2b62e9893",
|
|
681
1115
|
"mtime": 1773255231634.2502,
|
|
682
1116
|
"size": 54612,
|
|
683
|
-
"indexedAt": "2026-03-
|
|
1117
|
+
"indexedAt": "2026-03-18T01:20:04.741Z"
|
|
684
1118
|
},
|
|
685
1119
|
"node_modules/preact/compat/dist/compat.mjs": {
|
|
686
1120
|
"path": "node_modules/preact/compat/dist/compat.mjs",
|
|
687
1121
|
"hash": "1c025777a1270e4d8679822768819900",
|
|
688
1122
|
"mtime": 1773255231640.3076,
|
|
689
1123
|
"size": 10281,
|
|
690
|
-
"indexedAt": "2026-03-
|
|
1124
|
+
"indexedAt": "2026-03-18T01:20:04.741Z"
|
|
691
1125
|
},
|
|
692
1126
|
"node_modules/preact/compat/dist/compat.module.js": {
|
|
693
1127
|
"path": "node_modules/preact/compat/dist/compat.module.js",
|
|
694
1128
|
"hash": "1c025777a1270e4d8679822768819900",
|
|
695
1129
|
"mtime": 1773255231606.25,
|
|
696
1130
|
"size": 10281,
|
|
697
|
-
"indexedAt": "2026-03-
|
|
1131
|
+
"indexedAt": "2026-03-18T01:20:04.741Z"
|
|
698
1132
|
},
|
|
699
1133
|
"node_modules/preact/compat/dist/compat.module.js.map": {
|
|
700
1134
|
"path": "node_modules/preact/compat/dist/compat.module.js.map",
|
|
701
1135
|
"hash": "d2a064fd536167f973dac598db49fb33",
|
|
702
1136
|
"mtime": 1773255231635.0017,
|
|
703
1137
|
"size": 54228,
|
|
704
|
-
"indexedAt": "2026-03-
|
|
1138
|
+
"indexedAt": "2026-03-18T01:20:04.742Z"
|
|
705
1139
|
},
|
|
706
1140
|
"node_modules/preact/compat/dist/compat.umd.js": {
|
|
707
1141
|
"path": "node_modules/preact/compat/dist/compat.umd.js",
|
|
708
1142
|
"hash": "2cb20cab3642f6cbe70ebc8d9e822c35",
|
|
709
1143
|
"mtime": 1773255231608.25,
|
|
710
1144
|
"size": 11468,
|
|
711
|
-
"indexedAt": "2026-03-
|
|
1145
|
+
"indexedAt": "2026-03-18T01:20:04.742Z"
|
|
712
1146
|
},
|
|
713
1147
|
"node_modules/preact/compat/dist/compat.umd.js.map": {
|
|
714
1148
|
"path": "node_modules/preact/compat/dist/compat.umd.js.map",
|
|
715
1149
|
"hash": "81d431b61217bc14dd75413bd41fddde",
|
|
716
1150
|
"mtime": 1773255231635.0017,
|
|
717
1151
|
"size": 54617,
|
|
718
|
-
"indexedAt": "2026-03-
|
|
1152
|
+
"indexedAt": "2026-03-18T01:20:04.742Z"
|
|
719
1153
|
},
|
|
720
1154
|
"node_modules/preact/compat/src/index.js": {
|
|
721
1155
|
"path": "node_modules/preact/compat/src/index.js",
|
|
722
1156
|
"hash": "e001456de452b5f5c7199dc2b4d3c457",
|
|
723
1157
|
"mtime": 1773255231624.1016,
|
|
724
1158
|
"size": 5264,
|
|
725
|
-
"indexedAt": "2026-03-
|
|
1159
|
+
"indexedAt": "2026-03-18T01:20:04.742Z"
|
|
726
1160
|
},
|
|
727
1161
|
"node_modules/preact/compat/src/memo.js": {
|
|
728
1162
|
"path": "node_modules/preact/compat/src/memo.js",
|
|
729
1163
|
"hash": "36ba277087ab25a3717f297f887170ae",
|
|
730
1164
|
"mtime": 1773255231628.0076,
|
|
731
1165
|
"size": 1043,
|
|
732
|
-
"indexedAt": "2026-03-
|
|
1166
|
+
"indexedAt": "2026-03-18T01:20:04.742Z"
|
|
733
1167
|
},
|
|
734
1168
|
"node_modules/preact/compat/src/render.js": {
|
|
735
1169
|
"path": "node_modules/preact/compat/src/render.js",
|
|
736
1170
|
"hash": "d8838b04e9818b3ca541dbcecb6ed650",
|
|
737
1171
|
"mtime": 1773255231630.7095,
|
|
738
1172
|
"size": 8747,
|
|
739
|
-
"indexedAt": "2026-03-
|
|
1173
|
+
"indexedAt": "2026-03-18T01:20:04.742Z"
|
|
740
1174
|
},
|
|
741
1175
|
"node_modules/preact/compat/src/suspense.js": {
|
|
742
1176
|
"path": "node_modules/preact/compat/src/suspense.js",
|
|
743
1177
|
"hash": "b0759855f9b44c51b94c6850c79fcaad",
|
|
744
1178
|
"mtime": 1773255231631.796,
|
|
745
1179
|
"size": 8295,
|
|
746
|
-
"indexedAt": "2026-03-
|
|
1180
|
+
"indexedAt": "2026-03-18T01:20:04.742Z"
|
|
747
1181
|
},
|
|
748
1182
|
"node_modules/preact/devtools/dist/devtools.js": {
|
|
749
1183
|
"path": "node_modules/preact/devtools/dist/devtools.js",
|
|
750
1184
|
"hash": "539572da21c0d8ae973f87587548d3ba",
|
|
751
1185
|
"mtime": 1773255231618.7239,
|
|
752
1186
|
"size": 357,
|
|
753
|
-
"indexedAt": "2026-03-
|
|
1187
|
+
"indexedAt": "2026-03-18T01:20:04.742Z"
|
|
754
1188
|
},
|
|
755
1189
|
"node_modules/preact/devtools/dist/devtools.js.map": {
|
|
756
1190
|
"path": "node_modules/preact/devtools/dist/devtools.js.map",
|
|
757
1191
|
"hash": "e0f71b8d0b041e0d190273e99fd766fe",
|
|
758
1192
|
"mtime": 1773255231636.0386,
|
|
759
1193
|
"size": 1341,
|
|
760
|
-
"indexedAt": "2026-03-
|
|
1194
|
+
"indexedAt": "2026-03-18T01:20:04.742Z"
|
|
761
1195
|
},
|
|
762
1196
|
"node_modules/preact/devtools/dist/devtools.mjs": {
|
|
763
1197
|
"path": "node_modules/preact/devtools/dist/devtools.mjs",
|
|
764
1198
|
"hash": "965287dcf264d6ba53ef7a84c323f2b6",
|
|
765
1199
|
"mtime": 1773255231640.3076,
|
|
766
1200
|
"size": 369,
|
|
767
|
-
"indexedAt": "2026-03-
|
|
1201
|
+
"indexedAt": "2026-03-18T01:20:04.742Z"
|
|
768
1202
|
},
|
|
769
1203
|
"node_modules/preact/devtools/dist/devtools.module.js": {
|
|
770
1204
|
"path": "node_modules/preact/devtools/dist/devtools.module.js",
|
|
771
1205
|
"hash": "965287dcf264d6ba53ef7a84c323f2b6",
|
|
772
1206
|
"mtime": 1773255231619.8484,
|
|
773
1207
|
"size": 369,
|
|
774
|
-
"indexedAt": "2026-03-
|
|
1208
|
+
"indexedAt": "2026-03-18T01:20:04.742Z"
|
|
775
1209
|
},
|
|
776
1210
|
"node_modules/preact/devtools/dist/devtools.module.js.map": {
|
|
777
1211
|
"path": "node_modules/preact/devtools/dist/devtools.module.js.map",
|
|
778
1212
|
"hash": "577d94f007cff118fe02d0c728e955ca",
|
|
779
1213
|
"mtime": 1773255231636.3538,
|
|
780
1214
|
"size": 1343,
|
|
781
|
-
"indexedAt": "2026-03-
|
|
1215
|
+
"indexedAt": "2026-03-18T01:20:04.742Z"
|
|
782
1216
|
},
|
|
783
1217
|
"node_modules/preact/devtools/dist/devtools.umd.js": {
|
|
784
1218
|
"path": "node_modules/preact/devtools/dist/devtools.umd.js",
|
|
785
1219
|
"hash": "72cbb69c1f9988850a6bf1be6ceb11c7",
|
|
786
1220
|
"mtime": 1773255231620.6755,
|
|
787
1221
|
"size": 563,
|
|
788
|
-
"indexedAt": "2026-03-
|
|
1222
|
+
"indexedAt": "2026-03-18T01:20:04.742Z"
|
|
789
1223
|
},
|
|
790
1224
|
"node_modules/preact/devtools/dist/devtools.umd.js.map": {
|
|
791
1225
|
"path": "node_modules/preact/devtools/dist/devtools.umd.js.map",
|
|
792
1226
|
"hash": "8c218c7f723c69bfb4743751ac061edb",
|
|
793
1227
|
"mtime": 1773255231636.6292,
|
|
794
1228
|
"size": 1351,
|
|
795
|
-
"indexedAt": "2026-03-
|
|
1229
|
+
"indexedAt": "2026-03-18T01:20:04.742Z"
|
|
796
1230
|
},
|
|
797
1231
|
"node_modules/preact/devtools/src/devtools.js": {
|
|
798
1232
|
"path": "node_modules/preact/devtools/src/devtools.js",
|
|
799
1233
|
"hash": "3a3cb275f70f987700c9c584edd06f08",
|
|
800
1234
|
"mtime": 1773255231619.25,
|
|
801
1235
|
"size": 426,
|
|
802
|
-
"indexedAt": "2026-03-
|
|
1236
|
+
"indexedAt": "2026-03-18T01:20:04.742Z"
|
|
803
1237
|
},
|
|
804
1238
|
"node_modules/preact/dist/preact.js": {
|
|
805
1239
|
"path": "node_modules/preact/dist/preact.js",
|
|
806
1240
|
"hash": "a9b5a3edd4b143c5b3a4d3480d8eac91",
|
|
807
1241
|
"mtime": 1773255231628.772,
|
|
808
1242
|
"size": 11504,
|
|
809
|
-
"indexedAt": "2026-03-
|
|
1243
|
+
"indexedAt": "2026-03-18T01:20:04.742Z"
|
|
810
1244
|
},
|
|
811
1245
|
"node_modules/preact/dist/preact.js.map": {
|
|
812
1246
|
"path": "node_modules/preact/dist/preact.js.map",
|
|
813
1247
|
"hash": "0d693299b8022c668bc7738e4ba0b062",
|
|
814
1248
|
"mtime": 1773255231638.3586,
|
|
815
1249
|
"size": 84365,
|
|
816
|
-
"indexedAt": "2026-03-
|
|
1250
|
+
"indexedAt": "2026-03-18T01:20:04.743Z"
|
|
817
1251
|
},
|
|
818
1252
|
"node_modules/preact/dist/preact.min.js": {
|
|
819
1253
|
"path": "node_modules/preact/dist/preact.min.js",
|
|
820
1254
|
"hash": "01b261bbb786e5dbd4f50d98bc53caf3",
|
|
821
1255
|
"mtime": 1773255231629.043,
|
|
822
1256
|
"size": 11125,
|
|
823
|
-
"indexedAt": "2026-03-
|
|
1257
|
+
"indexedAt": "2026-03-18T01:20:04.743Z"
|
|
824
1258
|
},
|
|
825
1259
|
"node_modules/preact/dist/preact.min.js.map": {
|
|
826
1260
|
"path": "node_modules/preact/dist/preact.min.js.map",
|
|
827
1261
|
"hash": "9299a5f519784062fcc618e67f610f7b",
|
|
828
1262
|
"mtime": 1773255231638.668,
|
|
829
1263
|
"size": 84729,
|
|
830
|
-
"indexedAt": "2026-03-
|
|
1264
|
+
"indexedAt": "2026-03-18T01:20:04.743Z"
|
|
831
1265
|
},
|
|
832
1266
|
"node_modules/preact/dist/preact.min.module.js": {
|
|
833
1267
|
"path": "node_modules/preact/dist/preact.min.module.js",
|
|
834
1268
|
"hash": "581b51684ed5a22705b8b881e21b0760",
|
|
835
1269
|
"mtime": 1773255231629.3286,
|
|
836
1270
|
"size": 11489,
|
|
837
|
-
"indexedAt": "2026-03-
|
|
1271
|
+
"indexedAt": "2026-03-18T01:20:04.743Z"
|
|
838
1272
|
},
|
|
839
1273
|
"node_modules/preact/dist/preact.min.module.js.map": {
|
|
840
1274
|
"path": "node_modules/preact/dist/preact.min.module.js.map",
|
|
841
1275
|
"hash": "5087781f545d08572d4e886278ddd910",
|
|
842
1276
|
"mtime": 1773255231638.824,
|
|
843
1277
|
"size": 84600,
|
|
844
|
-
"indexedAt": "2026-03-
|
|
1278
|
+
"indexedAt": "2026-03-18T01:20:04.744Z"
|
|
845
1279
|
},
|
|
846
1280
|
"node_modules/preact/dist/preact.min.umd.js": {
|
|
847
1281
|
"path": "node_modules/preact/dist/preact.min.umd.js",
|
|
848
1282
|
"hash": "0da89f57ed55322bd126b1142f8ce3f6",
|
|
849
1283
|
"mtime": 1773255231629.3286,
|
|
850
1284
|
"size": 11193,
|
|
851
|
-
"indexedAt": "2026-03-
|
|
1285
|
+
"indexedAt": "2026-03-18T01:20:04.744Z"
|
|
852
1286
|
},
|
|
853
1287
|
"node_modules/preact/dist/preact.min.umd.js.map": {
|
|
854
1288
|
"path": "node_modules/preact/dist/preact.min.umd.js.map",
|
|
855
1289
|
"hash": "4ea38b0e880dfb6d1b50e3796d340ac8",
|
|
856
1290
|
"mtime": 1773255231639.3254,
|
|
857
1291
|
"size": 84733,
|
|
858
|
-
"indexedAt": "2026-03-
|
|
1292
|
+
"indexedAt": "2026-03-18T01:20:04.744Z"
|
|
859
1293
|
},
|
|
860
1294
|
"node_modules/preact/dist/preact.mjs": {
|
|
861
1295
|
"path": "node_modules/preact/dist/preact.mjs",
|
|
862
1296
|
"hash": "db794ebf4acf76cff301017e447df12a",
|
|
863
1297
|
"mtime": 1773255231641.4036,
|
|
864
1298
|
"size": 11470,
|
|
865
|
-
"indexedAt": "2026-03-
|
|
1299
|
+
"indexedAt": "2026-03-18T01:20:04.744Z"
|
|
866
1300
|
},
|
|
867
1301
|
"node_modules/preact/dist/preact.module.js": {
|
|
868
1302
|
"path": "node_modules/preact/dist/preact.module.js",
|
|
869
1303
|
"hash": "db794ebf4acf76cff301017e447df12a",
|
|
870
1304
|
"mtime": 1773255231629.6626,
|
|
871
1305
|
"size": 11470,
|
|
872
|
-
"indexedAt": "2026-03-
|
|
1306
|
+
"indexedAt": "2026-03-18T01:20:04.744Z"
|
|
873
1307
|
},
|
|
874
1308
|
"node_modules/preact/dist/preact.module.js.map": {
|
|
875
1309
|
"path": "node_modules/preact/dist/preact.module.js.map",
|
|
876
1310
|
"hash": "dddc98c569500e8800a8220b43741640",
|
|
877
1311
|
"mtime": 1773255231639.3254,
|
|
878
1312
|
"size": 84449,
|
|
879
|
-
"indexedAt": "2026-03-
|
|
1313
|
+
"indexedAt": "2026-03-18T01:20:04.744Z"
|
|
880
1314
|
},
|
|
881
1315
|
"node_modules/preact/dist/preact.umd.js": {
|
|
882
1316
|
"path": "node_modules/preact/dist/preact.umd.js",
|
|
883
1317
|
"hash": "7d35b7b19668b7642a744dfe33dd8163",
|
|
884
1318
|
"mtime": 1773255231629.8672,
|
|
885
1319
|
"size": 11246,
|
|
886
|
-
"indexedAt": "2026-03-
|
|
1320
|
+
"indexedAt": "2026-03-18T01:20:04.744Z"
|
|
887
1321
|
},
|
|
888
1322
|
"node_modules/preact/dist/preact.umd.js.map": {
|
|
889
1323
|
"path": "node_modules/preact/dist/preact.umd.js.map",
|
|
890
1324
|
"hash": "88468b65eb8cf706330e4fc39ff62dba",
|
|
891
1325
|
"mtime": 1773255231639.777,
|
|
892
1326
|
"size": 84505,
|
|
893
|
-
"indexedAt": "2026-03-
|
|
1327
|
+
"indexedAt": "2026-03-18T01:20:04.745Z"
|
|
894
1328
|
},
|
|
895
1329
|
"node_modules/preact/package.json": {
|
|
896
1330
|
"path": "node_modules/preact/package.json",
|
|
897
1331
|
"hash": "d913bad577b0324a56c30202ab8af546",
|
|
898
1332
|
"mtime": 1773255231634.022,
|
|
899
1333
|
"size": 9042,
|
|
900
|
-
"indexedAt": "2026-03-
|
|
1334
|
+
"indexedAt": "2026-03-18T01:20:04.745Z"
|
|
901
1335
|
},
|
|
902
1336
|
"node_modules/preact/src/component.js": {
|
|
903
1337
|
"path": "node_modules/preact/src/component.js",
|
|
904
1338
|
"hash": "661edfeedff96a9aa10fb8cfe0d1cfc7",
|
|
905
1339
|
"mtime": 1773255231611.3528,
|
|
906
1340
|
"size": 7625,
|
|
907
|
-
"indexedAt": "2026-03-
|
|
1341
|
+
"indexedAt": "2026-03-18T01:20:04.745Z"
|
|
908
1342
|
},
|
|
909
1343
|
"node_modules/preact/src/diff/index.js": {
|
|
910
1344
|
"path": "node_modules/preact/src/diff/index.js",
|
|
911
1345
|
"hash": "7f843865b3012d6e9268cc8d25b55d10",
|
|
912
1346
|
"mtime": 1773255231625.8462,
|
|
913
1347
|
"size": 18824,
|
|
914
|
-
"indexedAt": "2026-03-
|
|
1348
|
+
"indexedAt": "2026-03-18T01:20:04.745Z"
|
|
915
1349
|
},
|
|
916
|
-
"
|
|
917
|
-
"path": "
|
|
918
|
-
"hash": "
|
|
919
|
-
"mtime":
|
|
920
|
-
"size":
|
|
921
|
-
"indexedAt": "2026-03-
|
|
1350
|
+
"dist/commands/ai-first.d.ts.map": {
|
|
1351
|
+
"path": "dist/commands/ai-first.d.ts.map",
|
|
1352
|
+
"hash": "30ac2d4ef03dfa9d31381b04f54a2a6e",
|
|
1353
|
+
"mtime": 1773796484641.2822,
|
|
1354
|
+
"size": 480,
|
|
1355
|
+
"indexedAt": "2026-03-18T01:20:04.728Z"
|
|
922
1356
|
},
|
|
923
|
-
"
|
|
924
|
-
"path": "
|
|
925
|
-
"hash": "
|
|
926
|
-
"mtime":
|
|
927
|
-
"size":
|
|
928
|
-
"indexedAt": "2026-03-
|
|
1357
|
+
"dist/commands/ai-first.js": {
|
|
1358
|
+
"path": "dist/commands/ai-first.js",
|
|
1359
|
+
"hash": "6133c7439ef5fdc0a8d3fe38f3abb40c",
|
|
1360
|
+
"mtime": 1773796484640.2822,
|
|
1361
|
+
"size": 56577,
|
|
1362
|
+
"indexedAt": "2026-03-18T01:20:04.728Z"
|
|
1363
|
+
},
|
|
1364
|
+
"dist/commands/ai-first.js.map": {
|
|
1365
|
+
"path": "dist/commands/ai-first.js.map",
|
|
1366
|
+
"hash": "d3b59573d1dc998f487f3c54f3eb6ae8",
|
|
1367
|
+
"mtime": 1773796484639.282,
|
|
1368
|
+
"size": 48188,
|
|
1369
|
+
"indexedAt": "2026-03-18T01:20:04.728Z"
|
|
1370
|
+
},
|
|
1371
|
+
"dist/utils/fileUtils.d.ts.map": {
|
|
1372
|
+
"path": "dist/utils/fileUtils.d.ts.map",
|
|
1373
|
+
"hash": "dea692498733ecc9088542002796a562",
|
|
1374
|
+
"mtime": 1773796484418.2786,
|
|
1375
|
+
"size": 721,
|
|
1376
|
+
"indexedAt": "2026-03-18T01:20:04.728Z"
|
|
1377
|
+
},
|
|
1378
|
+
"dist/utils/fileUtils.js": {
|
|
1379
|
+
"path": "dist/utils/fileUtils.js",
|
|
1380
|
+
"hash": "009df64f84f4606858ce93c81bf9f62f",
|
|
1381
|
+
"mtime": 1773796484412.2786,
|
|
1382
|
+
"size": 2899,
|
|
1383
|
+
"indexedAt": "2026-03-18T01:20:04.728Z"
|
|
1384
|
+
},
|
|
1385
|
+
"dist/utils/fileUtils.js.map": {
|
|
1386
|
+
"path": "dist/utils/fileUtils.js.map",
|
|
1387
|
+
"hash": "3611ba4fa976b71c41daba5aa063e512",
|
|
1388
|
+
"mtime": 1773796484412.2786,
|
|
1389
|
+
"size": 2549,
|
|
1390
|
+
"indexedAt": "2026-03-18T01:20:04.728Z"
|
|
1391
|
+
},
|
|
1392
|
+
"dist/analyzers/dependencies.d.ts.map": {
|
|
1393
|
+
"path": "dist/analyzers/dependencies.d.ts.map",
|
|
1394
|
+
"hash": "72d696c8a39afac2c4c5e771e227243e",
|
|
1395
|
+
"mtime": 1773796484521.2803,
|
|
1396
|
+
"size": 640,
|
|
1397
|
+
"indexedAt": "2026-03-18T01:20:04.728Z"
|
|
1398
|
+
},
|
|
1399
|
+
"dist/analyzers/dependencies.js": {
|
|
1400
|
+
"path": "dist/analyzers/dependencies.js",
|
|
1401
|
+
"hash": "bc5b8f6deac8190cbb81d7daf384f7c5",
|
|
1402
|
+
"mtime": 1773796484521.2803,
|
|
1403
|
+
"size": 9069,
|
|
1404
|
+
"indexedAt": "2026-03-18T01:20:04.728Z"
|
|
1405
|
+
},
|
|
1406
|
+
"dist/analyzers/dependencies.js.map": {
|
|
1407
|
+
"path": "dist/analyzers/dependencies.js.map",
|
|
1408
|
+
"hash": "d428598199e99b4dd31e165bc0b5b30e",
|
|
1409
|
+
"mtime": 1773796484520.2803,
|
|
1410
|
+
"size": 8747,
|
|
1411
|
+
"indexedAt": "2026-03-18T01:20:04.728Z"
|
|
1412
|
+
},
|
|
1413
|
+
"dist/core/symbolGraph.d.ts.map": {
|
|
1414
|
+
"path": "dist/core/symbolGraph.d.ts.map",
|
|
1415
|
+
"hash": "16f5a394bc741549310b382120d86890",
|
|
1416
|
+
"mtime": 1773796484614.2817,
|
|
1417
|
+
"size": 1488,
|
|
1418
|
+
"indexedAt": "2026-03-18T01:20:04.728Z"
|
|
1419
|
+
},
|
|
1420
|
+
"dist/core/symbolGraph.js": {
|
|
1421
|
+
"path": "dist/core/symbolGraph.js",
|
|
1422
|
+
"hash": "a5645e2c2f073abb98e9d36bc4202761",
|
|
1423
|
+
"mtime": 1773796484612.2817,
|
|
1424
|
+
"size": 16859,
|
|
1425
|
+
"indexedAt": "2026-03-18T01:20:04.728Z"
|
|
1426
|
+
},
|
|
1427
|
+
"dist/core/symbolGraph.js.map": {
|
|
1428
|
+
"path": "dist/core/symbolGraph.js.map",
|
|
1429
|
+
"hash": "e4a28021a5e2b5d61756a25117e2a4a2",
|
|
1430
|
+
"mtime": 1773796484612.2817,
|
|
1431
|
+
"size": 16680,
|
|
1432
|
+
"indexedAt": "2026-03-18T01:20:04.728Z"
|
|
1433
|
+
},
|
|
1434
|
+
"dist/analyzers/symbols.d.ts.map": {
|
|
1435
|
+
"path": "dist/analyzers/symbols.d.ts.map",
|
|
1436
|
+
"hash": "c2d8a9f992f2fc89e6b60c07fb541e6d",
|
|
1437
|
+
"mtime": 1773796484517.2803,
|
|
1438
|
+
"size": 866,
|
|
1439
|
+
"indexedAt": "2026-03-18T01:20:04.728Z"
|
|
1440
|
+
},
|
|
1441
|
+
"dist/analyzers/symbols.js": {
|
|
1442
|
+
"path": "dist/analyzers/symbols.js",
|
|
1443
|
+
"hash": "8a4609c020612400292a4be58821b546",
|
|
1444
|
+
"mtime": 1773796484516.2803,
|
|
1445
|
+
"size": 13811,
|
|
1446
|
+
"indexedAt": "2026-03-18T01:20:04.728Z"
|
|
1447
|
+
},
|
|
1448
|
+
"dist/analyzers/symbols.js.map": {
|
|
1449
|
+
"path": "dist/analyzers/symbols.js.map",
|
|
1450
|
+
"hash": "7ff8e395e312f042a2d8543aef0123f7",
|
|
1451
|
+
"mtime": 1773796484516.2803,
|
|
1452
|
+
"size": 13114,
|
|
1453
|
+
"indexedAt": "2026-03-18T01:20:04.728Z"
|
|
1454
|
+
},
|
|
1455
|
+
"node_modules/@babel/parser/lib/index.js": {
|
|
1456
|
+
"path": "node_modules/@babel/parser/lib/index.js",
|
|
1457
|
+
"hash": "9971f5373c7c450ef84ee62ecdecabe5",
|
|
1458
|
+
"mtime": 1773791421387.7332,
|
|
1459
|
+
"size": 512070,
|
|
1460
|
+
"indexedAt": "2026-03-18T01:20:04.729Z"
|
|
1461
|
+
},
|
|
1462
|
+
"node_modules/@babel/parser/lib/index.js.map": {
|
|
1463
|
+
"path": "node_modules/@babel/parser/lib/index.js.map",
|
|
1464
|
+
"hash": "147fe0dadca5f42b7da6051bfb0df083",
|
|
1465
|
+
"mtime": 1773791421437.0378,
|
|
1466
|
+
"size": 1432668,
|
|
1467
|
+
"indexedAt": "2026-03-18T01:20:04.731Z"
|
|
1468
|
+
},
|
|
1469
|
+
"node_modules/@babel/parser/package.json": {
|
|
1470
|
+
"path": "node_modules/@babel/parser/package.json",
|
|
1471
|
+
"hash": "6ef7b31fc9863e23d76c1f40be848446",
|
|
1472
|
+
"mtime": 1773791421437.0378,
|
|
1473
|
+
"size": 1382,
|
|
1474
|
+
"indexedAt": "2026-03-18T01:20:04.731Z"
|
|
1475
|
+
},
|
|
1476
|
+
"node_modules/@vitejs/plugin-vue/dist/index.mjs": {
|
|
1477
|
+
"path": "node_modules/@vitejs/plugin-vue/dist/index.mjs",
|
|
1478
|
+
"hash": "931926e66b8a1399599f2a3888d2b400",
|
|
1479
|
+
"mtime": 1773791421337.7324,
|
|
1480
|
+
"size": 59853,
|
|
1481
|
+
"indexedAt": "2026-03-18T01:20:04.739Z"
|
|
1482
|
+
},
|
|
1483
|
+
"node_modules/@vitejs/plugin-vue/package.json": {
|
|
1484
|
+
"path": "node_modules/@vitejs/plugin-vue/package.json",
|
|
1485
|
+
"hash": "eb0f459d8ce8e806dca4854e21e5a281",
|
|
1486
|
+
"mtime": 1773791421330.7324,
|
|
1487
|
+
"size": 1513,
|
|
1488
|
+
"indexedAt": "2026-03-18T01:20:04.739Z"
|
|
1489
|
+
},
|
|
1490
|
+
"node_modules/bare-os/binding.c": {
|
|
1491
|
+
"path": "node_modules/bare-os/binding.c",
|
|
1492
|
+
"hash": "4cdea9978c2f0e418c9265ba1e6e9118",
|
|
1493
|
+
"mtime": 1773791421105.772,
|
|
1494
|
+
"size": 30159,
|
|
1495
|
+
"indexedAt": "2026-03-18T01:20:04.739Z"
|
|
1496
|
+
},
|
|
1497
|
+
"node_modules/bare-os/index.d.ts": {
|
|
1498
|
+
"path": "node_modules/bare-os/index.d.ts",
|
|
1499
|
+
"hash": "fe00d6e1fa5658c6744cbe505ccf63af",
|
|
1500
|
+
"mtime": 1773791421107.5234,
|
|
1501
|
+
"size": 2954,
|
|
1502
|
+
"indexedAt": "2026-03-18T01:20:04.739Z"
|
|
1503
|
+
},
|
|
1504
|
+
"node_modules/bare-os/index.js": {
|
|
1505
|
+
"path": "node_modules/bare-os/index.js",
|
|
1506
|
+
"hash": "ecd47d0023d1532140089f1dbd57baf3",
|
|
1507
|
+
"mtime": 1773791421107.1865,
|
|
1508
|
+
"size": 3162,
|
|
1509
|
+
"indexedAt": "2026-03-18T01:20:04.739Z"
|
|
1510
|
+
},
|
|
1511
|
+
"node_modules/bare-os/package.json": {
|
|
1512
|
+
"path": "node_modules/bare-os/package.json",
|
|
1513
|
+
"hash": "025d9cd9dd1a6554f8c56439d92d87a9",
|
|
1514
|
+
"mtime": 1773791421107.3335,
|
|
1515
|
+
"size": 1024,
|
|
1516
|
+
"indexedAt": "2026-03-18T01:20:04.739Z"
|
|
1517
|
+
},
|
|
1518
|
+
"node_modules/bare-os/prebuilds/android-arm/bare-os.bare": {
|
|
1519
|
+
"path": "node_modules/bare-os/prebuilds/android-arm/bare-os.bare",
|
|
1520
|
+
"hash": "88d7bb0f6b0e5204108a969f328a7d15",
|
|
1521
|
+
"mtime": 1773791421095.729,
|
|
1522
|
+
"size": 32920,
|
|
1523
|
+
"indexedAt": "2026-03-18T01:20:04.739Z"
|
|
1524
|
+
},
|
|
1525
|
+
"node_modules/bare-os/prebuilds/android-arm64/bare-os.bare": {
|
|
1526
|
+
"path": "node_modules/bare-os/prebuilds/android-arm64/bare-os.bare",
|
|
1527
|
+
"hash": "8544784f6b1f5216e2df5f6bb9de471a",
|
|
1528
|
+
"mtime": 1773791421098.576,
|
|
1529
|
+
"size": 38048,
|
|
1530
|
+
"indexedAt": "2026-03-18T01:20:04.739Z"
|
|
1531
|
+
},
|
|
1532
|
+
"node_modules/bare-os/prebuilds/android-ia32/bare-os.bare": {
|
|
1533
|
+
"path": "node_modules/bare-os/prebuilds/android-ia32/bare-os.bare",
|
|
1534
|
+
"hash": "984ca29ce6aaca3f47c27937c4715e5c",
|
|
1535
|
+
"mtime": 1773791421100.947,
|
|
1536
|
+
"size": 33092,
|
|
1537
|
+
"indexedAt": "2026-03-18T01:20:04.739Z"
|
|
1538
|
+
},
|
|
1539
|
+
"node_modules/bare-os/prebuilds/android-x64/bare-os.bare": {
|
|
1540
|
+
"path": "node_modules/bare-os/prebuilds/android-x64/bare-os.bare",
|
|
1541
|
+
"hash": "5d7d19ed37c434672ac775c335d45fdd",
|
|
1542
|
+
"mtime": 1773791421101.9185,
|
|
1543
|
+
"size": 36640,
|
|
1544
|
+
"indexedAt": "2026-03-18T01:20:04.739Z"
|
|
1545
|
+
},
|
|
1546
|
+
"node_modules/bare-os/prebuilds/darwin-arm64/bare-os.bare": {
|
|
1547
|
+
"path": "node_modules/bare-os/prebuilds/darwin-arm64/bare-os.bare",
|
|
1548
|
+
"hash": "7dee587e6689497df4bc40646feed46f",
|
|
1549
|
+
"mtime": 1773791421102.932,
|
|
1550
|
+
"size": 72880,
|
|
1551
|
+
"indexedAt": "2026-03-18T01:20:04.739Z"
|
|
1552
|
+
},
|
|
1553
|
+
"node_modules/bare-os/prebuilds/darwin-x64/bare-os.bare": {
|
|
1554
|
+
"path": "node_modules/bare-os/prebuilds/darwin-x64/bare-os.bare",
|
|
1555
|
+
"hash": "f4a6a60e2bef1d813bb074c2f29cccee",
|
|
1556
|
+
"mtime": 1773791421103.6187,
|
|
1557
|
+
"size": 39408,
|
|
1558
|
+
"indexedAt": "2026-03-18T01:20:04.739Z"
|
|
1559
|
+
},
|
|
1560
|
+
"node_modules/bare-os/prebuilds/ios-arm64-simulator/bare-os.bare": {
|
|
1561
|
+
"path": "node_modules/bare-os/prebuilds/ios-arm64-simulator/bare-os.bare",
|
|
1562
|
+
"hash": "cb0f909b151246e5e6173adaedb4b71c",
|
|
1563
|
+
"mtime": 1773791421103.6187,
|
|
1564
|
+
"size": 72816,
|
|
1565
|
+
"indexedAt": "2026-03-18T01:20:04.740Z"
|
|
1566
|
+
},
|
|
1567
|
+
"node_modules/bare-os/prebuilds/ios-arm64/bare-os.bare": {
|
|
1568
|
+
"path": "node_modules/bare-os/prebuilds/ios-arm64/bare-os.bare",
|
|
1569
|
+
"hash": "a3dec43f29228a1d8f93c0b10517af03",
|
|
1570
|
+
"mtime": 1773791421103.7292,
|
|
1571
|
+
"size": 88552,
|
|
1572
|
+
"indexedAt": "2026-03-18T01:20:04.740Z"
|
|
1573
|
+
},
|
|
1574
|
+
"node_modules/bare-os/prebuilds/ios-x64-simulator/bare-os.bare": {
|
|
1575
|
+
"path": "node_modules/bare-os/prebuilds/ios-x64-simulator/bare-os.bare",
|
|
1576
|
+
"hash": "42311e2d531a08fdc5e5a897dcd09155",
|
|
1577
|
+
"mtime": 1773791421104.4321,
|
|
1578
|
+
"size": 39344,
|
|
1579
|
+
"indexedAt": "2026-03-18T01:20:04.740Z"
|
|
1580
|
+
},
|
|
1581
|
+
"node_modules/bare-os/prebuilds/linux-arm64/bare-os.bare": {
|
|
1582
|
+
"path": "node_modules/bare-os/prebuilds/linux-arm64/bare-os.bare",
|
|
1583
|
+
"hash": "054f6fe3f5159b930a7cf277e8b3ddb0",
|
|
1584
|
+
"mtime": 1773791421104.679,
|
|
1585
|
+
"size": 35200,
|
|
1586
|
+
"indexedAt": "2026-03-18T01:20:04.740Z"
|
|
1587
|
+
},
|
|
1588
|
+
"node_modules/bare-os/prebuilds/linux-x64/bare-os.bare": {
|
|
1589
|
+
"path": "node_modules/bare-os/prebuilds/linux-x64/bare-os.bare",
|
|
1590
|
+
"hash": "7978c129cc53d56af8715b33322d1587",
|
|
1591
|
+
"mtime": 1773791421104.985,
|
|
1592
|
+
"size": 35760,
|
|
1593
|
+
"indexedAt": "2026-03-18T01:20:04.740Z"
|
|
1594
|
+
},
|
|
1595
|
+
"node_modules/bare-os/prebuilds/win32-arm64/bare-os.bare": {
|
|
1596
|
+
"path": "node_modules/bare-os/prebuilds/win32-arm64/bare-os.bare",
|
|
1597
|
+
"hash": "bbe86590b4a70f6c653f88632e27ba41",
|
|
1598
|
+
"mtime": 1773791421105.2615,
|
|
1599
|
+
"size": 158208,
|
|
1600
|
+
"indexedAt": "2026-03-18T01:20:04.740Z"
|
|
1601
|
+
},
|
|
1602
|
+
"node_modules/bare-os/prebuilds/win32-x64/bare-os.bare": {
|
|
1603
|
+
"path": "node_modules/bare-os/prebuilds/win32-x64/bare-os.bare",
|
|
1604
|
+
"hash": "acc4d5d6207207890fe2b2cfbc4cb8ab",
|
|
1605
|
+
"mtime": 1773791421105.772,
|
|
1606
|
+
"size": 165888,
|
|
1607
|
+
"indexedAt": "2026-03-18T01:20:04.741Z"
|
|
1608
|
+
},
|
|
1609
|
+
"node_modules/vite/LICENSE.md": {
|
|
1610
|
+
"path": "node_modules/vite/LICENSE.md",
|
|
1611
|
+
"hash": "cfd14b1c6c896e15e64a3365156bcd19",
|
|
1612
|
+
"mtime": 1773791421428.7336,
|
|
1613
|
+
"size": 108487,
|
|
1614
|
+
"indexedAt": "2026-03-18T01:20:04.745Z"
|
|
1615
|
+
},
|
|
1616
|
+
"node_modules/vite/README.md": {
|
|
1617
|
+
"path": "node_modules/vite/README.md",
|
|
1618
|
+
"hash": "339be6242fa4d05afabd1d4093d7cf2a",
|
|
1619
|
+
"mtime": 1773791421429.734,
|
|
1620
|
+
"size": 1154,
|
|
1621
|
+
"indexedAt": "2026-03-18T01:20:04.745Z"
|
|
1622
|
+
},
|
|
1623
|
+
"node_modules/vite/bin/vite.js": {
|
|
1624
|
+
"path": "node_modules/vite/bin/vite.js",
|
|
1625
|
+
"hash": "503ab1a1ada32bbd8efe83aa1066d06e",
|
|
1626
|
+
"mtime": 1773791421423.7336,
|
|
1627
|
+
"size": 2574,
|
|
1628
|
+
"indexedAt": "2026-03-18T01:20:04.745Z"
|
|
1629
|
+
},
|
|
1630
|
+
"node_modules/vite/client.d.ts": {
|
|
1631
|
+
"path": "node_modules/vite/client.d.ts",
|
|
1632
|
+
"hash": "d51e7d8f613c7f4cff6deaff73aea46e",
|
|
1633
|
+
"mtime": 1773791421437.0378,
|
|
1634
|
+
"size": 5109,
|
|
1635
|
+
"indexedAt": "2026-03-18T01:20:04.745Z"
|
|
1636
|
+
},
|
|
1637
|
+
"node_modules/vite/dist/client/client.mjs": {
|
|
1638
|
+
"path": "node_modules/vite/dist/client/client.mjs",
|
|
1639
|
+
"hash": "5d7fedc07e5efbca4c690628fd40d816",
|
|
1640
|
+
"mtime": 1773791421432.734,
|
|
1641
|
+
"size": 38561,
|
|
1642
|
+
"indexedAt": "2026-03-18T01:20:04.745Z"
|
|
1643
|
+
},
|
|
1644
|
+
"node_modules/vite/dist/client/env.mjs": {
|
|
1645
|
+
"path": "node_modules/vite/dist/client/env.mjs",
|
|
1646
|
+
"hash": "4913c910f4a0f9bbf20ec229ce46ad0a",
|
|
1647
|
+
"mtime": 1773791421435.734,
|
|
1648
|
+
"size": 612,
|
|
1649
|
+
"indexedAt": "2026-03-18T01:20:04.745Z"
|
|
1650
|
+
},
|
|
1651
|
+
"node_modules/vite/dist/node/cli.js": {
|
|
1652
|
+
"path": "node_modules/vite/dist/node/cli.js",
|
|
1653
|
+
"hash": "9a5d30a7d9e8284071fb8985a07cf74e",
|
|
1654
|
+
"mtime": 1773791421295.732,
|
|
1655
|
+
"size": 29867,
|
|
1656
|
+
"indexedAt": "2026-03-18T01:20:04.745Z"
|
|
1657
|
+
},
|
|
1658
|
+
"node_modules/vite/dist/node/index.d.ts": {
|
|
1659
|
+
"path": "node_modules/vite/dist/node/index.d.ts",
|
|
1660
|
+
"hash": "152b73e807358ad8cbb9f8dcb3bd766e",
|
|
1661
|
+
"mtime": 1773791421451.7341,
|
|
1662
|
+
"size": 156852,
|
|
1663
|
+
"indexedAt": "2026-03-18T01:20:04.746Z"
|
|
1664
|
+
},
|
|
1665
|
+
"node_modules/vite/dist/node/index.js": {
|
|
1666
|
+
"path": "node_modules/vite/dist/node/index.js",
|
|
1667
|
+
"hash": "b63fbbf3e4af552cd9d40677bd5b3f09",
|
|
1668
|
+
"mtime": 1773791421339.7324,
|
|
1669
|
+
"size": 2726,
|
|
1670
|
+
"indexedAt": "2026-03-18T01:20:04.746Z"
|
|
1671
|
+
},
|
|
1672
|
+
"node_modules/vite/package.json": {
|
|
1673
|
+
"path": "node_modules/vite/package.json",
|
|
1674
|
+
"hash": "7c621294a1632716f7dd87bfed72587f",
|
|
1675
|
+
"mtime": 1773791421423.7336,
|
|
1676
|
+
"size": 5091,
|
|
1677
|
+
"indexedAt": "2026-03-18T01:20:04.746Z"
|
|
1678
|
+
},
|
|
1679
|
+
"node_modules/vite/types/customEvent.d.ts": {
|
|
1680
|
+
"path": "node_modules/vite/types/customEvent.d.ts",
|
|
1681
|
+
"hash": "5eb393ad7a7e6dad5016456a2c692d23",
|
|
1682
|
+
"mtime": 1773791421438.734,
|
|
1683
|
+
"size": 1952,
|
|
1684
|
+
"indexedAt": "2026-03-18T01:20:04.746Z"
|
|
1685
|
+
},
|
|
1686
|
+
"node_modules/vite/types/hmrPayload.d.ts": {
|
|
1687
|
+
"path": "node_modules/vite/types/hmrPayload.d.ts",
|
|
1688
|
+
"hash": "4cff3839d124c5728c4098ada4760463",
|
|
1689
|
+
"mtime": 1773791421441.734,
|
|
1690
|
+
"size": 1398,
|
|
1691
|
+
"indexedAt": "2026-03-18T01:20:04.746Z"
|
|
1692
|
+
},
|
|
1693
|
+
"node_modules/vite/types/hot.d.ts": {
|
|
1694
|
+
"path": "node_modules/vite/types/hot.d.ts",
|
|
1695
|
+
"hash": "03d827c44c73de98f1c8716e6846adc9",
|
|
1696
|
+
"mtime": 1773791421442.734,
|
|
1697
|
+
"size": 1063,
|
|
1698
|
+
"indexedAt": "2026-03-18T01:20:04.746Z"
|
|
1699
|
+
},
|
|
1700
|
+
"node_modules/vite/types/importGlob.d.ts": {
|
|
1701
|
+
"path": "node_modules/vite/types/importGlob.d.ts",
|
|
1702
|
+
"hash": "60c4cc95ae71de9ed6d6a9fa003d32d0",
|
|
1703
|
+
"mtime": 1773791421445.734,
|
|
1704
|
+
"size": 2291,
|
|
1705
|
+
"indexedAt": "2026-03-18T01:20:04.746Z"
|
|
1706
|
+
},
|
|
1707
|
+
"node_modules/vite/types/importMeta.d.ts": {
|
|
1708
|
+
"path": "node_modules/vite/types/importMeta.d.ts",
|
|
1709
|
+
"hash": "29a53ee848664f925fd1d8af2d0a1bbb",
|
|
1710
|
+
"mtime": 1773791421446.841,
|
|
1711
|
+
"size": 884,
|
|
1712
|
+
"indexedAt": "2026-03-18T01:20:04.747Z"
|
|
1713
|
+
},
|
|
1714
|
+
"node_modules/vite/types/metadata.d.ts": {
|
|
1715
|
+
"path": "node_modules/vite/types/metadata.d.ts",
|
|
1716
|
+
"hash": "c416ad28a397df838e5af8ec9a238db3",
|
|
1717
|
+
"mtime": 1773791421455.7341,
|
|
1718
|
+
"size": 1133,
|
|
1719
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1720
|
+
},
|
|
1721
|
+
"test-projects/express-api/ai/cache.json": {
|
|
1722
|
+
"path": "test-projects/express-api/ai/cache.json",
|
|
1723
|
+
"hash": "e4a0b073ccbaca175c009e8775b62544",
|
|
1724
|
+
"mtime": 1773796517399.7932,
|
|
1725
|
+
"size": 3674,
|
|
1726
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1727
|
+
},
|
|
1728
|
+
"test-projects/express-api/ai/files.json": {
|
|
1729
|
+
"path": "test-projects/express-api/ai/files.json",
|
|
1730
|
+
"hash": "11d48531de1be1a0a23a4f4e0af19200",
|
|
1731
|
+
"mtime": 1773796525902.9258,
|
|
1732
|
+
"size": 3361,
|
|
1733
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1734
|
+
},
|
|
1735
|
+
"test-projects/express-api/ai/project.json": {
|
|
1736
|
+
"path": "test-projects/express-api/ai/project.json",
|
|
1737
|
+
"hash": "08ba7541bf16fe9e746aa0ed3ef4a7b3",
|
|
1738
|
+
"mtime": 1773796492350.4023,
|
|
1739
|
+
"size": 249,
|
|
1740
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1741
|
+
},
|
|
1742
|
+
"test-projects/express-api/ai/repo-map.json": {
|
|
1743
|
+
"path": "test-projects/express-api/ai/repo-map.json",
|
|
1744
|
+
"hash": "bc79826d46b669d42b546057efb73255",
|
|
1745
|
+
"mtime": 1773796517383.793,
|
|
1746
|
+
"size": 6308,
|
|
1747
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1748
|
+
},
|
|
1749
|
+
"test-projects/express-api/ai/repo_map.json": {
|
|
1750
|
+
"path": "test-projects/express-api/ai/repo_map.json",
|
|
1751
|
+
"hash": "474f2af3cc084780fcdc989f865cb19d",
|
|
1752
|
+
"mtime": 1773796492340.4023,
|
|
1753
|
+
"size": 2017,
|
|
1754
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1755
|
+
},
|
|
1756
|
+
"test-projects/express-api/ai/schema.json": {
|
|
1757
|
+
"path": "test-projects/express-api/ai/schema.json",
|
|
1758
|
+
"hash": "09deb83ac436baaa3ee8ba47c1b6876e",
|
|
1759
|
+
"mtime": 1773796492350.4023,
|
|
1760
|
+
"size": 102,
|
|
1761
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1762
|
+
},
|
|
1763
|
+
"test-projects/nestjs-backend/ai/cache.json": {
|
|
1764
|
+
"path": "test-projects/nestjs-backend/ai/cache.json",
|
|
1765
|
+
"hash": "318fbd2f58a06748fd9f6f05fcfdf676",
|
|
1766
|
+
"mtime": 1773796517476.7944,
|
|
1767
|
+
"size": 4031,
|
|
1768
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1769
|
+
},
|
|
1770
|
+
"test-projects/nestjs-backend/ai/dependencies.json": {
|
|
1771
|
+
"path": "test-projects/nestjs-backend/ai/dependencies.json",
|
|
1772
|
+
"hash": "7dbe8e380f477563ed486728fc7d796e",
|
|
1773
|
+
"mtime": 1773796492430.4038,
|
|
1774
|
+
"size": 3698,
|
|
1775
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1776
|
+
},
|
|
1777
|
+
"test-projects/nestjs-backend/ai/files.json": {
|
|
1778
|
+
"path": "test-projects/nestjs-backend/ai/files.json",
|
|
1779
|
+
"hash": "8cb22184d6d9321b679f49d813a0ea04",
|
|
1780
|
+
"mtime": 1773796526036.9277,
|
|
1781
|
+
"size": 3650,
|
|
1782
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1783
|
+
},
|
|
1784
|
+
"test-projects/nestjs-backend/ai/graph/symbol-graph.json": {
|
|
1785
|
+
"path": "test-projects/nestjs-backend/ai/graph/symbol-graph.json",
|
|
1786
|
+
"hash": "986b59bfb6749a14615b087b9bad8319",
|
|
1787
|
+
"mtime": 1773796517474.7942,
|
|
1788
|
+
"size": 7954,
|
|
1789
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1790
|
+
},
|
|
1791
|
+
"test-projects/nestjs-backend/ai/graph/symbol-references.json": {
|
|
1792
|
+
"path": "test-projects/nestjs-backend/ai/graph/symbol-references.json",
|
|
1793
|
+
"hash": "79cb95e21ec8f98e24480e9ca0dca706",
|
|
1794
|
+
"mtime": 1773796517474.7942,
|
|
1795
|
+
"size": 58,
|
|
1796
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1797
|
+
},
|
|
1798
|
+
"test-projects/nestjs-backend/ai/project.json": {
|
|
1799
|
+
"path": "test-projects/nestjs-backend/ai/project.json",
|
|
1800
|
+
"hash": "3dccdf21bae258d5c57bd9001b4b39e6",
|
|
1801
|
+
"mtime": 1773796492433.4038,
|
|
1802
|
+
"size": 234,
|
|
1803
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1804
|
+
},
|
|
1805
|
+
"test-projects/nestjs-backend/ai/repo-map.json": {
|
|
1806
|
+
"path": "test-projects/nestjs-backend/ai/repo-map.json",
|
|
1807
|
+
"hash": "d0781e3898006491005ab603b6fe5f2a",
|
|
1808
|
+
"mtime": 1773796517466.0496,
|
|
1809
|
+
"size": 7196,
|
|
1810
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1811
|
+
},
|
|
1812
|
+
"test-projects/nestjs-backend/ai/repo_map.json": {
|
|
1813
|
+
"path": "test-projects/nestjs-backend/ai/repo_map.json",
|
|
1814
|
+
"hash": "7646f8ddcac9b2573aefd42e6dbf7186",
|
|
1815
|
+
"mtime": 1773796492423.4036,
|
|
1816
|
+
"size": 3168,
|
|
1817
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1818
|
+
},
|
|
1819
|
+
"test-projects/nestjs-backend/ai/schema.json": {
|
|
1820
|
+
"path": "test-projects/nestjs-backend/ai/schema.json",
|
|
1821
|
+
"hash": "b7af586eb15247e9b5c644920a03afa4",
|
|
1822
|
+
"mtime": 1773796492433.4038,
|
|
1823
|
+
"size": 102,
|
|
1824
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1825
|
+
},
|
|
1826
|
+
"test-projects/python-cli/ai/cache.json": {
|
|
1827
|
+
"path": "test-projects/python-cli/ai/cache.json",
|
|
1828
|
+
"hash": "0263e0b9ac379b24a06a2c724cf6091e",
|
|
1829
|
+
"mtime": 1773796517555.7957,
|
|
1830
|
+
"size": 3729,
|
|
1831
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1832
|
+
},
|
|
1833
|
+
"test-projects/python-cli/ai/files.json": {
|
|
1834
|
+
"path": "test-projects/python-cli/ai/files.json",
|
|
1835
|
+
"hash": "d6b56025a4aa596950c4c9b4140b550d",
|
|
1836
|
+
"mtime": 1773796526167.9297,
|
|
1837
|
+
"size": 3374,
|
|
1838
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1839
|
+
},
|
|
1840
|
+
"test-projects/python-cli/ai/repo-map.json": {
|
|
1841
|
+
"path": "test-projects/python-cli/ai/repo-map.json",
|
|
1842
|
+
"hash": "a2b87275ea77eb88a7ce50f6874d52d8",
|
|
1843
|
+
"mtime": 1773796517541.7954,
|
|
1844
|
+
"size": 6223,
|
|
1845
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1846
|
+
},
|
|
1847
|
+
"test-projects/react-app/ai/cache.json": {
|
|
1848
|
+
"path": "test-projects/react-app/ai/cache.json",
|
|
1849
|
+
"hash": "ddba1b3416b5e692c6781a46bd4bf3f8",
|
|
1850
|
+
"mtime": 1773796517634.7969,
|
|
1851
|
+
"size": 3772,
|
|
1852
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1853
|
+
},
|
|
1854
|
+
"test-projects/react-app/ai/dependencies.json": {
|
|
1855
|
+
"path": "test-projects/react-app/ai/dependencies.json",
|
|
1856
|
+
"hash": "6a39a4044a4a0ea07350ea8892172705",
|
|
1857
|
+
"mtime": 1773796492593.4062,
|
|
1858
|
+
"size": 2838,
|
|
1859
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1860
|
+
},
|
|
1861
|
+
"test-projects/react-app/ai/files.json": {
|
|
1862
|
+
"path": "test-projects/react-app/ai/files.json",
|
|
1863
|
+
"hash": "56cf53a6110a42f57526e7bbbb7f8838",
|
|
1864
|
+
"mtime": 1773796526301.932,
|
|
1865
|
+
"size": 3420,
|
|
1866
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1867
|
+
},
|
|
1868
|
+
"test-projects/react-app/ai/project.json": {
|
|
1869
|
+
"path": "test-projects/react-app/ai/project.json",
|
|
1870
|
+
"hash": "df3518f773c0cadd997f76f65a2f78ed",
|
|
1871
|
+
"mtime": 1773796492596.4062,
|
|
1872
|
+
"size": 240,
|
|
1873
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1874
|
+
},
|
|
1875
|
+
"test-projects/react-app/ai/repo-map.json": {
|
|
1876
|
+
"path": "test-projects/react-app/ai/repo-map.json",
|
|
1877
|
+
"hash": "910f71a5d4a4e15f2e7091b64bc8fe2f",
|
|
1878
|
+
"mtime": 1773796517624.7966,
|
|
1879
|
+
"size": 6702,
|
|
1880
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1881
|
+
},
|
|
1882
|
+
"test-projects/react-app/ai/repo_map.json": {
|
|
1883
|
+
"path": "test-projects/react-app/ai/repo_map.json",
|
|
1884
|
+
"hash": "3544daa786bd99f8538f616ad22d7711",
|
|
1885
|
+
"mtime": 1773796492587.4062,
|
|
1886
|
+
"size": 2429,
|
|
1887
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1888
|
+
},
|
|
1889
|
+
"test-projects/react-app/ai/schema.json": {
|
|
1890
|
+
"path": "test-projects/react-app/ai/schema.json",
|
|
1891
|
+
"hash": "19c33e21e4a5d36d3b9ac40d84db2ab6",
|
|
1892
|
+
"mtime": 1773796492596.4062,
|
|
1893
|
+
"size": 102,
|
|
1894
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1895
|
+
},
|
|
1896
|
+
"test-projects/salesforce-cli/ai/cache.json": {
|
|
1897
|
+
"path": "test-projects/salesforce-cli/ai/cache.json",
|
|
1898
|
+
"hash": "8ce78f24c309e81f7914c81e1e7d75c7",
|
|
1899
|
+
"mtime": 1773796517713.798,
|
|
1900
|
+
"size": 3146,
|
|
1901
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1902
|
+
},
|
|
1903
|
+
"test-projects/salesforce-cli/ai/files.json": {
|
|
1904
|
+
"path": "test-projects/salesforce-cli/ai/files.json",
|
|
1905
|
+
"hash": "28d0652fd1d0cb2a8d2aee50d6fb6bcf",
|
|
1906
|
+
"mtime": 1773796526435.934,
|
|
1907
|
+
"size": 2973,
|
|
1908
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1909
|
+
},
|
|
1910
|
+
"test-projects/salesforce-cli/ai/project.json": {
|
|
1911
|
+
"path": "test-projects/salesforce-cli/ai/project.json",
|
|
1912
|
+
"hash": "295b4cc3d9224937904a0270cc234dc2",
|
|
1913
|
+
"mtime": 1773796492675.4075,
|
|
1914
|
+
"size": 247,
|
|
1915
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1916
|
+
},
|
|
1917
|
+
"test-projects/salesforce-cli/ai/repo-map.json": {
|
|
1918
|
+
"path": "test-projects/salesforce-cli/ai/repo-map.json",
|
|
1919
|
+
"hash": "4f16721f87196949948475fda1bbb92b",
|
|
1920
|
+
"mtime": 1773796517706.8672,
|
|
1921
|
+
"size": 5843,
|
|
1922
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1923
|
+
},
|
|
1924
|
+
"test-projects/salesforce-cli/ai/repo_map.json": {
|
|
1925
|
+
"path": "test-projects/salesforce-cli/ai/repo_map.json",
|
|
1926
|
+
"hash": "d2f687f4d05e38731e8b4fa2b4481178",
|
|
1927
|
+
"mtime": 1773796492668.4075,
|
|
1928
|
+
"size": 1775,
|
|
1929
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
1930
|
+
},
|
|
1931
|
+
"test-projects/salesforce-cli/ai/schema.json": {
|
|
1932
|
+
"path": "test-projects/salesforce-cli/ai/schema.json",
|
|
1933
|
+
"hash": "972220a7d47c9f782cd74798554d2cc4",
|
|
1934
|
+
"mtime": 1773796492675.4075,
|
|
1935
|
+
"size": 102,
|
|
1936
|
+
"indexedAt": "2026-03-18T01:20:04.748Z"
|
|
929
1937
|
}
|
|
930
1938
|
}
|
|
931
1939
|
}
|