ai-first-cli 1.2.3 → 1.3.1
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/.github/workflows/publish.yml +4 -1
- package/CHANGELOG.md +292 -6
- package/README.md +24 -4
- package/dist/analyzers/symbols.d.ts.map +1 -1
- package/dist/analyzers/symbols.js +9 -7
- package/dist/analyzers/symbols.js.map +1 -1
- package/dist/analyzers/techStack.d.ts.map +1 -1
- package/dist/analyzers/techStack.js +198 -3
- package/dist/analyzers/techStack.js.map +1 -1
- package/dist/commands/ai-first.d.ts.map +1 -1
- package/dist/commands/ai-first.js +14 -13
- package/dist/commands/ai-first.js.map +1 -1
- package/dist/core/analysis/architectureDetector.d.ts +37 -0
- package/dist/core/analysis/architectureDetector.d.ts.map +1 -0
- package/dist/core/analysis/architectureDetector.js +316 -0
- package/dist/core/analysis/architectureDetector.js.map +1 -0
- package/dist/core/analysis/callGraphBuilder.d.ts +37 -0
- package/dist/core/analysis/callGraphBuilder.d.ts.map +1 -0
- package/dist/core/analysis/callGraphBuilder.js +101 -0
- package/dist/core/analysis/callGraphBuilder.js.map +1 -0
- package/dist/core/analysis/dependencyAnalyzer.d.ts +45 -0
- package/dist/core/analysis/dependencyAnalyzer.d.ts.map +1 -0
- package/dist/core/analysis/dependencyAnalyzer.js +98 -0
- package/dist/core/analysis/dependencyAnalyzer.js.map +1 -0
- package/dist/core/analysis/index.d.ts +5 -0
- package/dist/core/analysis/index.d.ts.map +1 -0
- package/dist/core/analysis/index.js +5 -0
- package/dist/core/analysis/index.js.map +1 -0
- package/dist/core/analysis/inheritanceAnalyzer.d.ts +35 -0
- package/dist/core/analysis/inheritanceAnalyzer.d.ts.map +1 -0
- package/dist/core/analysis/inheritanceAnalyzer.js +115 -0
- package/dist/core/analysis/inheritanceAnalyzer.js.map +1 -0
- package/dist/core/ccp.d.ts.map +1 -1
- package/dist/core/ccp.js +3 -2
- package/dist/core/ccp.js.map +1 -1
- package/dist/core/generation/aiContextGenerator.d.ts +71 -0
- package/dist/core/generation/aiContextGenerator.d.ts.map +1 -0
- package/dist/core/generation/aiContextGenerator.js +217 -0
- package/dist/core/generation/aiContextGenerator.js.map +1 -0
- package/dist/core/generation/architectureGenerator.d.ts +17 -0
- package/dist/core/generation/architectureGenerator.d.ts.map +1 -0
- package/dist/core/generation/architectureGenerator.js +160 -0
- package/dist/core/generation/architectureGenerator.js.map +1 -0
- package/dist/core/generation/flowGenerator.d.ts +52 -0
- package/dist/core/generation/flowGenerator.d.ts.map +1 -0
- package/dist/core/generation/flowGenerator.js +164 -0
- package/dist/core/generation/flowGenerator.js.map +1 -0
- package/dist/core/generation/index.d.ts +4 -0
- package/dist/core/generation/index.d.ts.map +1 -0
- package/dist/core/generation/index.js +4 -0
- package/dist/core/generation/index.js.map +1 -0
- package/dist/core/hierarchyGenerator.d.ts.map +1 -1
- package/dist/core/hierarchyGenerator.js +3 -2
- package/dist/core/hierarchyGenerator.js.map +1 -1
- package/dist/core/parsers/index.d.ts +20 -0
- package/dist/core/parsers/index.d.ts.map +1 -0
- package/dist/core/parsers/index.js +76 -0
- package/dist/core/parsers/index.js.map +1 -0
- package/dist/core/parsers/pythonParser.d.ts +37 -0
- package/dist/core/parsers/pythonParser.d.ts.map +1 -0
- package/dist/core/parsers/pythonParser.js +229 -0
- package/dist/core/parsers/pythonParser.js.map +1 -0
- package/dist/core/parsers/typescriptParser.d.ts +54 -0
- package/dist/core/parsers/typescriptParser.d.ts.map +1 -0
- package/dist/core/parsers/typescriptParser.js +291 -0
- package/dist/core/parsers/typescriptParser.js.map +1 -0
- package/dist/core/pipeline.d.ts +42 -0
- package/dist/core/pipeline.d.ts.map +1 -0
- package/dist/core/pipeline.js +172 -0
- package/dist/core/pipeline.js.map +1 -0
- package/dist/core/semanticContexts.js +1 -1
- package/dist/core/semanticContexts.js.map +1 -1
- package/dist/utils/constants.d.ts +46 -0
- package/dist/utils/constants.d.ts.map +1 -0
- package/dist/utils/constants.js +67 -0
- package/dist/utils/constants.js.map +1 -0
- package/package.json +1 -1
- package/run-all-tests.sh +184 -0
- package/src/analyzers/symbols.ts +12 -7
- package/src/analyzers/techStack.ts +203 -3
- package/src/commands/ai-first.ts +14 -13
- package/src/core/analysis/architectureDetector.ts +487 -0
- package/src/core/analysis/callGraphBuilder.ts +158 -0
- package/src/core/analysis/dependencyAnalyzer.ts +167 -0
- package/src/core/analysis/index.ts +28 -0
- package/src/core/analysis/inheritanceAnalyzer.ts +169 -0
- package/src/core/ccp.ts +3 -2
- package/src/core/generation/aiContextGenerator.ts +335 -0
- package/src/core/generation/architectureGenerator.ts +200 -0
- package/src/core/generation/flowGenerator.ts +238 -0
- package/src/core/generation/index.ts +16 -0
- package/src/core/hierarchyGenerator.ts +3 -2
- package/src/core/parsers/index.ts +99 -0
- package/src/core/parsers/pythonParser.ts +302 -0
- package/src/core/parsers/typescriptParser.ts +445 -0
- package/src/core/pipeline.ts +241 -0
- package/src/core/semanticContexts.ts +1 -1
- package/src/utils/constants.ts +78 -0
- package/test-ai-context-understanding.sh +21 -0
- package/test_adapters.mjs +11 -11
- package/tests/analysis.test.ts +283 -0
- package/tests/architectureDetector.test.ts +137 -0
- package/tests/generation.test.ts +216 -0
- package/tests/parserRegistry.test.ts +139 -0
- package/tests/pipeline.integration.test.ts +245 -0
- package/tests/pythonParser.test.ts +210 -0
- package/tests/typescriptParser.test.ts +197 -0
- package/.ai-dev/index.db +0 -0
- package/BUGS.md +0 -455
- package/PLAN_MEJORAS.md +0 -216
- package/STATUS_ADAPTADORES +0 -126
- package/TEST_RESULTS_PHASE1.md +0 -420
- package/ai/dependencies.json +0 -15
- package/ai/graph/knowledge-graph.json +0 -12
- package/ai-context/ai_context.md +0 -130
- package/ai-context/ai_rules.md +0 -54
- package/ai-context/architecture.md +0 -136
- package/ai-context/cache.json +0 -2349
- package/ai-context/ccp/jira-123/context.json +0 -7
- package/ai-context/context/features/commands.json +0 -18
- package/ai-context/context/features/src.json +0 -61
- package/ai-context/context/features/test-projects.json +0 -69
- package/ai-context/context/flows/account.json +0 -9
- package/ai-context/context/flows/ai-first.json +0 -9
- package/ai-context/context/flows/api.json +0 -9
- package/ai-context/context/flows/auth.json +0 -13
- package/ai-context/context/flows/category.json +0 -12
- package/ai-context/context/flows/comment.json +0 -16
- package/ai-context/context/flows/dashboard.json +0 -9
- package/ai-context/context/flows/doctor.json +0 -9
- package/ai-context/context/flows/explore.json +0 -9
- package/ai-context/context/flows/login.json +0 -9
- package/ai-context/context/flows/opportunity.json +0 -9
- package/ai-context/context/flows/post.json +0 -18
- package/ai-context/context/flows/routes.json +0 -19
- package/ai-context/context/flows/user.json +0 -20
- package/ai-context/context/flows/users.json +0 -9
- package/ai-context/context/flows/views.json +0 -14
- package/ai-context/context/repo.json +0 -56
- package/ai-context/context/utils.json +0 -7
- package/ai-context/conventions.md +0 -53
- package/ai-context/dependencies.json +0 -2978
- package/ai-context/embeddings.json +0 -23828
- package/ai-context/entrypoints.md +0 -42
- package/ai-context/files.json +0 -2944
- package/ai-context/git/commit-activity.json +0 -8646
- package/ai-context/git/recent-features.json +0 -1
- package/ai-context/git/recent-files.json +0 -52
- package/ai-context/git/recent-flows.json +0 -1
- package/ai-context/graph/knowledge-graph.json +0 -44129
- package/ai-context/graph/module-graph.json +0 -866
- package/ai-context/graph/symbol-graph.json +0 -200622
- package/ai-context/graph/symbol-references.json +0 -6778
- package/ai-context/hierarchy.json +0 -20
- package/ai-context/index-state.json +0 -4487
- package/ai-context/index.db +0 -0
- package/ai-context/modules.json +0 -933
- package/ai-context/project.json +0 -30
- package/ai-context/repo_map.json +0 -9116
- package/ai-context/repo_map.md +0 -2061
- package/ai-context/schema.json +0 -5
- package/ai-context/summary.md +0 -47
- package/ai-context/symbols.json +0 -65351
- package/ai-context/tech_stack.md +0 -47
- package/ai-context/tools.json +0 -10
- package/test-projects/django-app/.ai-dev/index.db +0 -0
- package/test-projects/django-app/ai-context/ai_context.md +0 -92
- package/test-projects/django-app/ai-context/ai_rules.md +0 -47
- package/test-projects/django-app/ai-context/architecture.md +0 -57
- package/test-projects/django-app/ai-context/cache.json +0 -169
- package/test-projects/django-app/ai-context/context/flows/views.json +0 -10
- package/test-projects/django-app/ai-context/conventions.md +0 -51
- package/test-projects/django-app/ai-context/dependencies.json +0 -312
- package/test-projects/django-app/ai-context/entrypoints.md +0 -4
- package/test-projects/django-app/ai-context/files.json +0 -209
- package/test-projects/django-app/ai-context/graph/knowledge-graph.json +0 -36
- package/test-projects/django-app/ai-context/graph/module-graph.json +0 -145
- package/test-projects/django-app/ai-context/graph/symbol-graph.json +0 -1488
- package/test-projects/django-app/ai-context/graph/symbol-references.json +0 -1
- package/test-projects/django-app/ai-context/index-state.json +0 -294
- package/test-projects/django-app/ai-context/index.db +0 -0
- package/test-projects/django-app/ai-context/modules.json +0 -35
- package/test-projects/django-app/ai-context/project.json +0 -11
- package/test-projects/django-app/ai-context/repo_map.json +0 -412
- package/test-projects/django-app/ai-context/repo_map.md +0 -105
- package/test-projects/django-app/ai-context/schema.json +0 -5
- package/test-projects/django-app/ai-context/summary.md +0 -15
- package/test-projects/django-app/ai-context/symbols.json +0 -1
- package/test-projects/django-app/ai-context/tech_stack.md +0 -32
- package/test-projects/django-app/ai-context/tools.json +0 -10
- package/test-projects/express-api/ai-context/ai_context.md +0 -112
- package/test-projects/express-api/ai-context/ai_rules.md +0 -50
- package/test-projects/express-api/ai-context/architecture.md +0 -62
- package/test-projects/express-api/ai-context/context/features/controllers.json +0 -13
- package/test-projects/express-api/ai-context/context/features/services.json +0 -13
- package/test-projects/express-api/ai-context/context/flows/auth.json +0 -12
- package/test-projects/express-api/ai-context/context/flows/user.json +0 -13
- package/test-projects/express-api/ai-context/conventions.md +0 -51
- package/test-projects/express-api/ai-context/dependencies.json +0 -54
- package/test-projects/express-api/ai-context/entrypoints.md +0 -17
- package/test-projects/express-api/ai-context/modules.json +0 -30
- package/test-projects/express-api/ai-context/project.json +0 -15
- package/test-projects/express-api/ai-context/repo_map.json +0 -100
- package/test-projects/express-api/ai-context/repo_map.md +0 -36
- package/test-projects/express-api/ai-context/schema.json +0 -5
- package/test-projects/express-api/ai-context/summary.md +0 -14
- package/test-projects/express-api/ai-context/symbols.json +0 -7
- package/test-projects/express-api/ai-context/tech_stack.md +0 -38
- package/test-projects/express-api/ai-context/tools.json +0 -10
- package/test-projects/fastapi-app/.ai-dev/index.db +0 -0
- package/test-projects/fastapi-app/ai-context/ai_context.md +0 -89
- package/test-projects/fastapi-app/ai-context/ai_rules.md +0 -47
- package/test-projects/fastapi-app/ai-context/architecture.md +0 -39
- package/test-projects/fastapi-app/ai-context/cache.json +0 -125
- package/test-projects/fastapi-app/ai-context/conventions.md +0 -51
- package/test-projects/fastapi-app/ai-context/dependencies.json +0 -244
- package/test-projects/fastapi-app/ai-context/entrypoints.md +0 -4
- package/test-projects/fastapi-app/ai-context/files.json +0 -154
- package/test-projects/fastapi-app/ai-context/graph/knowledge-graph.json +0 -15
- package/test-projects/fastapi-app/ai-context/graph/module-graph.json +0 -78
- package/test-projects/fastapi-app/ai-context/graph/symbol-graph.json +0 -1724
- package/test-projects/fastapi-app/ai-context/graph/symbol-references.json +0 -51
- package/test-projects/fastapi-app/ai-context/index-state.json +0 -217
- package/test-projects/fastapi-app/ai-context/index.db +0 -0
- package/test-projects/fastapi-app/ai-context/modules.json +0 -16
- package/test-projects/fastapi-app/ai-context/project.json +0 -9
- package/test-projects/fastapi-app/ai-context/repo_map.json +0 -298
- package/test-projects/fastapi-app/ai-context/repo_map.md +0 -74
- package/test-projects/fastapi-app/ai-context/schema.json +0 -5
- package/test-projects/fastapi-app/ai-context/summary.md +0 -12
- package/test-projects/fastapi-app/ai-context/symbols.json +0 -1
- package/test-projects/fastapi-app/ai-context/tech_stack.md +0 -32
- package/test-projects/fastapi-app/ai-context/tools.json +0 -10
- package/test-projects/flask-app/.ai-dev/index.db +0 -0
- package/test-projects/flask-app/ai-context/ai_context.md +0 -94
- package/test-projects/flask-app/ai-context/ai_rules.md +0 -47
- package/test-projects/flask-app/ai-context/architecture.md +0 -49
- package/test-projects/flask-app/ai-context/cache.json +0 -157
- package/test-projects/flask-app/ai-context/context/features/app.json +0 -25
- package/test-projects/flask-app/ai-context/context/flows/routes.json +0 -14
- package/test-projects/flask-app/ai-context/conventions.md +0 -51
- package/test-projects/flask-app/ai-context/dependencies.json +0 -298
- package/test-projects/flask-app/ai-context/entrypoints.md +0 -4
- package/test-projects/flask-app/ai-context/files.json +0 -194
- package/test-projects/flask-app/ai-context/graph/knowledge-graph.json +0 -60
- package/test-projects/flask-app/ai-context/graph/module-graph.json +0 -95
- package/test-projects/flask-app/ai-context/graph/symbol-graph.json +0 -1448
- package/test-projects/flask-app/ai-context/graph/symbol-references.json +0 -45
- package/test-projects/flask-app/ai-context/index-state.json +0 -273
- package/test-projects/flask-app/ai-context/index.db +0 -0
- package/test-projects/flask-app/ai-context/modules.json +0 -21
- package/test-projects/flask-app/ai-context/project.json +0 -13
- package/test-projects/flask-app/ai-context/repo_map.json +0 -400
- package/test-projects/flask-app/ai-context/repo_map.md +0 -98
- package/test-projects/flask-app/ai-context/schema.json +0 -5
- package/test-projects/flask-app/ai-context/summary.md +0 -13
- package/test-projects/flask-app/ai-context/symbols.json +0 -1
- package/test-projects/flask-app/ai-context/tech_stack.md +0 -32
- package/test-projects/flask-app/ai-context/tools.json +0 -10
- package/test-projects/laravel-app/.ai-dev/index.db +0 -0
- package/test-projects/laravel-app/ai-context/ai_context.md +0 -97
- package/test-projects/laravel-app/ai-context/ai_rules.md +0 -47
- package/test-projects/laravel-app/ai-context/architecture.md +0 -60
- package/test-projects/laravel-app/ai-context/cache.json +0 -161
- package/test-projects/laravel-app/ai-context/context/features/app.json +0 -21
- package/test-projects/laravel-app/ai-context/context/flows/.json +0 -9
- package/test-projects/laravel-app/ai-context/context/flows/category.json +0 -12
- package/test-projects/laravel-app/ai-context/context/flows/comment.json +0 -12
- package/test-projects/laravel-app/ai-context/context/flows/post.json +0 -12
- package/test-projects/laravel-app/ai-context/context/flows/unnamed.json +0 -9
- package/test-projects/laravel-app/ai-context/conventions.md +0 -51
- package/test-projects/laravel-app/ai-context/dependencies.json +0 -6
- package/test-projects/laravel-app/ai-context/entrypoints.md +0 -4
- package/test-projects/laravel-app/ai-context/files.json +0 -199
- package/test-projects/laravel-app/ai-context/graph/knowledge-graph.json +0 -98
- package/test-projects/laravel-app/ai-context/graph/module-graph.json +0 -30
- package/test-projects/laravel-app/ai-context/graph/symbol-graph.json +0 -5
- package/test-projects/laravel-app/ai-context/graph/symbol-references.json +0 -1
- package/test-projects/laravel-app/ai-context/index-state.json +0 -280
- package/test-projects/laravel-app/ai-context/index.db +0 -0
- package/test-projects/laravel-app/ai-context/modules.json +0 -29
- package/test-projects/laravel-app/ai-context/project.json +0 -17
- package/test-projects/laravel-app/ai-context/repo_map.json +0 -419
- package/test-projects/laravel-app/ai-context/repo_map.md +0 -106
- package/test-projects/laravel-app/ai-context/schema.json +0 -5
- package/test-projects/laravel-app/ai-context/summary.md +0 -15
- package/test-projects/laravel-app/ai-context/symbols.json +0 -1
- package/test-projects/laravel-app/ai-context/tech_stack.md +0 -34
- package/test-projects/laravel-app/ai-context/tools.json +0 -10
- package/test-projects/nestjs-backend/.ai-dev/index.db +0 -0
- package/test-projects/nestjs-backend/ai-context/ai_context.md +0 -111
- package/test-projects/nestjs-backend/ai-context/ai_rules.md +0 -52
- package/test-projects/nestjs-backend/ai-context/architecture.md +0 -49
- package/test-projects/nestjs-backend/ai-context/cache.json +0 -169
- package/test-projects/nestjs-backend/ai-context/context/features/src.json +0 -23
- package/test-projects/nestjs-backend/ai-context/context/flows/auth.controller.json +0 -14
- package/test-projects/nestjs-backend/ai-context/context/flows/auth.json +0 -10
- package/test-projects/nestjs-backend/ai-context/context/flows/users..json +0 -10
- package/test-projects/nestjs-backend/ai-context/context/flows/users.controller.json +0 -14
- package/test-projects/nestjs-backend/ai-context/context/flows/users.json +0 -10
- package/test-projects/nestjs-backend/ai-context/conventions.md +0 -52
- package/test-projects/nestjs-backend/ai-context/dependencies.json +0 -152
- package/test-projects/nestjs-backend/ai-context/entrypoints.md +0 -18
- package/test-projects/nestjs-backend/ai-context/files.json +0 -209
- package/test-projects/nestjs-backend/ai-context/graph/knowledge-graph.json +0 -132
- package/test-projects/nestjs-backend/ai-context/graph/module-graph.json +0 -29
- package/test-projects/nestjs-backend/ai-context/graph/symbol-graph.json +0 -304
- package/test-projects/nestjs-backend/ai-context/graph/symbol-references.json +0 -5
- package/test-projects/nestjs-backend/ai-context/index-state.json +0 -294
- package/test-projects/nestjs-backend/ai-context/index.db +0 -0
- package/test-projects/nestjs-backend/ai-context/modules.json +0 -19
- package/test-projects/nestjs-backend/ai-context/project.json +0 -18
- package/test-projects/nestjs-backend/ai-context/repo_map.json +0 -427
- package/test-projects/nestjs-backend/ai-context/repo_map.md +0 -104
- package/test-projects/nestjs-backend/ai-context/schema.json +0 -5
- package/test-projects/nestjs-backend/ai-context/summary.md +0 -13
- package/test-projects/nestjs-backend/ai-context/symbols.json +0 -1
- package/test-projects/nestjs-backend/ai-context/tech_stack.md +0 -38
- package/test-projects/nestjs-backend/ai-context/tools.json +0 -10
- package/test-projects/python-cli/.ai-dev/index.db +0 -0
- package/test-projects/python-cli/ai-context/ai_context.md +0 -95
- package/test-projects/python-cli/ai-context/ai_rules.md +0 -47
- package/test-projects/python-cli/ai-context/architecture.md +0 -55
- package/test-projects/python-cli/ai-context/cache.json +0 -149
- package/test-projects/python-cli/ai-context/context/features/cli.json +0 -16
- package/test-projects/python-cli/ai-context/context/flows/list_.json +0 -9
- package/test-projects/python-cli/ai-context/context/flows/remove_.json +0 -9
- package/test-projects/python-cli/ai-context/conventions.md +0 -51
- package/test-projects/python-cli/ai-context/dependencies.json +0 -66
- package/test-projects/python-cli/ai-context/entrypoints.md +0 -4
- package/test-projects/python-cli/ai-context/files.json +0 -184
- package/test-projects/python-cli/ai-context/graph/knowledge-graph.json +0 -83
- package/test-projects/python-cli/ai-context/graph/module-graph.json +0 -31
- package/test-projects/python-cli/ai-context/graph/symbol-graph.json +0 -358
- package/test-projects/python-cli/ai-context/graph/symbol-references.json +0 -11
- package/test-projects/python-cli/ai-context/index-state.json +0 -259
- package/test-projects/python-cli/ai-context/index.db +0 -0
- package/test-projects/python-cli/ai-context/modules.json +0 -21
- package/test-projects/python-cli/ai-context/project.json +0 -15
- package/test-projects/python-cli/ai-context/repo_map.json +0 -367
- package/test-projects/python-cli/ai-context/repo_map.md +0 -93
- package/test-projects/python-cli/ai-context/schema.json +0 -5
- package/test-projects/python-cli/ai-context/summary.md +0 -14
- package/test-projects/python-cli/ai-context/symbols.json +0 -1
- package/test-projects/python-cli/ai-context/tech_stack.md +0 -32
- package/test-projects/python-cli/ai-context/tools.json +0 -10
- package/test-projects/rails-app/.ai-dev/index.db +0 -0
- package/test-projects/rails-app/ai-context/ai_context.md +0 -94
- package/test-projects/rails-app/ai-context/ai_rules.md +0 -47
- package/test-projects/rails-app/ai-context/architecture.md +0 -49
- package/test-projects/rails-app/ai-context/cache.json +0 -193
- package/test-projects/rails-app/ai-context/context/features/app.json +0 -24
- package/test-projects/rails-app/ai-context/context/features/config.json +0 -13
- package/test-projects/rails-app/ai-context/context/flows/application.json +0 -9
- package/test-projects/rails-app/ai-context/context/flows/application_.json +0 -9
- package/test-projects/rails-app/ai-context/context/flows/comments.json +0 -11
- package/test-projects/rails-app/ai-context/context/flows/comments_.json +0 -11
- package/test-projects/rails-app/ai-context/context/flows/posts.json +0 -11
- package/test-projects/rails-app/ai-context/context/flows/posts_.json +0 -11
- package/test-projects/rails-app/ai-context/context/flows/routes.json +0 -9
- package/test-projects/rails-app/ai-context/context/flows/users.json +0 -11
- package/test-projects/rails-app/ai-context/context/flows/users_.json +0 -11
- package/test-projects/rails-app/ai-context/conventions.md +0 -51
- package/test-projects/rails-app/ai-context/dependencies.json +0 -6
- package/test-projects/rails-app/ai-context/entrypoints.md +0 -4
- package/test-projects/rails-app/ai-context/files.json +0 -239
- package/test-projects/rails-app/ai-context/graph/knowledge-graph.json +0 -130
- package/test-projects/rails-app/ai-context/graph/module-graph.json +0 -27
- package/test-projects/rails-app/ai-context/graph/symbol-graph.json +0 -5
- package/test-projects/rails-app/ai-context/graph/symbol-references.json +0 -1
- package/test-projects/rails-app/ai-context/index-state.json +0 -336
- package/test-projects/rails-app/ai-context/index.db +0 -0
- package/test-projects/rails-app/ai-context/modules.json +0 -26
- package/test-projects/rails-app/ai-context/project.json +0 -22
- package/test-projects/rails-app/ai-context/repo_map.json +0 -486
- package/test-projects/rails-app/ai-context/repo_map.md +0 -117
- package/test-projects/rails-app/ai-context/schema.json +0 -5
- package/test-projects/rails-app/ai-context/summary.md +0 -13
- package/test-projects/rails-app/ai-context/symbols.json +0 -1
- package/test-projects/rails-app/ai-context/tech_stack.md +0 -32
- package/test-projects/rails-app/ai-context/tools.json +0 -10
- package/test-projects/react-app/.ai-dev/index.db +0 -0
- package/test-projects/react-app/ai-context/ai_context.md +0 -96
- package/test-projects/react-app/ai-context/ai_rules.md +0 -49
- package/test-projects/react-app/ai-context/architecture.md +0 -39
- package/test-projects/react-app/ai-context/cache.json +0 -153
- package/test-projects/react-app/ai-context/context/features/src.json +0 -18
- package/test-projects/react-app/ai-context/context/flows/UsersPage.json +0 -14
- package/test-projects/react-app/ai-context/context/flows/dashboard.json +0 -9
- package/test-projects/react-app/ai-context/context/flows/login.json +0 -9
- package/test-projects/react-app/ai-context/context/flows/users.json +0 -9
- package/test-projects/react-app/ai-context/conventions.md +0 -52
- package/test-projects/react-app/ai-context/dependencies.json +0 -128
- package/test-projects/react-app/ai-context/entrypoints.md +0 -4
- package/test-projects/react-app/ai-context/files.json +0 -189
- package/test-projects/react-app/ai-context/graph/knowledge-graph.json +0 -112
- package/test-projects/react-app/ai-context/graph/module-graph.json +0 -31
- package/test-projects/react-app/ai-context/graph/symbol-graph.json +0 -868
- package/test-projects/react-app/ai-context/graph/symbol-references.json +0 -31
- package/test-projects/react-app/ai-context/index-state.json +0 -266
- package/test-projects/react-app/ai-context/index.db +0 -0
- package/test-projects/react-app/ai-context/modules.json +0 -17
- package/test-projects/react-app/ai-context/project.json +0 -16
- package/test-projects/react-app/ai-context/repo_map.json +0 -391
- package/test-projects/react-app/ai-context/repo_map.md +0 -94
- package/test-projects/react-app/ai-context/schema.json +0 -5
- package/test-projects/react-app/ai-context/summary.md +0 -13
- package/test-projects/react-app/ai-context/symbols.json +0 -1
- package/test-projects/react-app/ai-context/tech_stack.md +0 -39
- package/test-projects/react-app/ai-context/tools.json +0 -10
- package/test-projects/salesforce-cli/.ai-dev/index.db +0 -0
- package/test-projects/salesforce-cli/ai-context/ai_context.md +0 -89
- package/test-projects/salesforce-cli/ai-context/ai_rules.md +0 -47
- package/test-projects/salesforce-cli/ai-context/architecture.md +0 -39
- package/test-projects/salesforce-cli/ai-context/cache.json +0 -125
- package/test-projects/salesforce-cli/ai-context/context/features/force-app.json +0 -14
- package/test-projects/salesforce-cli/ai-context/context/flows/account.json +0 -9
- package/test-projects/salesforce-cli/ai-context/context/flows/opportunity.json +0 -9
- package/test-projects/salesforce-cli/ai-context/conventions.md +0 -51
- package/test-projects/salesforce-cli/ai-context/dependencies.json +0 -6
- package/test-projects/salesforce-cli/ai-context/entrypoints.md +0 -4
- package/test-projects/salesforce-cli/ai-context/files.json +0 -154
- package/test-projects/salesforce-cli/ai-context/graph/knowledge-graph.json +0 -64
- package/test-projects/salesforce-cli/ai-context/graph/module-graph.json +0 -13
- package/test-projects/salesforce-cli/ai-context/graph/symbol-graph.json +0 -148
- package/test-projects/salesforce-cli/ai-context/graph/symbol-references.json +0 -1
- package/test-projects/salesforce-cli/ai-context/index-state.json +0 -217
- package/test-projects/salesforce-cli/ai-context/index.db +0 -0
- package/test-projects/salesforce-cli/ai-context/modules.json +0 -12
- package/test-projects/salesforce-cli/ai-context/project.json +0 -14
- package/test-projects/salesforce-cli/ai-context/repo_map.json +0 -328
- package/test-projects/salesforce-cli/ai-context/repo_map.md +0 -80
- package/test-projects/salesforce-cli/ai-context/schema.json +0 -5
- package/test-projects/salesforce-cli/ai-context/summary.md +0 -13
- package/test-projects/salesforce-cli/ai-context/symbols.json +0 -1
- package/test-projects/salesforce-cli/ai-context/tech_stack.md +0 -31
- package/test-projects/salesforce-cli/ai-context/tools.json +0 -10
- package/test-projects/spring-boot-app/.ai-dev/index.db +0 -0
- package/test-projects/spring-boot-app/ai-context/ai_context.md +0 -91
- package/test-projects/spring-boot-app/ai-context/ai_rules.md +0 -48
- package/test-projects/spring-boot-app/ai-context/architecture.md +0 -39
- package/test-projects/spring-boot-app/ai-context/cache.json +0 -173
- package/test-projects/spring-boot-app/ai-context/context/features/src.json +0 -26
- package/test-projects/spring-boot-app/ai-context/context/flows/PostController.json +0 -19
- package/test-projects/spring-boot-app/ai-context/context/flows/UserController.json +0 -19
- package/test-projects/spring-boot-app/ai-context/context/flows/comment.json +0 -11
- package/test-projects/spring-boot-app/ai-context/context/flows/post.json +0 -14
- package/test-projects/spring-boot-app/ai-context/context/flows/user.json +0 -14
- package/test-projects/spring-boot-app/ai-context/conventions.md +0 -52
- package/test-projects/spring-boot-app/ai-context/dependencies.json +0 -326
- package/test-projects/spring-boot-app/ai-context/entrypoints.md +0 -4
- package/test-projects/spring-boot-app/ai-context/files.json +0 -214
- package/test-projects/spring-boot-app/ai-context/graph/knowledge-graph.json +0 -231
- package/test-projects/spring-boot-app/ai-context/graph/module-graph.json +0 -22
- package/test-projects/spring-boot-app/ai-context/graph/symbol-graph.json +0 -794
- package/test-projects/spring-boot-app/ai-context/graph/symbol-references.json +0 -70
- package/test-projects/spring-boot-app/ai-context/index-state.json +0 -301
- package/test-projects/spring-boot-app/ai-context/index.db +0 -0
- package/test-projects/spring-boot-app/ai-context/modules.json +0 -21
- package/test-projects/spring-boot-app/ai-context/project.json +0 -17
- package/test-projects/spring-boot-app/ai-context/repo_map.json +0 -461
- package/test-projects/spring-boot-app/ai-context/repo_map.md +0 -109
- package/test-projects/spring-boot-app/ai-context/schema.json +0 -5
- package/test-projects/spring-boot-app/ai-context/summary.md +0 -12
- package/test-projects/spring-boot-app/ai-context/symbols.json +0 -1
- package/test-projects/spring-boot-app/ai-context/tech_stack.md +0 -32
- package/test-projects/spring-boot-app/ai-context/tools.json +0 -10
|
@@ -1,31 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,266 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": "1.0.0",
|
|
3
|
-
"lastIndexed": "2026-03-18T19:21:54.965Z",
|
|
4
|
-
"totalFiles": 37,
|
|
5
|
-
"files": {
|
|
6
|
-
"ai/ai_context.md": {
|
|
7
|
-
"path": "ai/ai_context.md",
|
|
8
|
-
"hash": "eabfa1d98bb53e148d668bdac5400380",
|
|
9
|
-
"mtime": 1773861714386.4226,
|
|
10
|
-
"size": 1707,
|
|
11
|
-
"indexedAt": "2026-03-18T19:21:54.617Z"
|
|
12
|
-
},
|
|
13
|
-
"ai/ai_rules.md": {
|
|
14
|
-
"path": "ai/ai_rules.md",
|
|
15
|
-
"hash": "287d4eac88479556a1903587e35e0716",
|
|
16
|
-
"mtime": 1773861714386.4226,
|
|
17
|
-
"size": 926,
|
|
18
|
-
"indexedAt": "2026-03-18T19:21:54.617Z"
|
|
19
|
-
},
|
|
20
|
-
"ai/architecture.md": {
|
|
21
|
-
"path": "ai/architecture.md",
|
|
22
|
-
"hash": "d337210d84e646d3d493daddbbcb6393",
|
|
23
|
-
"mtime": 1773861714378.4226,
|
|
24
|
-
"size": 690,
|
|
25
|
-
"indexedAt": "2026-03-18T19:21:54.617Z"
|
|
26
|
-
},
|
|
27
|
-
"ai/cache.json": {
|
|
28
|
-
"path": "ai/cache.json",
|
|
29
|
-
"hash": "5fec197fcd39aa65a770cbfca36a1a72",
|
|
30
|
-
"mtime": 1773861714475.424,
|
|
31
|
-
"size": 4524,
|
|
32
|
-
"indexedAt": "2026-03-18T19:21:54.617Z"
|
|
33
|
-
},
|
|
34
|
-
"ai/context/features/src.json": {
|
|
35
|
-
"path": "ai/context/features/src.json",
|
|
36
|
-
"hash": "2d248c2486297a3db63103469fcb4d7b",
|
|
37
|
-
"mtime": 1773861714477.424,
|
|
38
|
-
"size": 367,
|
|
39
|
-
"indexedAt": "2026-03-18T19:21:54.617Z"
|
|
40
|
-
},
|
|
41
|
-
"ai/context/flows/UsersPage.json": {
|
|
42
|
-
"path": "ai/context/flows/UsersPage.json",
|
|
43
|
-
"hash": "9c80be1645cd69f5ad66d24ba46e8b85",
|
|
44
|
-
"mtime": 1773854929733.0337,
|
|
45
|
-
"size": 223,
|
|
46
|
-
"indexedAt": "2026-03-18T19:21:54.617Z"
|
|
47
|
-
},
|
|
48
|
-
"ai/context/flows/dashboard.json": {
|
|
49
|
-
"path": "ai/context/flows/dashboard.json",
|
|
50
|
-
"hash": "0fbc56b67033373bb6157659552c82d9",
|
|
51
|
-
"mtime": 1773861714477.424,
|
|
52
|
-
"size": 154,
|
|
53
|
-
"indexedAt": "2026-03-18T19:21:54.617Z"
|
|
54
|
-
},
|
|
55
|
-
"ai/context/flows/login.json": {
|
|
56
|
-
"path": "ai/context/flows/login.json",
|
|
57
|
-
"hash": "9311af687ac6a30df3de225f1e18f879",
|
|
58
|
-
"mtime": 1773861714477.424,
|
|
59
|
-
"size": 142,
|
|
60
|
-
"indexedAt": "2026-03-18T19:21:54.617Z"
|
|
61
|
-
},
|
|
62
|
-
"ai/context/flows/users.json": {
|
|
63
|
-
"path": "ai/context/flows/users.json",
|
|
64
|
-
"hash": "b5ee48090ea670d1afe36d1fa13500b7",
|
|
65
|
-
"mtime": 1773861714477.424,
|
|
66
|
-
"size": 142,
|
|
67
|
-
"indexedAt": "2026-03-18T19:21:54.617Z"
|
|
68
|
-
},
|
|
69
|
-
"ai/conventions.md": {
|
|
70
|
-
"path": "ai/conventions.md",
|
|
71
|
-
"hash": "cf36cf015f6c293ebf89ec2c7756bb57",
|
|
72
|
-
"mtime": 1773861714381.4226,
|
|
73
|
-
"size": 826,
|
|
74
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
75
|
-
},
|
|
76
|
-
"ai/dependencies.json": {
|
|
77
|
-
"path": "ai/dependencies.json",
|
|
78
|
-
"hash": "6a39a4044a4a0ea07350ea8892172705",
|
|
79
|
-
"mtime": 1773861714385.4226,
|
|
80
|
-
"size": 2838,
|
|
81
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
82
|
-
},
|
|
83
|
-
"ai/entrypoints.md": {
|
|
84
|
-
"path": "ai/entrypoints.md",
|
|
85
|
-
"hash": "34c8965a66697d9f1d428bb0904f5d8d",
|
|
86
|
-
"mtime": 1773861714380.4226,
|
|
87
|
-
"size": 43,
|
|
88
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
89
|
-
},
|
|
90
|
-
"ai/files.json": {
|
|
91
|
-
"path": "ai/files.json",
|
|
92
|
-
"hash": "8cb8cced05906e071f94d2a86bc29f1c",
|
|
93
|
-
"mtime": 1773861714547.4253,
|
|
94
|
-
"size": 3756,
|
|
95
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
96
|
-
},
|
|
97
|
-
"ai/graph/knowledge-graph.json": {
|
|
98
|
-
"path": "ai/graph/knowledge-graph.json",
|
|
99
|
-
"hash": "87c9ae1473634b53bb26f13be09c6b59",
|
|
100
|
-
"mtime": 1773861714964.432,
|
|
101
|
-
"size": 2073,
|
|
102
|
-
"indexedAt": "2026-03-18T19:21:54.965Z"
|
|
103
|
-
},
|
|
104
|
-
"ai/graph/module-graph.json": {
|
|
105
|
-
"path": "ai/graph/module-graph.json",
|
|
106
|
-
"hash": "3599338f9de3043664fde3c5ca8bc1ca",
|
|
107
|
-
"mtime": 1773861714464.4238,
|
|
108
|
-
"size": 546,
|
|
109
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
110
|
-
},
|
|
111
|
-
"ai/graph/symbol-graph.json": {
|
|
112
|
-
"path": "ai/graph/symbol-graph.json",
|
|
113
|
-
"hash": "cdd01d0b3bdb6f26648460fa8d33b069",
|
|
114
|
-
"mtime": 1773861714473.424,
|
|
115
|
-
"size": 23781,
|
|
116
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
117
|
-
},
|
|
118
|
-
"ai/graph/symbol-references.json": {
|
|
119
|
-
"path": "ai/graph/symbol-references.json",
|
|
120
|
-
"hash": "a2ec09612e8db86fc410fc8b4755c07b",
|
|
121
|
-
"mtime": 1773861714473.424,
|
|
122
|
-
"size": 829,
|
|
123
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
124
|
-
},
|
|
125
|
-
"ai/index-state.json": {
|
|
126
|
-
"path": "ai/index-state.json",
|
|
127
|
-
"hash": "cc7df0aa830c0f73c380b6c2e13b49b6",
|
|
128
|
-
"mtime": 1773861714617.4263,
|
|
129
|
-
"size": 8416,
|
|
130
|
-
"indexedAt": "2026-03-18T19:21:54.965Z"
|
|
131
|
-
},
|
|
132
|
-
"ai/modules.json": {
|
|
133
|
-
"path": "ai/modules.json",
|
|
134
|
-
"hash": "c539e0624fa9a288ddfb14bd48b5587e",
|
|
135
|
-
"mtime": 1773861714548.4253,
|
|
136
|
-
"size": 352,
|
|
137
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
138
|
-
},
|
|
139
|
-
"ai/project.json": {
|
|
140
|
-
"path": "ai/project.json",
|
|
141
|
-
"hash": "80e040d1760d6963ac373a95bb7f637e",
|
|
142
|
-
"mtime": 1773861714389.4226,
|
|
143
|
-
"size": 257,
|
|
144
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
145
|
-
},
|
|
146
|
-
"ai/repo-map.json": {
|
|
147
|
-
"path": "ai/repo-map.json",
|
|
148
|
-
"hash": "d34906e17c1fe7863bf3dc15e05d9e81",
|
|
149
|
-
"mtime": 1773861714462.4238,
|
|
150
|
-
"size": 8780,
|
|
151
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
152
|
-
},
|
|
153
|
-
"ai/repo_map.json": {
|
|
154
|
-
"path": "ai/repo_map.json",
|
|
155
|
-
"hash": "558556f14ae4b340bfb78a16a24a1fa6",
|
|
156
|
-
"mtime": 1773861714377.4224,
|
|
157
|
-
"size": 8780,
|
|
158
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
159
|
-
},
|
|
160
|
-
"ai/repo_map.md": {
|
|
161
|
-
"path": "ai/repo_map.md",
|
|
162
|
-
"hash": "59a0f2ba5b4f1c8e3b6f3e20072400f0",
|
|
163
|
-
"mtime": 1773861714377.4224,
|
|
164
|
-
"size": 2197,
|
|
165
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
166
|
-
},
|
|
167
|
-
"ai/schema.json": {
|
|
168
|
-
"path": "ai/schema.json",
|
|
169
|
-
"hash": "80ae1651845b2ab8e40bc22c5c1a3d3e",
|
|
170
|
-
"mtime": 1773861714389.4226,
|
|
171
|
-
"size": 102,
|
|
172
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
173
|
-
},
|
|
174
|
-
"ai/summary.md": {
|
|
175
|
-
"path": "ai/summary.md",
|
|
176
|
-
"hash": "7534e4a1ea946d1e802e62764e4df734",
|
|
177
|
-
"mtime": 1773861714377.4224,
|
|
178
|
-
"size": 179,
|
|
179
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
180
|
-
},
|
|
181
|
-
"ai/symbols.json": {
|
|
182
|
-
"path": "ai/symbols.json",
|
|
183
|
-
"hash": "ad94b9b17ac8aee49fe27f0113994ceb",
|
|
184
|
-
"mtime": 1773861714383.4226,
|
|
185
|
-
"size": 25371,
|
|
186
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
187
|
-
},
|
|
188
|
-
"ai/tech_stack.md": {
|
|
189
|
-
"path": "ai/tech_stack.md",
|
|
190
|
-
"hash": "755fb19ec271aaab4faf80151b0c9d3e",
|
|
191
|
-
"mtime": 1773861714380.4226,
|
|
192
|
-
"size": 470,
|
|
193
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
194
|
-
},
|
|
195
|
-
"ai/tools.json": {
|
|
196
|
-
"path": "ai/tools.json",
|
|
197
|
-
"hash": "b1356e52c74e9b3b6a0d397b790a4968",
|
|
198
|
-
"mtime": 1773861714389.4226,
|
|
199
|
-
"size": 138,
|
|
200
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
201
|
-
},
|
|
202
|
-
"package.json": {
|
|
203
|
-
"path": "package.json",
|
|
204
|
-
"hash": "12744c74a0278dc2edfb68294b9b9125",
|
|
205
|
-
"mtime": 1773777304827.265,
|
|
206
|
-
"size": 321,
|
|
207
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
208
|
-
},
|
|
209
|
-
"src/App.tsx": {
|
|
210
|
-
"path": "src/App.tsx",
|
|
211
|
-
"hash": "1bd200aa3ea7b4e1175a07d0f26f8dc4",
|
|
212
|
-
"mtime": 1773777339360.6953,
|
|
213
|
-
"size": 614,
|
|
214
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
215
|
-
},
|
|
216
|
-
"src/context/AuthContext.tsx": {
|
|
217
|
-
"path": "src/context/AuthContext.tsx",
|
|
218
|
-
"hash": "4113336d7e2eb6ac2b78cebe8464276e",
|
|
219
|
-
"mtime": 1773777350783.8386,
|
|
220
|
-
"size": 1070,
|
|
221
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
222
|
-
},
|
|
223
|
-
"src/hooks/useAuth.ts": {
|
|
224
|
-
"path": "src/hooks/useAuth.ts",
|
|
225
|
-
"hash": "036b7295855cbd8214eb4653954f10cc",
|
|
226
|
-
"mtime": 1773777417490.685,
|
|
227
|
-
"size": 269,
|
|
228
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
229
|
-
},
|
|
230
|
-
"src/main.tsx": {
|
|
231
|
-
"path": "src/main.tsx",
|
|
232
|
-
"hash": "283000b4b4218c8dc8b4e634a70bbbe3",
|
|
233
|
-
"mtime": 1773777310472.335,
|
|
234
|
-
"size": 247,
|
|
235
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
236
|
-
},
|
|
237
|
-
"src/pages/DashboardPage.tsx": {
|
|
238
|
-
"path": "src/pages/DashboardPage.tsx",
|
|
239
|
-
"hash": "4c9a9c8fc6a53db6bdbb4d0de6561baf",
|
|
240
|
-
"mtime": 1773777385566.278,
|
|
241
|
-
"size": 358,
|
|
242
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
243
|
-
},
|
|
244
|
-
"src/pages/LoginPage.tsx": {
|
|
245
|
-
"path": "src/pages/LoginPage.tsx",
|
|
246
|
-
"hash": "16a9451aafa3dd13e3c62b8816ab98d6",
|
|
247
|
-
"mtime": 1773777377789.1794,
|
|
248
|
-
"size": 1063,
|
|
249
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
250
|
-
},
|
|
251
|
-
"src/pages/UsersPage.tsx": {
|
|
252
|
-
"path": "src/pages/UsersPage.tsx",
|
|
253
|
-
"hash": "e24caa3c7d598228c36600eb1ca95b30",
|
|
254
|
-
"mtime": 1773777394130.387,
|
|
255
|
-
"size": 821,
|
|
256
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
257
|
-
},
|
|
258
|
-
"src/services/userService.ts": {
|
|
259
|
-
"path": "src/services/userService.ts",
|
|
260
|
-
"hash": "78df2c3240cd630cedb2095347616301",
|
|
261
|
-
"mtime": 1773777428144.8215,
|
|
262
|
-
"size": 997,
|
|
263
|
-
"indexedAt": "2026-03-18T19:21:54.618Z"
|
|
264
|
-
}
|
|
265
|
-
}
|
|
266
|
-
}
|
|
Binary file
|
|
@@ -1,17 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "react-app",
|
|
3
|
-
"rootDir": "test-projects/react-app",
|
|
4
|
-
"features": [
|
|
5
|
-
"src"
|
|
6
|
-
],
|
|
7
|
-
"flows": [
|
|
8
|
-
"UsersPage",
|
|
9
|
-
"dashboard",
|
|
10
|
-
"login",
|
|
11
|
-
"users"
|
|
12
|
-
],
|
|
13
|
-
"languages": [],
|
|
14
|
-
"frameworks": [],
|
|
15
|
-
"generatedAt": "2026-03-18T19:21:54.390Z"
|
|
16
|
-
}
|