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
|
@@ -1,12 +1,174 @@
|
|
|
1
1
|
{
|
|
2
2
|
"nodes": [
|
|
3
|
+
{
|
|
4
|
+
"id": "commands",
|
|
5
|
+
"type": "feature",
|
|
6
|
+
"label": "commands",
|
|
7
|
+
"metadata": {
|
|
8
|
+
"path": "src/commands",
|
|
9
|
+
"fileCount": 3
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"id": "src",
|
|
14
|
+
"type": "feature",
|
|
15
|
+
"label": "src",
|
|
16
|
+
"metadata": {
|
|
17
|
+
"path": "src",
|
|
18
|
+
"fileCount": 49
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"id": "test-projects",
|
|
23
|
+
"type": "feature",
|
|
24
|
+
"label": "test-projects",
|
|
25
|
+
"metadata": {
|
|
26
|
+
"path": "test-projects",
|
|
27
|
+
"fileCount": 37
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": "account",
|
|
32
|
+
"type": "flow",
|
|
33
|
+
"label": "account",
|
|
34
|
+
"metadata": {
|
|
35
|
+
"entrypoint": "test-projects/salesforce-cli/force-app/main/default/classes/AccountController.cls",
|
|
36
|
+
"fileCount": 1
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"id": "add_",
|
|
41
|
+
"type": "flow",
|
|
42
|
+
"label": "add_",
|
|
43
|
+
"metadata": {
|
|
44
|
+
"entrypoint": "test-projects/python-cli/cli/add_command.py",
|
|
45
|
+
"fileCount": 1
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"id": "ai-first",
|
|
50
|
+
"type": "flow",
|
|
51
|
+
"label": "ai-first",
|
|
52
|
+
"metadata": {
|
|
53
|
+
"entrypoint": "src/commands/ai-first.ts",
|
|
54
|
+
"fileCount": 1
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"id": "auth.",
|
|
59
|
+
"type": "flow",
|
|
60
|
+
"label": "auth.",
|
|
61
|
+
"metadata": {
|
|
62
|
+
"entrypoint": "test-projects/nestjs-backend/src/auth/auth.controller.ts",
|
|
63
|
+
"fileCount": 2
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"id": "auth",
|
|
68
|
+
"type": "flow",
|
|
69
|
+
"label": "auth",
|
|
70
|
+
"metadata": {
|
|
71
|
+
"entrypoint": "test-projects/express-api/controllers/authController.js",
|
|
72
|
+
"fileCount": 2
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"id": "dashboard",
|
|
77
|
+
"type": "flow",
|
|
78
|
+
"label": "dashboard",
|
|
79
|
+
"metadata": {
|
|
80
|
+
"entrypoint": "test-projects/react-app/src/pages/DashboardPage.tsx",
|
|
81
|
+
"fileCount": 1
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"id": "doctor",
|
|
86
|
+
"type": "flow",
|
|
87
|
+
"label": "doctor",
|
|
88
|
+
"metadata": {
|
|
89
|
+
"entrypoint": "src/commands/doctor.ts",
|
|
90
|
+
"fileCount": 1
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"id": "explore",
|
|
95
|
+
"type": "flow",
|
|
96
|
+
"label": "explore",
|
|
97
|
+
"metadata": {
|
|
98
|
+
"entrypoint": "src/commands/explore.ts",
|
|
99
|
+
"fileCount": 1
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"id": "list_",
|
|
104
|
+
"type": "flow",
|
|
105
|
+
"label": "list_",
|
|
106
|
+
"metadata": {
|
|
107
|
+
"entrypoint": "test-projects/python-cli/cli/list_command.py",
|
|
108
|
+
"fileCount": 1
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"id": "login",
|
|
113
|
+
"type": "flow",
|
|
114
|
+
"label": "login",
|
|
115
|
+
"metadata": {
|
|
116
|
+
"entrypoint": "test-projects/react-app/src/pages/LoginPage.tsx",
|
|
117
|
+
"fileCount": 1
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"id": "opportunity",
|
|
122
|
+
"type": "flow",
|
|
123
|
+
"label": "opportunity",
|
|
124
|
+
"metadata": {
|
|
125
|
+
"entrypoint": "test-projects/salesforce-cli/force-app/main/default/classes/OpportunityController.cls",
|
|
126
|
+
"fileCount": 1
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"id": "remove_",
|
|
131
|
+
"type": "flow",
|
|
132
|
+
"label": "remove_",
|
|
133
|
+
"metadata": {
|
|
134
|
+
"entrypoint": "test-projects/python-cli/cli/remove_command.py",
|
|
135
|
+
"fileCount": 1
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"id": "user",
|
|
140
|
+
"type": "flow",
|
|
141
|
+
"label": "user",
|
|
142
|
+
"metadata": {
|
|
143
|
+
"entrypoint": "test-projects/express-api/controllers/userController.js",
|
|
144
|
+
"fileCount": 4
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"id": "users.",
|
|
149
|
+
"type": "flow",
|
|
150
|
+
"label": "users.",
|
|
151
|
+
"metadata": {
|
|
152
|
+
"entrypoint": "test-projects/nestjs-backend/src/users/users.controller.ts",
|
|
153
|
+
"fileCount": 2
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"id": "users",
|
|
158
|
+
"type": "flow",
|
|
159
|
+
"label": "users",
|
|
160
|
+
"metadata": {
|
|
161
|
+
"entrypoint": "test-projects/react-app/src/pages/UsersPage.tsx",
|
|
162
|
+
"fileCount": 1
|
|
163
|
+
}
|
|
164
|
+
},
|
|
3
165
|
{
|
|
4
166
|
"id": "commit:CHANGELOG.md",
|
|
5
167
|
"type": "commit",
|
|
6
168
|
"label": "CHANGELOG.md",
|
|
7
169
|
"metadata": {
|
|
8
170
|
"file": "CHANGELOG.md",
|
|
9
|
-
"commitCount":
|
|
171
|
+
"commitCount": 15
|
|
10
172
|
}
|
|
11
173
|
},
|
|
12
174
|
{
|
|
@@ -19,21 +181,21 @@
|
|
|
19
181
|
}
|
|
20
182
|
},
|
|
21
183
|
{
|
|
22
|
-
"id": "commit
|
|
184
|
+
"id": "commit:.github/workflows/deploy-docs.yml",
|
|
23
185
|
"type": "commit",
|
|
24
|
-
"label": "
|
|
186
|
+
"label": "deploy-docs.yml",
|
|
25
187
|
"metadata": {
|
|
26
|
-
"file": "
|
|
27
|
-
"commitCount":
|
|
188
|
+
"file": ".github/workflows/deploy-docs.yml",
|
|
189
|
+
"commitCount": 11
|
|
28
190
|
}
|
|
29
191
|
},
|
|
30
192
|
{
|
|
31
|
-
"id": "commit
|
|
193
|
+
"id": "commit:package.json",
|
|
32
194
|
"type": "commit",
|
|
33
|
-
"label": "
|
|
195
|
+
"label": "package.json",
|
|
34
196
|
"metadata": {
|
|
35
|
-
"file": ".
|
|
36
|
-
"commitCount":
|
|
197
|
+
"file": "package.json",
|
|
198
|
+
"commitCount": 8
|
|
37
199
|
}
|
|
38
200
|
},
|
|
39
201
|
{
|
|
@@ -42,7 +204,7 @@
|
|
|
42
204
|
"label": "ai-first.js",
|
|
43
205
|
"metadata": {
|
|
44
206
|
"file": "dist/commands/ai-first.js",
|
|
45
|
-
"commitCount":
|
|
207
|
+
"commitCount": 8
|
|
46
208
|
}
|
|
47
209
|
},
|
|
48
210
|
{
|
|
@@ -51,16 +213,16 @@
|
|
|
51
213
|
"label": "ai-first.js.map",
|
|
52
214
|
"metadata": {
|
|
53
215
|
"file": "dist/commands/ai-first.js.map",
|
|
54
|
-
"commitCount":
|
|
216
|
+
"commitCount": 8
|
|
55
217
|
}
|
|
56
218
|
},
|
|
57
219
|
{
|
|
58
|
-
"id": "commit:
|
|
220
|
+
"id": "commit:README.md",
|
|
59
221
|
"type": "commit",
|
|
60
|
-
"label": "
|
|
222
|
+
"label": "README.md",
|
|
61
223
|
"metadata": {
|
|
62
|
-
"file": "
|
|
63
|
-
"commitCount":
|
|
224
|
+
"file": "README.md",
|
|
225
|
+
"commitCount": 8
|
|
64
226
|
}
|
|
65
227
|
},
|
|
66
228
|
{
|
|
@@ -69,24 +231,33 @@
|
|
|
69
231
|
"label": "ai-first.d.ts.map",
|
|
70
232
|
"metadata": {
|
|
71
233
|
"file": "dist/commands/ai-first.d.ts.map",
|
|
72
|
-
"commitCount":
|
|
234
|
+
"commitCount": 5
|
|
73
235
|
}
|
|
74
236
|
},
|
|
75
237
|
{
|
|
76
|
-
"id": "commit:
|
|
238
|
+
"id": "commit:ai/dependencies.json",
|
|
77
239
|
"type": "commit",
|
|
78
|
-
"label": "
|
|
240
|
+
"label": "dependencies.json",
|
|
79
241
|
"metadata": {
|
|
80
|
-
"file": "
|
|
81
|
-
"commitCount":
|
|
242
|
+
"file": "ai/dependencies.json",
|
|
243
|
+
"commitCount": 4
|
|
82
244
|
}
|
|
83
245
|
},
|
|
84
246
|
{
|
|
85
|
-
"id": "commit:
|
|
247
|
+
"id": "commit:ai/symbols.json",
|
|
86
248
|
"type": "commit",
|
|
87
|
-
"label": "
|
|
249
|
+
"label": "symbols.json",
|
|
88
250
|
"metadata": {
|
|
89
|
-
"file": "
|
|
251
|
+
"file": "ai/symbols.json",
|
|
252
|
+
"commitCount": 4
|
|
253
|
+
}
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"id": "commit:README.es.md",
|
|
257
|
+
"type": "commit",
|
|
258
|
+
"label": "README.es.md",
|
|
259
|
+
"metadata": {
|
|
260
|
+
"file": "README.es.md",
|
|
90
261
|
"commitCount": 4
|
|
91
262
|
}
|
|
92
263
|
},
|
|
@@ -99,6 +270,15 @@
|
|
|
99
270
|
"commitCount": 4
|
|
100
271
|
}
|
|
101
272
|
},
|
|
273
|
+
{
|
|
274
|
+
"id": "commit:ai/index-state.json",
|
|
275
|
+
"type": "commit",
|
|
276
|
+
"label": "index-state.json",
|
|
277
|
+
"metadata": {
|
|
278
|
+
"file": "ai/index-state.json",
|
|
279
|
+
"commitCount": 3
|
|
280
|
+
}
|
|
281
|
+
},
|
|
102
282
|
{
|
|
103
283
|
"id": "commit:docs/guide/architecture.md",
|
|
104
284
|
"type": "commit",
|
|
@@ -126,15 +306,6 @@
|
|
|
126
306
|
"commitCount": 3
|
|
127
307
|
}
|
|
128
308
|
},
|
|
129
|
-
{
|
|
130
|
-
"id": "commit:ai/dependencies.json",
|
|
131
|
-
"type": "commit",
|
|
132
|
-
"label": "dependencies.json",
|
|
133
|
-
"metadata": {
|
|
134
|
-
"file": "ai/dependencies.json",
|
|
135
|
-
"commitCount": 3
|
|
136
|
-
}
|
|
137
|
-
},
|
|
138
309
|
{
|
|
139
310
|
"id": "commit:ai/files.json",
|
|
140
311
|
"type": "commit",
|
|
@@ -199,20 +370,11 @@
|
|
|
199
370
|
}
|
|
200
371
|
},
|
|
201
372
|
{
|
|
202
|
-
"id": "commit:
|
|
203
|
-
"type": "commit",
|
|
204
|
-
"label": "symbols.json",
|
|
205
|
-
"metadata": {
|
|
206
|
-
"file": "ai/symbols.json",
|
|
207
|
-
"commitCount": 3
|
|
208
|
-
}
|
|
209
|
-
},
|
|
210
|
-
{
|
|
211
|
-
"id": "commit:node_modules/.package-lock.json",
|
|
373
|
+
"id": "commit:package-lock.json",
|
|
212
374
|
"type": "commit",
|
|
213
|
-
"label": "
|
|
375
|
+
"label": "package-lock.json",
|
|
214
376
|
"metadata": {
|
|
215
|
-
"file": "
|
|
377
|
+
"file": "package-lock.json",
|
|
216
378
|
"commitCount": 3
|
|
217
379
|
}
|
|
218
380
|
},
|
|
@@ -452,11 +614,756 @@
|
|
|
452
614
|
}
|
|
453
615
|
],
|
|
454
616
|
"edges": [
|
|
617
|
+
{
|
|
618
|
+
"from": "test-projects",
|
|
619
|
+
"to": "account",
|
|
620
|
+
"type": "contains"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"from": "test-projects",
|
|
624
|
+
"to": "add_",
|
|
625
|
+
"type": "contains"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"from": "commands",
|
|
629
|
+
"to": "ai-first",
|
|
630
|
+
"type": "contains"
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"from": "src",
|
|
634
|
+
"to": "ai-first",
|
|
635
|
+
"type": "contains"
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"from": "test-projects",
|
|
639
|
+
"to": "auth.",
|
|
640
|
+
"type": "contains"
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"from": "test-projects",
|
|
644
|
+
"to": "auth",
|
|
645
|
+
"type": "contains"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"from": "test-projects",
|
|
649
|
+
"to": "dashboard",
|
|
650
|
+
"type": "contains"
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"from": "commands",
|
|
654
|
+
"to": "doctor",
|
|
655
|
+
"type": "contains"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"from": "src",
|
|
659
|
+
"to": "doctor",
|
|
660
|
+
"type": "contains"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"from": "commands",
|
|
664
|
+
"to": "explore",
|
|
665
|
+
"type": "contains"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"from": "src",
|
|
669
|
+
"to": "explore",
|
|
670
|
+
"type": "contains"
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
"from": "test-projects",
|
|
674
|
+
"to": "list_",
|
|
675
|
+
"type": "contains"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"from": "test-projects",
|
|
679
|
+
"to": "login",
|
|
680
|
+
"type": "contains"
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"from": "test-projects",
|
|
684
|
+
"to": "opportunity",
|
|
685
|
+
"type": "contains"
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"from": "test-projects",
|
|
689
|
+
"to": "remove_",
|
|
690
|
+
"type": "contains"
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"from": "test-projects",
|
|
694
|
+
"to": "user",
|
|
695
|
+
"type": "contains"
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"from": "test-projects",
|
|
699
|
+
"to": "users.",
|
|
700
|
+
"type": "contains"
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"from": "test-projects",
|
|
704
|
+
"to": "users",
|
|
705
|
+
"type": "contains"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"from": "account",
|
|
709
|
+
"to": "test-projects/salesforce-cli/force-app/main/default/classes/AccountController.cls",
|
|
710
|
+
"type": "implements"
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"from": "add_",
|
|
714
|
+
"to": "test-projects/python-cli/cli/add_command.py",
|
|
715
|
+
"type": "implements"
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"from": "ai-first",
|
|
719
|
+
"to": "src/commands/ai-first.ts",
|
|
720
|
+
"type": "implements"
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"from": "auth.",
|
|
724
|
+
"to": "test-projects/nestjs-backend/src/auth/auth.controller.ts",
|
|
725
|
+
"type": "implements"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"from": "auth.",
|
|
729
|
+
"to": "test-projects/nestjs-backend/src/auth/auth.service.ts",
|
|
730
|
+
"type": "implements"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"from": "auth",
|
|
734
|
+
"to": "test-projects/express-api/controllers/authController.js",
|
|
735
|
+
"type": "implements"
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"from": "auth",
|
|
739
|
+
"to": "test-projects/express-api/services/authService.js",
|
|
740
|
+
"type": "implements"
|
|
741
|
+
},
|
|
742
|
+
{
|
|
743
|
+
"from": "dashboard",
|
|
744
|
+
"to": "test-projects/react-app/src/pages/DashboardPage.tsx",
|
|
745
|
+
"type": "implements"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"from": "doctor",
|
|
749
|
+
"to": "src/commands/doctor.ts",
|
|
750
|
+
"type": "implements"
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
"from": "explore",
|
|
754
|
+
"to": "src/commands/explore.ts",
|
|
755
|
+
"type": "implements"
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
"from": "list_",
|
|
759
|
+
"to": "test-projects/python-cli/cli/list_command.py",
|
|
760
|
+
"type": "implements"
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"from": "login",
|
|
764
|
+
"to": "test-projects/react-app/src/pages/LoginPage.tsx",
|
|
765
|
+
"type": "implements"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"from": "opportunity",
|
|
769
|
+
"to": "test-projects/salesforce-cli/force-app/main/default/classes/OpportunityController.cls",
|
|
770
|
+
"type": "implements"
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"from": "remove_",
|
|
774
|
+
"to": "test-projects/python-cli/cli/remove_command.py",
|
|
775
|
+
"type": "implements"
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"from": "user",
|
|
779
|
+
"to": "test-projects/express-api/controllers/userController.js",
|
|
780
|
+
"type": "implements"
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"from": "user",
|
|
784
|
+
"to": "test-projects/express-api/models/userRepository.js",
|
|
785
|
+
"type": "implements"
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"from": "user",
|
|
789
|
+
"to": "test-projects/express-api/services/userService.js",
|
|
790
|
+
"type": "implements"
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"from": "user",
|
|
794
|
+
"to": "test-projects/react-app/src/services/userService.ts",
|
|
795
|
+
"type": "implements"
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
"from": "users.",
|
|
799
|
+
"to": "test-projects/nestjs-backend/src/users/users.controller.ts",
|
|
800
|
+
"type": "implements"
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
"from": "users.",
|
|
804
|
+
"to": "test-projects/nestjs-backend/src/users/users.service.ts",
|
|
805
|
+
"type": "implements"
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
"from": "users",
|
|
809
|
+
"to": "test-projects/react-app/src/pages/UsersPage.tsx",
|
|
810
|
+
"type": "implements"
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"from": "commit:package.json",
|
|
814
|
+
"to": "package.json",
|
|
815
|
+
"type": "modifies"
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
"from": "commit:dist/commands/ai-first.d.ts",
|
|
819
|
+
"to": "dist/commands/ai-first.d.ts",
|
|
820
|
+
"type": "modifies"
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
"from": "commit:dist/commands/ai-first.d.ts.map",
|
|
824
|
+
"to": "dist/commands/ai-first.d.ts.map",
|
|
825
|
+
"type": "modifies"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"from": "commit:dist/commands/ai-first.js",
|
|
829
|
+
"to": "dist/commands/ai-first.js",
|
|
830
|
+
"type": "modifies"
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"from": "commit:dist/commands/ai-first.js.map",
|
|
834
|
+
"to": "dist/commands/ai-first.js.map",
|
|
835
|
+
"type": "modifies"
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"from": "commit:src/commands/ai-first.ts",
|
|
839
|
+
"to": "src/commands/ai-first.ts",
|
|
840
|
+
"type": "modifies"
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"from": "commit:ai/dependencies.json",
|
|
844
|
+
"to": "ai/dependencies.json",
|
|
845
|
+
"type": "modifies"
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
"from": "commit:ai/git/commit-activity.json",
|
|
849
|
+
"to": "ai/git/commit-activity.json",
|
|
850
|
+
"type": "modifies"
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"from": "commit:ai/git/recent-features.json",
|
|
854
|
+
"to": "ai/git/recent-features.json",
|
|
855
|
+
"type": "modifies"
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
"from": "commit:ai/git/recent-files.json",
|
|
859
|
+
"to": "ai/git/recent-files.json",
|
|
860
|
+
"type": "modifies"
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
"from": "commit:ai/git/recent-flows.json",
|
|
864
|
+
"to": "ai/git/recent-flows.json",
|
|
865
|
+
"type": "modifies"
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
"from": "commit:ai/graph/knowledge-graph.json",
|
|
869
|
+
"to": "ai/graph/knowledge-graph.json",
|
|
870
|
+
"type": "modifies"
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
"from": "commit:ai/index-state.json",
|
|
874
|
+
"to": "ai/index-state.json",
|
|
875
|
+
"type": "modifies"
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"from": "commit:ai/symbols.json",
|
|
879
|
+
"to": "ai/symbols.json",
|
|
880
|
+
"type": "modifies"
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"from": "commit:dist/core/adapters/adapterRegistry.d.ts",
|
|
884
|
+
"to": "dist/core/adapters/adapterRegistry.d.ts",
|
|
885
|
+
"type": "modifies"
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"from": "commit:dist/core/adapters/adapterRegistry.d.ts.map",
|
|
889
|
+
"to": "dist/core/adapters/adapterRegistry.d.ts.map",
|
|
890
|
+
"type": "modifies"
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"from": "commit:dist/core/adapters/adapterRegistry.js",
|
|
894
|
+
"to": "dist/core/adapters/adapterRegistry.js",
|
|
895
|
+
"type": "modifies"
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"from": "commit:dist/core/adapters/adapterRegistry.js.map",
|
|
899
|
+
"to": "dist/core/adapters/adapterRegistry.js.map",
|
|
900
|
+
"type": "modifies"
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
"from": "commit:dist/core/adapters/baseAdapter.d.ts",
|
|
904
|
+
"to": "dist/core/adapters/baseAdapter.d.ts",
|
|
905
|
+
"type": "modifies"
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"from": "commit:dist/core/adapters/baseAdapter.d.ts.map",
|
|
909
|
+
"to": "dist/core/adapters/baseAdapter.d.ts.map",
|
|
910
|
+
"type": "modifies"
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
"from": "commit:dist/core/adapters/baseAdapter.js",
|
|
914
|
+
"to": "dist/core/adapters/baseAdapter.js",
|
|
915
|
+
"type": "modifies"
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"from": "commit:dist/core/adapters/baseAdapter.js.map",
|
|
919
|
+
"to": "dist/core/adapters/baseAdapter.js.map",
|
|
920
|
+
"type": "modifies"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"from": "commit:dist/core/adapters/community/fastapiAdapter.d.ts",
|
|
924
|
+
"to": "dist/core/adapters/community/fastapiAdapter.d.ts",
|
|
925
|
+
"type": "modifies"
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
"from": "commit:dist/core/adapters/community/fastapiAdapter.d.ts.map",
|
|
929
|
+
"to": "dist/core/adapters/community/fastapiAdapter.d.ts.map",
|
|
930
|
+
"type": "modifies"
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"from": "commit:dist/core/adapters/community/fastapiAdapter.js",
|
|
934
|
+
"to": "dist/core/adapters/community/fastapiAdapter.js",
|
|
935
|
+
"type": "modifies"
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
"from": "commit:dist/core/adapters/community/fastapiAdapter.js.map",
|
|
939
|
+
"to": "dist/core/adapters/community/fastapiAdapter.js.map",
|
|
940
|
+
"type": "modifies"
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
"from": "commit:dist/core/adapters/community/index.d.ts",
|
|
944
|
+
"to": "dist/core/adapters/community/index.d.ts",
|
|
945
|
+
"type": "modifies"
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"from": "commit:dist/core/adapters/community/index.d.ts.map",
|
|
949
|
+
"to": "dist/core/adapters/community/index.d.ts.map",
|
|
950
|
+
"type": "modifies"
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"from": "commit:dist/core/adapters/community/index.js",
|
|
954
|
+
"to": "dist/core/adapters/community/index.js",
|
|
955
|
+
"type": "modifies"
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
"from": "commit:dist/core/adapters/community/index.js.map",
|
|
959
|
+
"to": "dist/core/adapters/community/index.js.map",
|
|
960
|
+
"type": "modifies"
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
"from": "commit:dist/core/adapters/community/laravelAdapter.d.ts",
|
|
964
|
+
"to": "dist/core/adapters/community/laravelAdapter.d.ts",
|
|
965
|
+
"type": "modifies"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"from": "commit:dist/core/adapters/community/laravelAdapter.d.ts.map",
|
|
969
|
+
"to": "dist/core/adapters/community/laravelAdapter.d.ts.map",
|
|
970
|
+
"type": "modifies"
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
"from": "commit:dist/core/adapters/community/laravelAdapter.js",
|
|
974
|
+
"to": "dist/core/adapters/community/laravelAdapter.js",
|
|
975
|
+
"type": "modifies"
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
"from": "commit:dist/core/adapters/community/laravelAdapter.js.map",
|
|
979
|
+
"to": "dist/core/adapters/community/laravelAdapter.js.map",
|
|
980
|
+
"type": "modifies"
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
"from": "commit:dist/core/adapters/community/nestjsAdapter.d.ts",
|
|
984
|
+
"to": "dist/core/adapters/community/nestjsAdapter.d.ts",
|
|
985
|
+
"type": "modifies"
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
"from": "commit:dist/core/adapters/community/nestjsAdapter.d.ts.map",
|
|
989
|
+
"to": "dist/core/adapters/community/nestjsAdapter.d.ts.map",
|
|
990
|
+
"type": "modifies"
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"from": "commit:dist/core/adapters/community/nestjsAdapter.js",
|
|
994
|
+
"to": "dist/core/adapters/community/nestjsAdapter.js",
|
|
995
|
+
"type": "modifies"
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
"from": "commit:dist/core/adapters/community/nestjsAdapter.js.map",
|
|
999
|
+
"to": "dist/core/adapters/community/nestjsAdapter.js.map",
|
|
1000
|
+
"type": "modifies"
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"from": "commit:dist/core/adapters/community/phoenixAdapter.d.ts",
|
|
1004
|
+
"to": "dist/core/adapters/community/phoenixAdapter.d.ts",
|
|
1005
|
+
"type": "modifies"
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
"from": "commit:dist/core/adapters/community/phoenixAdapter.d.ts.map",
|
|
1009
|
+
"to": "dist/core/adapters/community/phoenixAdapter.d.ts.map",
|
|
1010
|
+
"type": "modifies"
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
"from": "commit:dist/core/adapters/community/phoenixAdapter.js",
|
|
1014
|
+
"to": "dist/core/adapters/community/phoenixAdapter.js",
|
|
1015
|
+
"type": "modifies"
|
|
1016
|
+
},
|
|
1017
|
+
{
|
|
1018
|
+
"from": "commit:dist/core/adapters/community/phoenixAdapter.js.map",
|
|
1019
|
+
"to": "dist/core/adapters/community/phoenixAdapter.js.map",
|
|
1020
|
+
"type": "modifies"
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
"from": "commit:dist/core/adapters/community/springBootAdapter.d.ts",
|
|
1024
|
+
"to": "dist/core/adapters/community/springBootAdapter.d.ts",
|
|
1025
|
+
"type": "modifies"
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
"from": "commit:dist/core/adapters/community/springBootAdapter.d.ts.map",
|
|
1029
|
+
"to": "dist/core/adapters/community/springBootAdapter.d.ts.map",
|
|
1030
|
+
"type": "modifies"
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
"from": "commit:dist/core/adapters/community/springBootAdapter.js",
|
|
1034
|
+
"to": "dist/core/adapters/community/springBootAdapter.js",
|
|
1035
|
+
"type": "modifies"
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
"from": "commit:dist/core/adapters/community/springBootAdapter.js.map",
|
|
1039
|
+
"to": "dist/core/adapters/community/springBootAdapter.js.map",
|
|
1040
|
+
"type": "modifies"
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
"from": "commit:dist/core/adapters/dotnetAdapter.d.ts",
|
|
1044
|
+
"to": "dist/core/adapters/dotnetAdapter.d.ts",
|
|
1045
|
+
"type": "modifies"
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
"from": "commit:dist/core/adapters/dotnetAdapter.d.ts.map",
|
|
1049
|
+
"to": "dist/core/adapters/dotnetAdapter.d.ts.map",
|
|
1050
|
+
"type": "modifies"
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
"from": "commit:dist/core/adapters/dotnetAdapter.js",
|
|
1054
|
+
"to": "dist/core/adapters/dotnetAdapter.js",
|
|
1055
|
+
"type": "modifies"
|
|
1056
|
+
},
|
|
1057
|
+
{
|
|
1058
|
+
"from": "commit:dist/core/adapters/dotnetAdapter.js.map",
|
|
1059
|
+
"to": "dist/core/adapters/dotnetAdapter.js.map",
|
|
1060
|
+
"type": "modifies"
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
"from": "commit:dist/core/adapters/index.d.ts",
|
|
1064
|
+
"to": "dist/core/adapters/index.d.ts",
|
|
1065
|
+
"type": "modifies"
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
"from": "commit:dist/core/adapters/index.d.ts.map",
|
|
1069
|
+
"to": "dist/core/adapters/index.d.ts.map",
|
|
1070
|
+
"type": "modifies"
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
"from": "commit:dist/core/adapters/index.js",
|
|
1074
|
+
"to": "dist/core/adapters/index.js",
|
|
1075
|
+
"type": "modifies"
|
|
1076
|
+
},
|
|
1077
|
+
{
|
|
1078
|
+
"from": "commit:dist/core/adapters/index.js.map",
|
|
1079
|
+
"to": "dist/core/adapters/index.js.map",
|
|
1080
|
+
"type": "modifies"
|
|
1081
|
+
},
|
|
1082
|
+
{
|
|
1083
|
+
"from": "commit:dist/core/adapters/javascriptAdapter.d.ts",
|
|
1084
|
+
"to": "dist/core/adapters/javascriptAdapter.d.ts",
|
|
1085
|
+
"type": "modifies"
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"from": "commit:dist/core/adapters/javascriptAdapter.d.ts.map",
|
|
1089
|
+
"to": "dist/core/adapters/javascriptAdapter.d.ts.map",
|
|
1090
|
+
"type": "modifies"
|
|
1091
|
+
},
|
|
1092
|
+
{
|
|
1093
|
+
"from": "commit:dist/core/adapters/javascriptAdapter.js",
|
|
1094
|
+
"to": "dist/core/adapters/javascriptAdapter.js",
|
|
1095
|
+
"type": "modifies"
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
"from": "commit:dist/core/adapters/javascriptAdapter.js.map",
|
|
1099
|
+
"to": "dist/core/adapters/javascriptAdapter.js.map",
|
|
1100
|
+
"type": "modifies"
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
"from": "commit:dist/core/adapters/pythonAdapter.d.ts",
|
|
1104
|
+
"to": "dist/core/adapters/pythonAdapter.d.ts",
|
|
1105
|
+
"type": "modifies"
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"from": "commit:dist/core/adapters/pythonAdapter.d.ts.map",
|
|
1109
|
+
"to": "dist/core/adapters/pythonAdapter.d.ts.map",
|
|
1110
|
+
"type": "modifies"
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
"from": "commit:dist/core/adapters/pythonAdapter.js",
|
|
1114
|
+
"to": "dist/core/adapters/pythonAdapter.js",
|
|
1115
|
+
"type": "modifies"
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
"from": "commit:dist/core/adapters/pythonAdapter.js.map",
|
|
1119
|
+
"to": "dist/core/adapters/pythonAdapter.js.map",
|
|
1120
|
+
"type": "modifies"
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
"from": "commit:dist/core/adapters/railsAdapter.d.ts",
|
|
1124
|
+
"to": "dist/core/adapters/railsAdapter.d.ts",
|
|
1125
|
+
"type": "modifies"
|
|
1126
|
+
},
|
|
1127
|
+
{
|
|
1128
|
+
"from": "commit:dist/core/adapters/railsAdapter.d.ts.map",
|
|
1129
|
+
"to": "dist/core/adapters/railsAdapter.d.ts.map",
|
|
1130
|
+
"type": "modifies"
|
|
1131
|
+
},
|
|
1132
|
+
{
|
|
1133
|
+
"from": "commit:dist/core/adapters/railsAdapter.js",
|
|
1134
|
+
"to": "dist/core/adapters/railsAdapter.js",
|
|
1135
|
+
"type": "modifies"
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
"from": "commit:dist/core/adapters/railsAdapter.js.map",
|
|
1139
|
+
"to": "dist/core/adapters/railsAdapter.js.map",
|
|
1140
|
+
"type": "modifies"
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
"from": "commit:dist/core/adapters/salesforceAdapter.d.ts",
|
|
1144
|
+
"to": "dist/core/adapters/salesforceAdapter.d.ts",
|
|
1145
|
+
"type": "modifies"
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
"from": "commit:dist/core/adapters/salesforceAdapter.d.ts.map",
|
|
1149
|
+
"to": "dist/core/adapters/salesforceAdapter.d.ts.map",
|
|
1150
|
+
"type": "modifies"
|
|
1151
|
+
},
|
|
1152
|
+
{
|
|
1153
|
+
"from": "commit:dist/core/adapters/salesforceAdapter.js",
|
|
1154
|
+
"to": "dist/core/adapters/salesforceAdapter.js",
|
|
1155
|
+
"type": "modifies"
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
"from": "commit:dist/core/adapters/salesforceAdapter.js.map",
|
|
1159
|
+
"to": "dist/core/adapters/salesforceAdapter.js.map",
|
|
1160
|
+
"type": "modifies"
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
"from": "commit:dist/core/adapters/sdk.d.ts",
|
|
1164
|
+
"to": "dist/core/adapters/sdk.d.ts",
|
|
1165
|
+
"type": "modifies"
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
"from": "commit:dist/core/adapters/sdk.d.ts.map",
|
|
1169
|
+
"to": "dist/core/adapters/sdk.d.ts.map",
|
|
1170
|
+
"type": "modifies"
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
"from": "commit:dist/core/adapters/sdk.js",
|
|
1174
|
+
"to": "dist/core/adapters/sdk.js",
|
|
1175
|
+
"type": "modifies"
|
|
1176
|
+
},
|
|
1177
|
+
{
|
|
1178
|
+
"from": "commit:dist/core/adapters/sdk.js.map",
|
|
1179
|
+
"to": "dist/core/adapters/sdk.js.map",
|
|
1180
|
+
"type": "modifies"
|
|
1181
|
+
},
|
|
1182
|
+
{
|
|
1183
|
+
"from": "commit:dist/core/gitAnalyzer.d.ts",
|
|
1184
|
+
"to": "dist/core/gitAnalyzer.d.ts",
|
|
1185
|
+
"type": "modifies"
|
|
1186
|
+
},
|
|
1187
|
+
{
|
|
1188
|
+
"from": "commit:dist/core/gitAnalyzer.d.ts.map",
|
|
1189
|
+
"to": "dist/core/gitAnalyzer.d.ts.map",
|
|
1190
|
+
"type": "modifies"
|
|
1191
|
+
},
|
|
1192
|
+
{
|
|
1193
|
+
"from": "commit:dist/core/gitAnalyzer.js",
|
|
1194
|
+
"to": "dist/core/gitAnalyzer.js",
|
|
1195
|
+
"type": "modifies"
|
|
1196
|
+
},
|
|
1197
|
+
{
|
|
1198
|
+
"from": "commit:dist/core/gitAnalyzer.js.map",
|
|
1199
|
+
"to": "dist/core/gitAnalyzer.js.map",
|
|
1200
|
+
"type": "modifies"
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
"from": "commit:dist/core/incrementalAnalyzer.d.ts",
|
|
1204
|
+
"to": "dist/core/incrementalAnalyzer.d.ts",
|
|
1205
|
+
"type": "modifies"
|
|
1206
|
+
},
|
|
1207
|
+
{
|
|
1208
|
+
"from": "commit:dist/core/incrementalAnalyzer.d.ts.map",
|
|
1209
|
+
"to": "dist/core/incrementalAnalyzer.d.ts.map",
|
|
1210
|
+
"type": "modifies"
|
|
1211
|
+
},
|
|
1212
|
+
{
|
|
1213
|
+
"from": "commit:dist/core/incrementalAnalyzer.js",
|
|
1214
|
+
"to": "dist/core/incrementalAnalyzer.js",
|
|
1215
|
+
"type": "modifies"
|
|
1216
|
+
},
|
|
1217
|
+
{
|
|
1218
|
+
"from": "commit:dist/core/incrementalAnalyzer.js.map",
|
|
1219
|
+
"to": "dist/core/incrementalAnalyzer.js.map",
|
|
1220
|
+
"type": "modifies"
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
"from": "commit:dist/core/knowledgeGraphBuilder.d.ts",
|
|
1224
|
+
"to": "dist/core/knowledgeGraphBuilder.d.ts",
|
|
1225
|
+
"type": "modifies"
|
|
1226
|
+
},
|
|
1227
|
+
{
|
|
1228
|
+
"from": "commit:dist/core/knowledgeGraphBuilder.d.ts.map",
|
|
1229
|
+
"to": "dist/core/knowledgeGraphBuilder.d.ts.map",
|
|
1230
|
+
"type": "modifies"
|
|
1231
|
+
},
|
|
1232
|
+
{
|
|
1233
|
+
"from": "commit:dist/core/knowledgeGraphBuilder.js",
|
|
1234
|
+
"to": "dist/core/knowledgeGraphBuilder.js",
|
|
1235
|
+
"type": "modifies"
|
|
1236
|
+
},
|
|
1237
|
+
{
|
|
1238
|
+
"from": "commit:dist/core/knowledgeGraphBuilder.js.map",
|
|
1239
|
+
"to": "dist/core/knowledgeGraphBuilder.js.map",
|
|
1240
|
+
"type": "modifies"
|
|
1241
|
+
},
|
|
1242
|
+
{
|
|
1243
|
+
"from": "commit:dist/core/lazyAnalyzer.d.ts",
|
|
1244
|
+
"to": "dist/core/lazyAnalyzer.d.ts",
|
|
1245
|
+
"type": "modifies"
|
|
1246
|
+
},
|
|
1247
|
+
{
|
|
1248
|
+
"from": "commit:dist/core/lazyAnalyzer.d.ts.map",
|
|
1249
|
+
"to": "dist/core/lazyAnalyzer.d.ts.map",
|
|
1250
|
+
"type": "modifies"
|
|
1251
|
+
},
|
|
1252
|
+
{
|
|
1253
|
+
"from": "commit:dist/core/lazyAnalyzer.js",
|
|
1254
|
+
"to": "dist/core/lazyAnalyzer.js",
|
|
1255
|
+
"type": "modifies"
|
|
1256
|
+
},
|
|
1257
|
+
{
|
|
1258
|
+
"from": "commit:dist/core/lazyAnalyzer.js.map",
|
|
1259
|
+
"to": "dist/core/lazyAnalyzer.js.map",
|
|
1260
|
+
"type": "modifies"
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
"from": "commit:dist/core/schema.d.ts",
|
|
1264
|
+
"to": "dist/core/schema.d.ts",
|
|
1265
|
+
"type": "modifies"
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
"from": "commit:dist/core/schema.d.ts.map",
|
|
1269
|
+
"to": "dist/core/schema.d.ts.map",
|
|
1270
|
+
"type": "modifies"
|
|
1271
|
+
},
|
|
1272
|
+
{
|
|
1273
|
+
"from": "commit:dist/core/schema.js",
|
|
1274
|
+
"to": "dist/core/schema.js",
|
|
1275
|
+
"type": "modifies"
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
"from": "commit:dist/core/schema.js.map",
|
|
1279
|
+
"to": "dist/core/schema.js.map",
|
|
1280
|
+
"type": "modifies"
|
|
1281
|
+
},
|
|
455
1282
|
{
|
|
456
1283
|
"from": "commit:CHANGELOG.md",
|
|
457
1284
|
"to": "CHANGELOG.md",
|
|
458
1285
|
"type": "modifies"
|
|
459
1286
|
},
|
|
1287
|
+
{
|
|
1288
|
+
"from": "commit:docs/es/guide/lazy-indexing.md",
|
|
1289
|
+
"to": "docs/es/guide/lazy-indexing.md",
|
|
1290
|
+
"type": "modifies"
|
|
1291
|
+
},
|
|
1292
|
+
{
|
|
1293
|
+
"from": "commit:docs/guide/lazy-indexing.md",
|
|
1294
|
+
"to": "docs/guide/lazy-indexing.md",
|
|
1295
|
+
"type": "modifies"
|
|
1296
|
+
},
|
|
1297
|
+
{
|
|
1298
|
+
"from": "commit:src/core/lazyAnalyzer.ts",
|
|
1299
|
+
"to": "src/core/lazyAnalyzer.ts",
|
|
1300
|
+
"type": "modifies"
|
|
1301
|
+
},
|
|
1302
|
+
{
|
|
1303
|
+
"from": "commit:tests/lazyAnalyzer.test.ts",
|
|
1304
|
+
"to": "tests/lazyAnalyzer.test.ts",
|
|
1305
|
+
"type": "modifies"
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
"from": "commit:docs/es/guide/ai-repository-schema.md",
|
|
1309
|
+
"to": "docs/es/guide/ai-repository-schema.md",
|
|
1310
|
+
"type": "modifies"
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
"from": "commit:docs/guide/ai-repository-schema.md",
|
|
1314
|
+
"to": "docs/guide/ai-repository-schema.md",
|
|
1315
|
+
"type": "modifies"
|
|
1316
|
+
},
|
|
1317
|
+
{
|
|
1318
|
+
"from": "commit:src/core/schema.ts",
|
|
1319
|
+
"to": "src/core/schema.ts",
|
|
1320
|
+
"type": "modifies"
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
"from": "commit:tests/schema.test.ts",
|
|
1324
|
+
"to": "tests/schema.test.ts",
|
|
1325
|
+
"type": "modifies"
|
|
1326
|
+
},
|
|
1327
|
+
{
|
|
1328
|
+
"from": "commit:docs/es/guide/incremental-analysis.md",
|
|
1329
|
+
"to": "docs/es/guide/incremental-analysis.md",
|
|
1330
|
+
"type": "modifies"
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
"from": "commit:docs/guide/incremental-analysis.md",
|
|
1334
|
+
"to": "docs/guide/incremental-analysis.md",
|
|
1335
|
+
"type": "modifies"
|
|
1336
|
+
},
|
|
1337
|
+
{
|
|
1338
|
+
"from": "commit:src/core/incrementalAnalyzer.ts",
|
|
1339
|
+
"to": "src/core/incrementalAnalyzer.ts",
|
|
1340
|
+
"type": "modifies"
|
|
1341
|
+
},
|
|
1342
|
+
{
|
|
1343
|
+
"from": "commit:tests/incrementalAnalyzer.test.ts",
|
|
1344
|
+
"to": "tests/incrementalAnalyzer.test.ts",
|
|
1345
|
+
"type": "modifies"
|
|
1346
|
+
},
|
|
1347
|
+
{
|
|
1348
|
+
"from": "commit:docs/es/guide/knowledge-graph.md",
|
|
1349
|
+
"to": "docs/es/guide/knowledge-graph.md",
|
|
1350
|
+
"type": "modifies"
|
|
1351
|
+
},
|
|
1352
|
+
{
|
|
1353
|
+
"from": "commit:docs/guide/knowledge-graph.md",
|
|
1354
|
+
"to": "docs/guide/knowledge-graph.md",
|
|
1355
|
+
"type": "modifies"
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
"from": "commit:src/core/knowledgeGraphBuilder.ts",
|
|
1359
|
+
"to": "src/core/knowledgeGraphBuilder.ts",
|
|
1360
|
+
"type": "modifies"
|
|
1361
|
+
},
|
|
1362
|
+
{
|
|
1363
|
+
"from": "commit:tests/knowledgeGraph.test.ts",
|
|
1364
|
+
"to": "tests/knowledgeGraph.test.ts",
|
|
1365
|
+
"type": "modifies"
|
|
1366
|
+
},
|
|
460
1367
|
{
|
|
461
1368
|
"from": "commit:docs/es/guide/git-intelligence.md",
|
|
462
1369
|
"to": "docs/es/guide/git-intelligence.md",
|
|
@@ -467,11 +1374,6 @@
|
|
|
467
1374
|
"to": "docs/guide/git-intelligence.md",
|
|
468
1375
|
"type": "modifies"
|
|
469
1376
|
},
|
|
470
|
-
{
|
|
471
|
-
"from": "commit:src/commands/ai-first.ts",
|
|
472
|
-
"to": "src/commands/ai-first.ts",
|
|
473
|
-
"type": "modifies"
|
|
474
|
-
},
|
|
475
1377
|
{
|
|
476
1378
|
"from": "commit:src/core/gitAnalyzer.ts",
|
|
477
1379
|
"to": "src/core/gitAnalyzer.ts",
|
|
@@ -627,11 +1529,6 @@
|
|
|
627
1529
|
"to": "docs/guide/architecture.md",
|
|
628
1530
|
"type": "modifies"
|
|
629
1531
|
},
|
|
630
|
-
{
|
|
631
|
-
"from": "commit:package.json",
|
|
632
|
-
"to": "package.json",
|
|
633
|
-
"type": "modifies"
|
|
634
|
-
},
|
|
635
1532
|
{
|
|
636
1533
|
"from": "commit:src/core/semanticContexts.ts",
|
|
637
1534
|
"to": "src/core/semanticContexts.ts",
|
|
@@ -687,11 +1584,6 @@
|
|
|
687
1584
|
"to": "ai/context/utils.json",
|
|
688
1585
|
"type": "modifies"
|
|
689
1586
|
},
|
|
690
|
-
{
|
|
691
|
-
"from": "commit:ai/dependencies.json",
|
|
692
|
-
"to": "ai/dependencies.json",
|
|
693
|
-
"type": "modifies"
|
|
694
|
-
},
|
|
695
1587
|
{
|
|
696
1588
|
"from": "commit:ai/files.json",
|
|
697
1589
|
"to": "ai/files.json",
|
|
@@ -712,11 +1604,6 @@
|
|
|
712
1604
|
"to": "ai/graph/symbol-references.json",
|
|
713
1605
|
"type": "modifies"
|
|
714
1606
|
},
|
|
715
|
-
{
|
|
716
|
-
"from": "commit:ai/index-state.json",
|
|
717
|
-
"to": "ai/index-state.json",
|
|
718
|
-
"type": "modifies"
|
|
719
|
-
},
|
|
720
1607
|
{
|
|
721
1608
|
"from": "commit:ai/index.db",
|
|
722
1609
|
"to": "ai/index.db",
|
|
@@ -747,11 +1634,6 @@
|
|
|
747
1634
|
"to": "ai/summary.md",
|
|
748
1635
|
"type": "modifies"
|
|
749
1636
|
},
|
|
750
|
-
{
|
|
751
|
-
"from": "commit:ai/symbols.json",
|
|
752
|
-
"to": "ai/symbols.json",
|
|
753
|
-
"type": "modifies"
|
|
754
|
-
},
|
|
755
1637
|
{
|
|
756
1638
|
"from": "commit:dist/analyzers/androidResources.d.ts",
|
|
757
1639
|
"to": "dist/analyzers/androidResources.d.ts",
|
|
@@ -842,21 +1724,6 @@
|
|
|
842
1724
|
"to": "dist/analyzers/techStack.js.map",
|
|
843
1725
|
"type": "modifies"
|
|
844
1726
|
},
|
|
845
|
-
{
|
|
846
|
-
"from": "commit:dist/commands/ai-first.d.ts.map",
|
|
847
|
-
"to": "dist/commands/ai-first.d.ts.map",
|
|
848
|
-
"type": "modifies"
|
|
849
|
-
},
|
|
850
|
-
{
|
|
851
|
-
"from": "commit:dist/commands/ai-first.js",
|
|
852
|
-
"to": "dist/commands/ai-first.js",
|
|
853
|
-
"type": "modifies"
|
|
854
|
-
},
|
|
855
|
-
{
|
|
856
|
-
"from": "commit:dist/commands/ai-first.js.map",
|
|
857
|
-
"to": "dist/commands/ai-first.js.map",
|
|
858
|
-
"type": "modifies"
|
|
859
|
-
},
|
|
860
1727
|
{
|
|
861
1728
|
"from": "commit:dist/core/ccp.d.ts",
|
|
862
1729
|
"to": "dist/core/ccp.d.ts",
|
|
@@ -43531,105 +44398,10 @@
|
|
|
43531
44398
|
"from": "commit:src/core/moduleGraph.ts",
|
|
43532
44399
|
"to": "src/core/moduleGraph.ts",
|
|
43533
44400
|
"type": "modifies"
|
|
43534
|
-
},
|
|
43535
|
-
{
|
|
43536
|
-
"from": "commit:dist/core/hierarchyGenerator.d.ts",
|
|
43537
|
-
"to": "dist/core/hierarchyGenerator.d.ts",
|
|
43538
|
-
"type": "modifies"
|
|
43539
|
-
},
|
|
43540
|
-
{
|
|
43541
|
-
"from": "commit:dist/core/hierarchyGenerator.d.ts.map",
|
|
43542
|
-
"to": "dist/core/hierarchyGenerator.d.ts.map",
|
|
43543
|
-
"type": "modifies"
|
|
43544
|
-
},
|
|
43545
|
-
{
|
|
43546
|
-
"from": "commit:dist/core/hierarchyGenerator.js",
|
|
43547
|
-
"to": "dist/core/hierarchyGenerator.js",
|
|
43548
|
-
"type": "modifies"
|
|
43549
|
-
},
|
|
43550
|
-
{
|
|
43551
|
-
"from": "commit:dist/core/hierarchyGenerator.js.map",
|
|
43552
|
-
"to": "dist/core/hierarchyGenerator.js.map",
|
|
43553
|
-
"type": "modifies"
|
|
43554
|
-
},
|
|
43555
|
-
{
|
|
43556
|
-
"from": "commit:src/core/hierarchyGenerator.ts",
|
|
43557
|
-
"to": "src/core/hierarchyGenerator.ts",
|
|
43558
|
-
"type": "modifies"
|
|
43559
|
-
},
|
|
43560
|
-
{
|
|
43561
|
-
"from": "commit:examples/01-express-api.md",
|
|
43562
|
-
"to": "examples/01-express-api.md",
|
|
43563
|
-
"type": "modifies"
|
|
43564
|
-
},
|
|
43565
|
-
{
|
|
43566
|
-
"from": "commit:examples/02-react-app.md",
|
|
43567
|
-
"to": "examples/02-react-app.md",
|
|
43568
|
-
"type": "modifies"
|
|
43569
|
-
},
|
|
43570
|
-
{
|
|
43571
|
-
"from": "commit:examples/03-python-django.md",
|
|
43572
|
-
"to": "examples/03-python-django.md",
|
|
43573
|
-
"type": "modifies"
|
|
43574
|
-
},
|
|
43575
|
-
{
|
|
43576
|
-
"from": "commit:examples/README.md",
|
|
43577
|
-
"to": "examples/README.md",
|
|
43578
|
-
"type": "modifies"
|
|
43579
|
-
},
|
|
43580
|
-
{
|
|
43581
|
-
"from": "commit:dist/core/aiContextGenerator.d.ts",
|
|
43582
|
-
"to": "dist/core/aiContextGenerator.d.ts",
|
|
43583
|
-
"type": "modifies"
|
|
43584
|
-
},
|
|
43585
|
-
{
|
|
43586
|
-
"from": "commit:dist/core/aiContextGenerator.d.ts.map",
|
|
43587
|
-
"to": "dist/core/aiContextGenerator.d.ts.map",
|
|
43588
|
-
"type": "modifies"
|
|
43589
|
-
},
|
|
43590
|
-
{
|
|
43591
|
-
"from": "commit:dist/core/aiContextGenerator.js",
|
|
43592
|
-
"to": "dist/core/aiContextGenerator.js",
|
|
43593
|
-
"type": "modifies"
|
|
43594
|
-
},
|
|
43595
|
-
{
|
|
43596
|
-
"from": "commit:dist/core/aiContextGenerator.js.map",
|
|
43597
|
-
"to": "dist/core/aiContextGenerator.js.map",
|
|
43598
|
-
"type": "modifies"
|
|
43599
|
-
},
|
|
43600
|
-
{
|
|
43601
|
-
"from": "commit:src/core/aiContextGenerator.ts",
|
|
43602
|
-
"to": "src/core/aiContextGenerator.ts",
|
|
43603
|
-
"type": "modifies"
|
|
43604
|
-
},
|
|
43605
|
-
{
|
|
43606
|
-
"from": "commit:dist/core/indexer.d.ts",
|
|
43607
|
-
"to": "dist/core/indexer.d.ts",
|
|
43608
|
-
"type": "modifies"
|
|
43609
|
-
},
|
|
43610
|
-
{
|
|
43611
|
-
"from": "commit:dist/core/indexer.d.ts.map",
|
|
43612
|
-
"to": "dist/core/indexer.d.ts.map",
|
|
43613
|
-
"type": "modifies"
|
|
43614
|
-
},
|
|
43615
|
-
{
|
|
43616
|
-
"from": "commit:dist/core/indexer.js",
|
|
43617
|
-
"to": "dist/core/indexer.js",
|
|
43618
|
-
"type": "modifies"
|
|
43619
|
-
},
|
|
43620
|
-
{
|
|
43621
|
-
"from": "commit:dist/core/indexer.js.map",
|
|
43622
|
-
"to": "dist/core/indexer.js.map",
|
|
43623
|
-
"type": "modifies"
|
|
43624
|
-
},
|
|
43625
|
-
{
|
|
43626
|
-
"from": "commit:src/core/indexer.ts",
|
|
43627
|
-
"to": "src/core/indexer.ts",
|
|
43628
|
-
"type": "modifies"
|
|
43629
44401
|
}
|
|
43630
44402
|
],
|
|
43631
44403
|
"metadata": {
|
|
43632
|
-
"generated": "2026-03-
|
|
44404
|
+
"generated": "2026-03-18T01:20:04.713Z",
|
|
43633
44405
|
"sources": [
|
|
43634
44406
|
"features",
|
|
43635
44407
|
"flows",
|
|
@@ -43637,7 +44409,7 @@
|
|
|
43637
44409
|
"symbols",
|
|
43638
44410
|
"dependencies"
|
|
43639
44411
|
],
|
|
43640
|
-
"nodeCount":
|
|
43641
|
-
"edgeCount":
|
|
44412
|
+
"nodeCount": 68,
|
|
44413
|
+
"edgeCount": 8757
|
|
43642
44414
|
}
|
|
43643
44415
|
}
|