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
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"src/context/AuthContext.tsx#AuthContext": [
|
|
3
|
+
"src/App.tsx#App",
|
|
4
|
+
"src/hooks/useAuth.ts#useAuth",
|
|
5
|
+
"src/hooks/useAuth.ts#context"
|
|
6
|
+
],
|
|
7
|
+
"src/pages/LoginPage.tsx#LoginPage": [
|
|
8
|
+
"src/App.tsx#App"
|
|
9
|
+
],
|
|
10
|
+
"src/pages/DashboardPage.tsx#DashboardPage": [
|
|
11
|
+
"src/App.tsx#App"
|
|
12
|
+
],
|
|
13
|
+
"src/pages/UsersPage.tsx#UsersPage": [
|
|
14
|
+
"src/App.tsx#App"
|
|
15
|
+
],
|
|
16
|
+
"src/App.tsx#App": [
|
|
17
|
+
"src/main.tsx#root"
|
|
18
|
+
],
|
|
19
|
+
"src/hooks/useAuth.ts#useAuth": [
|
|
20
|
+
"src/pages/DashboardPage.tsx#DashboardPage",
|
|
21
|
+
"src/pages/LoginPage.tsx#LoginPage",
|
|
22
|
+
"src/pages/LoginPage.tsx#navigate",
|
|
23
|
+
"src/pages/LoginPage.tsx#handleSubmit"
|
|
24
|
+
],
|
|
25
|
+
"src/services/userService.ts#User": [
|
|
26
|
+
"src/pages/UsersPage.tsx#UsersPage",
|
|
27
|
+
"src/pages/UsersPage.tsx#fetchUsers",
|
|
28
|
+
"src/pages/UsersPage.tsx#response",
|
|
29
|
+
"src/pages/UsersPage.tsx#data"
|
|
30
|
+
]
|
|
31
|
+
}
|
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0.0",
|
|
3
|
+
"lastIndexed": "2026-03-18T01:15:26.365Z",
|
|
4
|
+
"totalFiles": 34,
|
|
5
|
+
"files": {
|
|
6
|
+
"ai/ai_context.md": {
|
|
7
|
+
"path": "ai/ai_context.md",
|
|
8
|
+
"hash": "4866a92297737fd2e34fabcd82b4974f",
|
|
9
|
+
"mtime": 1773796492594.4062,
|
|
10
|
+
"size": 1647,
|
|
11
|
+
"indexedAt": "2026-03-18T01:15:26.364Z"
|
|
12
|
+
},
|
|
13
|
+
"ai/ai_rules.md": {
|
|
14
|
+
"path": "ai/ai_rules.md",
|
|
15
|
+
"hash": "187ea54135fe8b42b7d38acb8c45ace3",
|
|
16
|
+
"mtime": 1773796492594.4062,
|
|
17
|
+
"size": 906,
|
|
18
|
+
"indexedAt": "2026-03-18T01:15:26.364Z"
|
|
19
|
+
},
|
|
20
|
+
"ai/architecture.md": {
|
|
21
|
+
"path": "ai/architecture.md",
|
|
22
|
+
"hash": "e8662d770fe3c6360a9fc9b20c341266",
|
|
23
|
+
"mtime": 1773796492588.4062,
|
|
24
|
+
"size": 595,
|
|
25
|
+
"indexedAt": "2026-03-18T01:15:26.364Z"
|
|
26
|
+
},
|
|
27
|
+
"ai/cache.json": {
|
|
28
|
+
"path": "ai/cache.json",
|
|
29
|
+
"hash": "ddba1b3416b5e692c6781a46bd4bf3f8",
|
|
30
|
+
"mtime": 1773796517634.7969,
|
|
31
|
+
"size": 3772,
|
|
32
|
+
"indexedAt": "2026-03-18T01:15:26.364Z"
|
|
33
|
+
},
|
|
34
|
+
"ai/context/features/src.json": {
|
|
35
|
+
"path": "ai/context/features/src.json",
|
|
36
|
+
"hash": "2d248c2486297a3db63103469fcb4d7b",
|
|
37
|
+
"mtime": 1773796517636.7969,
|
|
38
|
+
"size": 367,
|
|
39
|
+
"indexedAt": "2026-03-18T01:15:26.364Z"
|
|
40
|
+
},
|
|
41
|
+
"ai/context/flows/dashboard.json": {
|
|
42
|
+
"path": "ai/context/flows/dashboard.json",
|
|
43
|
+
"hash": "0fbc56b67033373bb6157659552c82d9",
|
|
44
|
+
"mtime": 1773796517636.7969,
|
|
45
|
+
"size": 154,
|
|
46
|
+
"indexedAt": "2026-03-18T01:15:26.364Z"
|
|
47
|
+
},
|
|
48
|
+
"ai/context/flows/login.json": {
|
|
49
|
+
"path": "ai/context/flows/login.json",
|
|
50
|
+
"hash": "9311af687ac6a30df3de225f1e18f879",
|
|
51
|
+
"mtime": 1773796517636.7969,
|
|
52
|
+
"size": 142,
|
|
53
|
+
"indexedAt": "2026-03-18T01:15:26.364Z"
|
|
54
|
+
},
|
|
55
|
+
"ai/context/flows/users.json": {
|
|
56
|
+
"path": "ai/context/flows/users.json",
|
|
57
|
+
"hash": "b5ee48090ea670d1afe36d1fa13500b7",
|
|
58
|
+
"mtime": 1773796517636.7969,
|
|
59
|
+
"size": 142,
|
|
60
|
+
"indexedAt": "2026-03-18T01:15:26.364Z"
|
|
61
|
+
},
|
|
62
|
+
"ai/conventions.md": {
|
|
63
|
+
"path": "ai/conventions.md",
|
|
64
|
+
"hash": "cf36cf015f6c293ebf89ec2c7756bb57",
|
|
65
|
+
"mtime": 1773796492590.4062,
|
|
66
|
+
"size": 826,
|
|
67
|
+
"indexedAt": "2026-03-18T01:15:26.364Z"
|
|
68
|
+
},
|
|
69
|
+
"ai/dependencies.json": {
|
|
70
|
+
"path": "ai/dependencies.json",
|
|
71
|
+
"hash": "6a39a4044a4a0ea07350ea8892172705",
|
|
72
|
+
"mtime": 1773796492593.4062,
|
|
73
|
+
"size": 2838,
|
|
74
|
+
"indexedAt": "2026-03-18T01:15:26.364Z"
|
|
75
|
+
},
|
|
76
|
+
"ai/entrypoints.md": {
|
|
77
|
+
"path": "ai/entrypoints.md",
|
|
78
|
+
"hash": "34c8965a66697d9f1d428bb0904f5d8d",
|
|
79
|
+
"mtime": 1773796492589.4062,
|
|
80
|
+
"size": 43,
|
|
81
|
+
"indexedAt": "2026-03-18T01:15:26.364Z"
|
|
82
|
+
},
|
|
83
|
+
"ai/files.json": {
|
|
84
|
+
"path": "ai/files.json",
|
|
85
|
+
"hash": "56cf53a6110a42f57526e7bbbb7f8838",
|
|
86
|
+
"mtime": 1773796526301.932,
|
|
87
|
+
"size": 3420,
|
|
88
|
+
"indexedAt": "2026-03-18T01:15:26.364Z"
|
|
89
|
+
},
|
|
90
|
+
"ai/graph/module-graph.json": {
|
|
91
|
+
"path": "ai/graph/module-graph.json",
|
|
92
|
+
"hash": "3599338f9de3043664fde3c5ca8bc1ca",
|
|
93
|
+
"mtime": 1773796517626.7966,
|
|
94
|
+
"size": 546,
|
|
95
|
+
"indexedAt": "2026-03-18T01:15:26.364Z"
|
|
96
|
+
},
|
|
97
|
+
"ai/graph/symbol-graph.json": {
|
|
98
|
+
"path": "ai/graph/symbol-graph.json",
|
|
99
|
+
"hash": "cdd01d0b3bdb6f26648460fa8d33b069",
|
|
100
|
+
"mtime": 1773796517632.7969,
|
|
101
|
+
"size": 23781,
|
|
102
|
+
"indexedAt": "2026-03-18T01:15:26.364Z"
|
|
103
|
+
},
|
|
104
|
+
"ai/graph/symbol-references.json": {
|
|
105
|
+
"path": "ai/graph/symbol-references.json",
|
|
106
|
+
"hash": "a2ec09612e8db86fc410fc8b4755c07b",
|
|
107
|
+
"mtime": 1773796517632.7969,
|
|
108
|
+
"size": 829,
|
|
109
|
+
"indexedAt": "2026-03-18T01:15:26.364Z"
|
|
110
|
+
},
|
|
111
|
+
"ai/modules.json": {
|
|
112
|
+
"path": "ai/modules.json",
|
|
113
|
+
"hash": "c539e0624fa9a288ddfb14bd48b5587e",
|
|
114
|
+
"mtime": 1773796526301.932,
|
|
115
|
+
"size": 352,
|
|
116
|
+
"indexedAt": "2026-03-18T01:15:26.364Z"
|
|
117
|
+
},
|
|
118
|
+
"ai/project.json": {
|
|
119
|
+
"path": "ai/project.json",
|
|
120
|
+
"hash": "df3518f773c0cadd997f76f65a2f78ed",
|
|
121
|
+
"mtime": 1773796492596.4062,
|
|
122
|
+
"size": 240,
|
|
123
|
+
"indexedAt": "2026-03-18T01:15:26.364Z"
|
|
124
|
+
},
|
|
125
|
+
"ai/repo-map.json": {
|
|
126
|
+
"path": "ai/repo-map.json",
|
|
127
|
+
"hash": "910f71a5d4a4e15f2e7091b64bc8fe2f",
|
|
128
|
+
"mtime": 1773796517624.7966,
|
|
129
|
+
"size": 6702,
|
|
130
|
+
"indexedAt": "2026-03-18T01:15:26.365Z"
|
|
131
|
+
},
|
|
132
|
+
"ai/repo_map.json": {
|
|
133
|
+
"path": "ai/repo_map.json",
|
|
134
|
+
"hash": "3544daa786bd99f8538f616ad22d7711",
|
|
135
|
+
"mtime": 1773796492587.4062,
|
|
136
|
+
"size": 2429,
|
|
137
|
+
"indexedAt": "2026-03-18T01:15:26.365Z"
|
|
138
|
+
},
|
|
139
|
+
"ai/repo_map.md": {
|
|
140
|
+
"path": "ai/repo_map.md",
|
|
141
|
+
"hash": "f3361ccec5c3c9c2b4ead2c27b5fd571",
|
|
142
|
+
"mtime": 1773796492586.406,
|
|
143
|
+
"size": 637,
|
|
144
|
+
"indexedAt": "2026-03-18T01:15:26.365Z"
|
|
145
|
+
},
|
|
146
|
+
"ai/schema.json": {
|
|
147
|
+
"path": "ai/schema.json",
|
|
148
|
+
"hash": "19c33e21e4a5d36d3b9ac40d84db2ab6",
|
|
149
|
+
"mtime": 1773796492596.4062,
|
|
150
|
+
"size": 102,
|
|
151
|
+
"indexedAt": "2026-03-18T01:15:26.365Z"
|
|
152
|
+
},
|
|
153
|
+
"ai/summary.md": {
|
|
154
|
+
"path": "ai/summary.md",
|
|
155
|
+
"hash": "6c7df62f23d13a49598c071057253eae",
|
|
156
|
+
"mtime": 1773796492587.4062,
|
|
157
|
+
"size": 155,
|
|
158
|
+
"indexedAt": "2026-03-18T01:15:26.365Z"
|
|
159
|
+
},
|
|
160
|
+
"ai/symbols.json": {
|
|
161
|
+
"path": "ai/symbols.json",
|
|
162
|
+
"hash": "ad94b9b17ac8aee49fe27f0113994ceb",
|
|
163
|
+
"mtime": 1773796492592.4062,
|
|
164
|
+
"size": 25371,
|
|
165
|
+
"indexedAt": "2026-03-18T01:15:26.365Z"
|
|
166
|
+
},
|
|
167
|
+
"ai/tech_stack.md": {
|
|
168
|
+
"path": "ai/tech_stack.md",
|
|
169
|
+
"hash": "d7e224852b6ec88de645453bfb065c40",
|
|
170
|
+
"mtime": 1773796492589.4062,
|
|
171
|
+
"size": 449,
|
|
172
|
+
"indexedAt": "2026-03-18T01:15:26.365Z"
|
|
173
|
+
},
|
|
174
|
+
"ai/tools.json": {
|
|
175
|
+
"path": "ai/tools.json",
|
|
176
|
+
"hash": "b1356e52c74e9b3b6a0d397b790a4968",
|
|
177
|
+
"mtime": 1773796492596.4062,
|
|
178
|
+
"size": 138,
|
|
179
|
+
"indexedAt": "2026-03-18T01:15:26.365Z"
|
|
180
|
+
},
|
|
181
|
+
"package.json": {
|
|
182
|
+
"path": "package.json",
|
|
183
|
+
"hash": "12744c74a0278dc2edfb68294b9b9125",
|
|
184
|
+
"mtime": 1773777304827.265,
|
|
185
|
+
"size": 321,
|
|
186
|
+
"indexedAt": "2026-03-18T01:15:26.365Z"
|
|
187
|
+
},
|
|
188
|
+
"src/App.tsx": {
|
|
189
|
+
"path": "src/App.tsx",
|
|
190
|
+
"hash": "1bd200aa3ea7b4e1175a07d0f26f8dc4",
|
|
191
|
+
"mtime": 1773777339360.6953,
|
|
192
|
+
"size": 614,
|
|
193
|
+
"indexedAt": "2026-03-18T01:15:26.365Z"
|
|
194
|
+
},
|
|
195
|
+
"src/context/AuthContext.tsx": {
|
|
196
|
+
"path": "src/context/AuthContext.tsx",
|
|
197
|
+
"hash": "4113336d7e2eb6ac2b78cebe8464276e",
|
|
198
|
+
"mtime": 1773777350783.8386,
|
|
199
|
+
"size": 1070,
|
|
200
|
+
"indexedAt": "2026-03-18T01:15:26.365Z"
|
|
201
|
+
},
|
|
202
|
+
"src/hooks/useAuth.ts": {
|
|
203
|
+
"path": "src/hooks/useAuth.ts",
|
|
204
|
+
"hash": "036b7295855cbd8214eb4653954f10cc",
|
|
205
|
+
"mtime": 1773777417490.685,
|
|
206
|
+
"size": 269,
|
|
207
|
+
"indexedAt": "2026-03-18T01:15:26.365Z"
|
|
208
|
+
},
|
|
209
|
+
"src/main.tsx": {
|
|
210
|
+
"path": "src/main.tsx",
|
|
211
|
+
"hash": "283000b4b4218c8dc8b4e634a70bbbe3",
|
|
212
|
+
"mtime": 1773777310472.335,
|
|
213
|
+
"size": 247,
|
|
214
|
+
"indexedAt": "2026-03-18T01:15:26.365Z"
|
|
215
|
+
},
|
|
216
|
+
"src/pages/DashboardPage.tsx": {
|
|
217
|
+
"path": "src/pages/DashboardPage.tsx",
|
|
218
|
+
"hash": "4c9a9c8fc6a53db6bdbb4d0de6561baf",
|
|
219
|
+
"mtime": 1773777385566.278,
|
|
220
|
+
"size": 358,
|
|
221
|
+
"indexedAt": "2026-03-18T01:15:26.365Z"
|
|
222
|
+
},
|
|
223
|
+
"src/pages/LoginPage.tsx": {
|
|
224
|
+
"path": "src/pages/LoginPage.tsx",
|
|
225
|
+
"hash": "16a9451aafa3dd13e3c62b8816ab98d6",
|
|
226
|
+
"mtime": 1773777377789.1794,
|
|
227
|
+
"size": 1063,
|
|
228
|
+
"indexedAt": "2026-03-18T01:15:26.365Z"
|
|
229
|
+
},
|
|
230
|
+
"src/pages/UsersPage.tsx": {
|
|
231
|
+
"path": "src/pages/UsersPage.tsx",
|
|
232
|
+
"hash": "e24caa3c7d598228c36600eb1ca95b30",
|
|
233
|
+
"mtime": 1773777394130.387,
|
|
234
|
+
"size": 821,
|
|
235
|
+
"indexedAt": "2026-03-18T01:15:26.365Z"
|
|
236
|
+
},
|
|
237
|
+
"src/services/userService.ts": {
|
|
238
|
+
"path": "src/services/userService.ts",
|
|
239
|
+
"hash": "78df2c3240cd630cedb2095347616301",
|
|
240
|
+
"mtime": 1773777428144.8215,
|
|
241
|
+
"size": 997,
|
|
242
|
+
"indexedAt": "2026-03-18T01:15:26.365Z"
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"modules": {
|
|
3
|
+
"src": {
|
|
4
|
+
"path": "src",
|
|
5
|
+
"files": [
|
|
6
|
+
"src/App.tsx",
|
|
7
|
+
"src/context/AuthContext.tsx",
|
|
8
|
+
"src/hooks/useAuth.ts",
|
|
9
|
+
"src/main.tsx",
|
|
10
|
+
"src/pages/DashboardPage.tsx",
|
|
11
|
+
"src/pages/LoginPage.tsx",
|
|
12
|
+
"src/pages/UsersPage.tsx",
|
|
13
|
+
"src/services/userService.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,305 @@
|
|
|
1
|
+
{
|
|
2
|
+
"generated": "2026-03-18T01:15:17.625Z",
|
|
3
|
+
"totalFiles": 28,
|
|
4
|
+
"structure": {
|
|
5
|
+
"ai": {
|
|
6
|
+
"type": "directory",
|
|
7
|
+
"children": {
|
|
8
|
+
"ai_context.md": {
|
|
9
|
+
"type": "file",
|
|
10
|
+
"extension": "md"
|
|
11
|
+
},
|
|
12
|
+
"ai_rules.md": {
|
|
13
|
+
"type": "file",
|
|
14
|
+
"extension": "md"
|
|
15
|
+
},
|
|
16
|
+
"architecture.md": {
|
|
17
|
+
"type": "file",
|
|
18
|
+
"extension": "md"
|
|
19
|
+
},
|
|
20
|
+
"context": {
|
|
21
|
+
"type": "directory",
|
|
22
|
+
"children": {
|
|
23
|
+
"features": {
|
|
24
|
+
"type": "directory",
|
|
25
|
+
"children": {
|
|
26
|
+
"src.json": {
|
|
27
|
+
"type": "file",
|
|
28
|
+
"extension": "json"
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"flows": {
|
|
33
|
+
"type": "directory",
|
|
34
|
+
"children": {
|
|
35
|
+
"dashboard.json": {
|
|
36
|
+
"type": "file",
|
|
37
|
+
"extension": "json"
|
|
38
|
+
},
|
|
39
|
+
"login.json": {
|
|
40
|
+
"type": "file",
|
|
41
|
+
"extension": "json"
|
|
42
|
+
},
|
|
43
|
+
"users.json": {
|
|
44
|
+
"type": "file",
|
|
45
|
+
"extension": "json"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"conventions.md": {
|
|
52
|
+
"type": "file",
|
|
53
|
+
"extension": "md"
|
|
54
|
+
},
|
|
55
|
+
"dependencies.json": {
|
|
56
|
+
"type": "file",
|
|
57
|
+
"extension": "json"
|
|
58
|
+
},
|
|
59
|
+
"entrypoints.md": {
|
|
60
|
+
"type": "file",
|
|
61
|
+
"extension": "md"
|
|
62
|
+
},
|
|
63
|
+
"modules.json": {
|
|
64
|
+
"type": "file",
|
|
65
|
+
"extension": "json"
|
|
66
|
+
},
|
|
67
|
+
"project.json": {
|
|
68
|
+
"type": "file",
|
|
69
|
+
"extension": "json"
|
|
70
|
+
},
|
|
71
|
+
"repo_map.json": {
|
|
72
|
+
"type": "file",
|
|
73
|
+
"extension": "json"
|
|
74
|
+
},
|
|
75
|
+
"repo_map.md": {
|
|
76
|
+
"type": "file",
|
|
77
|
+
"extension": "md"
|
|
78
|
+
},
|
|
79
|
+
"schema.json": {
|
|
80
|
+
"type": "file",
|
|
81
|
+
"extension": "json"
|
|
82
|
+
},
|
|
83
|
+
"summary.md": {
|
|
84
|
+
"type": "file",
|
|
85
|
+
"extension": "md"
|
|
86
|
+
},
|
|
87
|
+
"symbols.json": {
|
|
88
|
+
"type": "file",
|
|
89
|
+
"extension": "json"
|
|
90
|
+
},
|
|
91
|
+
"tech_stack.md": {
|
|
92
|
+
"type": "file",
|
|
93
|
+
"extension": "md"
|
|
94
|
+
},
|
|
95
|
+
"tools.json": {
|
|
96
|
+
"type": "file",
|
|
97
|
+
"extension": "json"
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
"package.json": {
|
|
102
|
+
"type": "file",
|
|
103
|
+
"extension": "json"
|
|
104
|
+
},
|
|
105
|
+
"src": {
|
|
106
|
+
"type": "directory",
|
|
107
|
+
"children": {
|
|
108
|
+
"App.tsx": {
|
|
109
|
+
"type": "file",
|
|
110
|
+
"extension": "tsx"
|
|
111
|
+
},
|
|
112
|
+
"context": {
|
|
113
|
+
"type": "directory",
|
|
114
|
+
"children": {
|
|
115
|
+
"AuthContext.tsx": {
|
|
116
|
+
"type": "file",
|
|
117
|
+
"extension": "tsx"
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"hooks": {
|
|
122
|
+
"type": "directory",
|
|
123
|
+
"children": {
|
|
124
|
+
"useAuth.ts": {
|
|
125
|
+
"type": "file",
|
|
126
|
+
"extension": "ts"
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
"main.tsx": {
|
|
131
|
+
"type": "file",
|
|
132
|
+
"extension": "tsx"
|
|
133
|
+
},
|
|
134
|
+
"pages": {
|
|
135
|
+
"type": "directory",
|
|
136
|
+
"children": {
|
|
137
|
+
"DashboardPage.tsx": {
|
|
138
|
+
"type": "file",
|
|
139
|
+
"extension": "tsx"
|
|
140
|
+
},
|
|
141
|
+
"LoginPage.tsx": {
|
|
142
|
+
"type": "file",
|
|
143
|
+
"extension": "tsx"
|
|
144
|
+
},
|
|
145
|
+
"UsersPage.tsx": {
|
|
146
|
+
"type": "file",
|
|
147
|
+
"extension": "tsx"
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
"services": {
|
|
152
|
+
"type": "directory",
|
|
153
|
+
"children": {
|
|
154
|
+
"userService.ts": {
|
|
155
|
+
"type": "file",
|
|
156
|
+
"extension": "ts"
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"files": [
|
|
164
|
+
{
|
|
165
|
+
"path": "ai/ai_context.md",
|
|
166
|
+
"name": "ai_context.md",
|
|
167
|
+
"extension": "md"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"path": "ai/ai_rules.md",
|
|
171
|
+
"name": "ai_rules.md",
|
|
172
|
+
"extension": "md"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"path": "ai/architecture.md",
|
|
176
|
+
"name": "architecture.md",
|
|
177
|
+
"extension": "md"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"path": "ai/context/features/src.json",
|
|
181
|
+
"name": "src.json",
|
|
182
|
+
"extension": "json"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"path": "ai/context/flows/dashboard.json",
|
|
186
|
+
"name": "dashboard.json",
|
|
187
|
+
"extension": "json"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"path": "ai/context/flows/login.json",
|
|
191
|
+
"name": "login.json",
|
|
192
|
+
"extension": "json"
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"path": "ai/context/flows/users.json",
|
|
196
|
+
"name": "users.json",
|
|
197
|
+
"extension": "json"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"path": "ai/conventions.md",
|
|
201
|
+
"name": "conventions.md",
|
|
202
|
+
"extension": "md"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"path": "ai/dependencies.json",
|
|
206
|
+
"name": "dependencies.json",
|
|
207
|
+
"extension": "json"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"path": "ai/entrypoints.md",
|
|
211
|
+
"name": "entrypoints.md",
|
|
212
|
+
"extension": "md"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"path": "ai/modules.json",
|
|
216
|
+
"name": "modules.json",
|
|
217
|
+
"extension": "json"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"path": "ai/project.json",
|
|
221
|
+
"name": "project.json",
|
|
222
|
+
"extension": "json"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"path": "ai/repo_map.json",
|
|
226
|
+
"name": "repo_map.json",
|
|
227
|
+
"extension": "json"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"path": "ai/repo_map.md",
|
|
231
|
+
"name": "repo_map.md",
|
|
232
|
+
"extension": "md"
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"path": "ai/schema.json",
|
|
236
|
+
"name": "schema.json",
|
|
237
|
+
"extension": "json"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"path": "ai/summary.md",
|
|
241
|
+
"name": "summary.md",
|
|
242
|
+
"extension": "md"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"path": "ai/symbols.json",
|
|
246
|
+
"name": "symbols.json",
|
|
247
|
+
"extension": "json"
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"path": "ai/tech_stack.md",
|
|
251
|
+
"name": "tech_stack.md",
|
|
252
|
+
"extension": "md"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"path": "ai/tools.json",
|
|
256
|
+
"name": "tools.json",
|
|
257
|
+
"extension": "json"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"path": "package.json",
|
|
261
|
+
"name": "package.json",
|
|
262
|
+
"extension": "json"
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"path": "src/App.tsx",
|
|
266
|
+
"name": "App.tsx",
|
|
267
|
+
"extension": "tsx"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"path": "src/context/AuthContext.tsx",
|
|
271
|
+
"name": "AuthContext.tsx",
|
|
272
|
+
"extension": "tsx"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"path": "src/hooks/useAuth.ts",
|
|
276
|
+
"name": "useAuth.ts",
|
|
277
|
+
"extension": "ts"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"path": "src/main.tsx",
|
|
281
|
+
"name": "main.tsx",
|
|
282
|
+
"extension": "tsx"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"path": "src/pages/DashboardPage.tsx",
|
|
286
|
+
"name": "DashboardPage.tsx",
|
|
287
|
+
"extension": "tsx"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"path": "src/pages/LoginPage.tsx",
|
|
291
|
+
"name": "LoginPage.tsx",
|
|
292
|
+
"extension": "tsx"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"path": "src/pages/UsersPage.tsx",
|
|
296
|
+
"name": "UsersPage.tsx",
|
|
297
|
+
"extension": "tsx"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"path": "src/services/userService.ts",
|
|
301
|
+
"name": "userService.ts",
|
|
302
|
+
"extension": "ts"
|
|
303
|
+
}
|
|
304
|
+
]
|
|
305
|
+
}
|