ai-first-cli 1.2.2 → 1.3.0
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/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/adapters/baseAdapter.d.ts +1 -1
- package/dist/core/adapters/baseAdapter.d.ts.map +1 -1
- package/dist/core/adapters/baseAdapter.js +50 -12
- package/dist/core/adapters/baseAdapter.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.d.ts.map +1 -1
- package/dist/core/semanticContexts.js +23 -61
- 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/install.sh +143 -17
- 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/adapters/baseAdapter.ts +61 -12
- 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 +25 -67
- package/src/utils/constants.ts +78 -0
- 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/ANALISIS_COMPLETO.md +0 -424
- package/ANALISIS_MEJORAS.md +0 -327
- package/BUGS.md +0 -455
- package/PLAN_MEJORAS.md +0 -216
- package/STATUS_ADAPTADORES +0 -126
- package/TEST_RESULTS.md +0 -198
- package/TEST_RESULTS_COMPARATIVE.md +0 -159
- package/TEST_RESULTS_COMPLETE.md +0 -127
- package/TEST_RESULTS_COMPREHENSIVE.md +0 -208
- package/TEST_RESULTS_PHASE1.md +0 -420
- 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 -2946
- 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 -44314
- 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 -4340
- package/ai-context/index.db +0 -0
- package/ai-context/modules.json +0 -532
- package/ai-context/project.json +0 -30
- package/ai-context/repo_map.json +0 -5818
- package/ai-context/repo_map.md +0 -1327
- package/ai-context/schema.json +0 -5
- package/ai-context/summary.md +0 -42
- package/ai-context/symbols.json +0 -7
- package/ai-context/tech_stack.md +0 -46
- 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,4340 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": "1.0.0",
|
|
3
|
-
"lastIndexed": "2026-03-19T21:59:56.035Z",
|
|
4
|
-
"totalFiles": 619,
|
|
5
|
-
"files": {
|
|
6
|
-
".netlify/state.json": {
|
|
7
|
-
"path": ".netlify/state.json",
|
|
8
|
-
"hash": "18a32a19520dc577b2a8faa5a5b24660",
|
|
9
|
-
"mtime": 1773089671614.5596,
|
|
10
|
-
"size": 53,
|
|
11
|
-
"indexedAt": "2026-03-18T19:21:24.548Z"
|
|
12
|
-
},
|
|
13
|
-
"ANALISIS_COMPLETO.md": {
|
|
14
|
-
"path": "ANALISIS_COMPLETO.md",
|
|
15
|
-
"hash": "d83e2304adc6e0c3085b1e60ac3da61c",
|
|
16
|
-
"mtime": 1773845526410.2007,
|
|
17
|
-
"size": 13713,
|
|
18
|
-
"indexedAt": "2026-03-18T19:21:24.548Z"
|
|
19
|
-
},
|
|
20
|
-
"ANALISIS_MEJORAS.md": {
|
|
21
|
-
"path": "ANALISIS_MEJORAS.md",
|
|
22
|
-
"hash": "be77cf9d0386bb0bd0b8a01050837005",
|
|
23
|
-
"mtime": 1773797381719.1362,
|
|
24
|
-
"size": 9666,
|
|
25
|
-
"indexedAt": "2026-03-18T19:21:24.548Z"
|
|
26
|
-
},
|
|
27
|
-
"BUGS.md": {
|
|
28
|
-
"path": "BUGS.md",
|
|
29
|
-
"hash": "c0173c586524a860ecdc3e6a2d468a1c",
|
|
30
|
-
"mtime": 1773797238389.9348,
|
|
31
|
-
"size": 16405,
|
|
32
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
33
|
-
},
|
|
34
|
-
"CHANGELOG.md": {
|
|
35
|
-
"path": "CHANGELOG.md",
|
|
36
|
-
"hash": "960656671015416f3ee6715f3d647867",
|
|
37
|
-
"mtime": 1773797150695.5867,
|
|
38
|
-
"size": 5508,
|
|
39
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
40
|
-
},
|
|
41
|
-
"CONTRIBUTING.md": {
|
|
42
|
-
"path": "CONTRIBUTING.md",
|
|
43
|
-
"hash": "f08bff9a750bbe18e8e2d20a291aea6b",
|
|
44
|
-
"mtime": 1773008956996.6243,
|
|
45
|
-
"size": 1768,
|
|
46
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
47
|
-
},
|
|
48
|
-
"FLOW.md": {
|
|
49
|
-
"path": "FLOW.md",
|
|
50
|
-
"hash": "3229cb5aed9575b09415c641ffa24a81",
|
|
51
|
-
"mtime": 1773010195719.8748,
|
|
52
|
-
"size": 8721,
|
|
53
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
54
|
-
},
|
|
55
|
-
"PLAN_MEJORAS.md": {
|
|
56
|
-
"path": "PLAN_MEJORAS.md",
|
|
57
|
-
"hash": "8429a595b64327888c55f06fe67a7cbe",
|
|
58
|
-
"mtime": 1773854140224.48,
|
|
59
|
-
"size": 8566,
|
|
60
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
61
|
-
},
|
|
62
|
-
"README.es.md": {
|
|
63
|
-
"path": "README.es.md",
|
|
64
|
-
"hash": "01dec2cc8fb7dd7d1a4812f42b193d07",
|
|
65
|
-
"mtime": 1773165384491.799,
|
|
66
|
-
"size": 13051,
|
|
67
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
68
|
-
},
|
|
69
|
-
"README.md": {
|
|
70
|
-
"path": "README.md",
|
|
71
|
-
"hash": "9712f00575eb69d064e44c9ca7f12097",
|
|
72
|
-
"mtime": 1773165282282.2097,
|
|
73
|
-
"size": 14162,
|
|
74
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
75
|
-
},
|
|
76
|
-
"TEST_RESULTS.md": {
|
|
77
|
-
"path": "TEST_RESULTS.md",
|
|
78
|
-
"hash": "4dcc48b362e754348f1c26a78a8a419a",
|
|
79
|
-
"mtime": 1773795118813.5083,
|
|
80
|
-
"size": 4172,
|
|
81
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
82
|
-
},
|
|
83
|
-
"TEST_RESULTS_COMPARATIVE.md": {
|
|
84
|
-
"path": "TEST_RESULTS_COMPARATIVE.md",
|
|
85
|
-
"hash": "f885cecf865df3e9fbe9e196436dd98a",
|
|
86
|
-
"mtime": 1773795738092.3345,
|
|
87
|
-
"size": 5121,
|
|
88
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
89
|
-
},
|
|
90
|
-
"TEST_RESULTS_COMPLETE.md": {
|
|
91
|
-
"path": "TEST_RESULTS_COMPLETE.md",
|
|
92
|
-
"hash": "28ab6574db905dacefaf1b46ac41bb1a",
|
|
93
|
-
"mtime": 1773796602392.1162,
|
|
94
|
-
"size": 5691,
|
|
95
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
96
|
-
},
|
|
97
|
-
"TEST_RESULTS_COMPREHENSIVE.md": {
|
|
98
|
-
"path": "TEST_RESULTS_COMPREHENSIVE.md",
|
|
99
|
-
"hash": "e8dceb19849928c2ed969cb811b647b9",
|
|
100
|
-
"mtime": 1773796206591.9136,
|
|
101
|
-
"size": 7438,
|
|
102
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
103
|
-
},
|
|
104
|
-
"TEST_RESULTS_PHASE1.md": {
|
|
105
|
-
"path": "TEST_RESULTS_PHASE1.md",
|
|
106
|
-
"hash": "cfd4aad15d6b273528faf0c43a4f12de",
|
|
107
|
-
"mtime": 1773854897635.4668,
|
|
108
|
-
"size": 15094,
|
|
109
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
110
|
-
},
|
|
111
|
-
"ai/ai_context.md": {
|
|
112
|
-
"path": "ai/ai_context.md",
|
|
113
|
-
"hash": "ad4a51ec2a6277f097ec9a80c5517686",
|
|
114
|
-
"mtime": 1773861683213.9294,
|
|
115
|
-
"size": 2896,
|
|
116
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
117
|
-
},
|
|
118
|
-
"ai/ai_rules.md": {
|
|
119
|
-
"path": "ai/ai_rules.md",
|
|
120
|
-
"hash": "468baddf7848a3e0d49328e4e75cb495",
|
|
121
|
-
"mtime": 1773861683213.9294,
|
|
122
|
-
"size": 1207,
|
|
123
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
124
|
-
},
|
|
125
|
-
"ai/architecture.md": {
|
|
126
|
-
"path": "ai/architecture.md",
|
|
127
|
-
"hash": "ac965d6508a0baac14f2a5e039373190",
|
|
128
|
-
"mtime": 1773861683115.9277,
|
|
129
|
-
"size": 2661,
|
|
130
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
131
|
-
},
|
|
132
|
-
"ai/cache.json": {
|
|
133
|
-
"path": "ai/cache.json",
|
|
134
|
-
"hash": "72fa0ce010856ad543d47330380ebee1",
|
|
135
|
-
"mtime": 1773861683726.9375,
|
|
136
|
-
"size": 82840,
|
|
137
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
138
|
-
},
|
|
139
|
-
"ai/ccp/jira-123/context.json": {
|
|
140
|
-
"path": "ai/ccp/jira-123/context.json",
|
|
141
|
-
"hash": "60531ec055a219c58dfde8ae0d511c8a",
|
|
142
|
-
"mtime": 1773162450033.8916,
|
|
143
|
-
"size": 96,
|
|
144
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
145
|
-
},
|
|
146
|
-
"ai/context/features/commands.json": {
|
|
147
|
-
"path": "ai/context/features/commands.json",
|
|
148
|
-
"hash": "48e3fd06862409e55b7e154a6683071a",
|
|
149
|
-
"mtime": 1773851281856.6865,
|
|
150
|
-
"size": 323,
|
|
151
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
152
|
-
},
|
|
153
|
-
"ai/context/features/src.json": {
|
|
154
|
-
"path": "ai/context/features/src.json",
|
|
155
|
-
"hash": "cdc2cf9c106cf259a0a96d6e4001dd21",
|
|
156
|
-
"mtime": 1773861683871.9397,
|
|
157
|
-
"size": 1974,
|
|
158
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
159
|
-
},
|
|
160
|
-
"ai/context/features/test-projects.json": {
|
|
161
|
-
"path": "ai/context/features/test-projects.json",
|
|
162
|
-
"hash": "3cf9abe53c00499e19f446bb5e33afdc",
|
|
163
|
-
"mtime": 1773861683871.9397,
|
|
164
|
-
"size": 3356,
|
|
165
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
166
|
-
},
|
|
167
|
-
"ai/context/flows/account.json": {
|
|
168
|
-
"path": "ai/context/flows/account.json",
|
|
169
|
-
"hash": "b2c5f559c33e0b7bcf8ef848bbf94fc1",
|
|
170
|
-
"mtime": 1773851281856.6865,
|
|
171
|
-
"size": 260,
|
|
172
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
173
|
-
},
|
|
174
|
-
"ai/context/flows/add_.json": {
|
|
175
|
-
"path": "ai/context/flows/add_.json",
|
|
176
|
-
"hash": "55a902e5509ae357f962e04591bb8bf5",
|
|
177
|
-
"mtime": 1773861683249.93,
|
|
178
|
-
"size": 181,
|
|
179
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
180
|
-
},
|
|
181
|
-
"ai/context/flows/ai-first.json": {
|
|
182
|
-
"path": "ai/context/flows/ai-first.json",
|
|
183
|
-
"hash": "519e23e52c3fd00fe7620dcdda3dfd8a",
|
|
184
|
-
"mtime": 1773861683248.93,
|
|
185
|
-
"size": 147,
|
|
186
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
187
|
-
},
|
|
188
|
-
"ai/context/flows/api.json": {
|
|
189
|
-
"path": "ai/context/flows/api.json",
|
|
190
|
-
"hash": "b6d2b3b5f66876810647907f3ce64cb8",
|
|
191
|
-
"mtime": 1773861683249.93,
|
|
192
|
-
"size": 174,
|
|
193
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
194
|
-
},
|
|
195
|
-
"ai/context/flows/auth..json": {
|
|
196
|
-
"path": "ai/context/flows/auth..json",
|
|
197
|
-
"hash": "2c4c9ca9f58b85fe40411c2c41c7623d",
|
|
198
|
-
"mtime": 1773861683249.93,
|
|
199
|
-
"size": 269,
|
|
200
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
201
|
-
},
|
|
202
|
-
"ai/context/flows/auth.json": {
|
|
203
|
-
"path": "ai/context/flows/auth.json",
|
|
204
|
-
"hash": "5cc3201e74ffb877bc40cf53d0f1a022",
|
|
205
|
-
"mtime": 1773861683248.93,
|
|
206
|
-
"size": 332,
|
|
207
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
208
|
-
},
|
|
209
|
-
"ai/context/flows/category.json": {
|
|
210
|
-
"path": "ai/context/flows/category.json",
|
|
211
|
-
"hash": "cf87b916cb3c943136cf8f3539ef65dc",
|
|
212
|
-
"mtime": 1773861683248.93,
|
|
213
|
-
"size": 315,
|
|
214
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
215
|
-
},
|
|
216
|
-
"ai/context/flows/comment.json": {
|
|
217
|
-
"path": "ai/context/flows/comment.json",
|
|
218
|
-
"hash": "add34ffed48b550e174dfca7f1625e7b",
|
|
219
|
-
"mtime": 1773861683248.93,
|
|
220
|
-
"size": 659,
|
|
221
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
222
|
-
},
|
|
223
|
-
"ai/context/flows/comments_.json": {
|
|
224
|
-
"path": "ai/context/flows/comments_.json",
|
|
225
|
-
"hash": "2bb1c4a68b2326aedd9c8294288978c3",
|
|
226
|
-
"mtime": 1773861683249.93,
|
|
227
|
-
"size": 245,
|
|
228
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
229
|
-
},
|
|
230
|
-
"ai/context/flows/dashboard.json": {
|
|
231
|
-
"path": "ai/context/flows/dashboard.json",
|
|
232
|
-
"hash": "e2cec18eb964929e180e23dece8417c0",
|
|
233
|
-
"mtime": 1773851281857.6865,
|
|
234
|
-
"size": 202,
|
|
235
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
236
|
-
},
|
|
237
|
-
"ai/context/flows/doctor.json": {
|
|
238
|
-
"path": "ai/context/flows/doctor.json",
|
|
239
|
-
"hash": "7ea1481871abde355cad12cf6529bd3e",
|
|
240
|
-
"mtime": 1773861683248.93,
|
|
241
|
-
"size": 141,
|
|
242
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
243
|
-
},
|
|
244
|
-
"ai/context/flows/explore.json": {
|
|
245
|
-
"path": "ai/context/flows/explore.json",
|
|
246
|
-
"hash": "dc98cfe5667da6160b45c9dec5adfd11",
|
|
247
|
-
"mtime": 1773861683248.93,
|
|
248
|
-
"size": 144,
|
|
249
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
250
|
-
},
|
|
251
|
-
"ai/context/flows/list_.json": {
|
|
252
|
-
"path": "ai/context/flows/list_.json",
|
|
253
|
-
"hash": "1d8c41032eb16cb916cbcdfe05b21468",
|
|
254
|
-
"mtime": 1773861683249.93,
|
|
255
|
-
"size": 184,
|
|
256
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
257
|
-
},
|
|
258
|
-
"ai/context/flows/login.json": {
|
|
259
|
-
"path": "ai/context/flows/login.json",
|
|
260
|
-
"hash": "2990a4b77d43e47f42d40d72cd6686d0",
|
|
261
|
-
"mtime": 1773851281857.6865,
|
|
262
|
-
"size": 190,
|
|
263
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
264
|
-
},
|
|
265
|
-
"ai/context/flows/opportunity.json": {
|
|
266
|
-
"path": "ai/context/flows/opportunity.json",
|
|
267
|
-
"hash": "5807c6713416c0918fe8cf87561d0c86",
|
|
268
|
-
"mtime": 1773851281857.6865,
|
|
269
|
-
"size": 272,
|
|
270
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
271
|
-
},
|
|
272
|
-
"ai/context/flows/post.json": {
|
|
273
|
-
"path": "ai/context/flows/post.json",
|
|
274
|
-
"hash": "378facf71a8606f3ee160d2473263379",
|
|
275
|
-
"mtime": 1773861683248.93,
|
|
276
|
-
"size": 744,
|
|
277
|
-
"indexedAt": "2026-03-18T19:21:24.549Z"
|
|
278
|
-
},
|
|
279
|
-
"ai/context/flows/posts_.json": {
|
|
280
|
-
"path": "ai/context/flows/posts_.json",
|
|
281
|
-
"hash": "3b2580700cfb6b1a8138d30df99399db",
|
|
282
|
-
"mtime": 1773861683249.93,
|
|
283
|
-
"size": 236,
|
|
284
|
-
"indexedAt": "2026-03-18T19:21:24.550Z"
|
|
285
|
-
},
|
|
286
|
-
"ai/context/flows/remove_.json": {
|
|
287
|
-
"path": "ai/context/flows/remove_.json",
|
|
288
|
-
"hash": "f5536b94612783995e76dc8ed74a28da",
|
|
289
|
-
"mtime": 1773861683249.93,
|
|
290
|
-
"size": 190,
|
|
291
|
-
"indexedAt": "2026-03-18T19:21:24.550Z"
|
|
292
|
-
},
|
|
293
|
-
"ai/context/flows/routes.json": {
|
|
294
|
-
"path": "ai/context/flows/routes.json",
|
|
295
|
-
"hash": "00b67f4db96c2a8fab4422b20f5cd534",
|
|
296
|
-
"mtime": 1773861683248.93,
|
|
297
|
-
"size": 390,
|
|
298
|
-
"indexedAt": "2026-03-18T19:21:24.550Z"
|
|
299
|
-
},
|
|
300
|
-
"ai/context/flows/routes.py.json": {
|
|
301
|
-
"path": "ai/context/flows/routes.py.json",
|
|
302
|
-
"hash": "881c3c9641e454634cfbf12afe83b8bc",
|
|
303
|
-
"mtime": 1773861683871.9397,
|
|
304
|
-
"size": 448,
|
|
305
|
-
"indexedAt": "2026-03-18T19:21:24.550Z"
|
|
306
|
-
},
|
|
307
|
-
"ai/context/flows/user.json": {
|
|
308
|
-
"path": "ai/context/flows/user.json",
|
|
309
|
-
"hash": "93d4e3c2656f297d9a71e4aaa51b7fd3",
|
|
310
|
-
"mtime": 1773861683248.93,
|
|
311
|
-
"size": 879,
|
|
312
|
-
"indexedAt": "2026-03-18T19:21:24.550Z"
|
|
313
|
-
},
|
|
314
|
-
"ai/context/flows/users..json": {
|
|
315
|
-
"path": "ai/context/flows/users..json",
|
|
316
|
-
"hash": "bba4acffbadec25f444b28379acb5294",
|
|
317
|
-
"mtime": 1773861683249.93,
|
|
318
|
-
"size": 276,
|
|
319
|
-
"indexedAt": "2026-03-18T19:21:24.550Z"
|
|
320
|
-
},
|
|
321
|
-
"ai/context/flows/users.json": {
|
|
322
|
-
"path": "ai/context/flows/users.json",
|
|
323
|
-
"hash": "f273e00f06ca0730ce57f646168d0633",
|
|
324
|
-
"mtime": 1773851281858.6865,
|
|
325
|
-
"size": 190,
|
|
326
|
-
"indexedAt": "2026-03-18T19:21:24.550Z"
|
|
327
|
-
},
|
|
328
|
-
"ai/context/flows/users_.json": {
|
|
329
|
-
"path": "ai/context/flows/users_.json",
|
|
330
|
-
"hash": "70747fc217ba5a01487c3870e788f701",
|
|
331
|
-
"mtime": 1773861683249.93,
|
|
332
|
-
"size": 236,
|
|
333
|
-
"indexedAt": "2026-03-18T19:21:24.550Z"
|
|
334
|
-
},
|
|
335
|
-
"ai/context/flows/views.json": {
|
|
336
|
-
"path": "ai/context/flows/views.json",
|
|
337
|
-
"hash": "5c601564d4eb4a68e12a312e74ffad13",
|
|
338
|
-
"mtime": 1773861683248.93,
|
|
339
|
-
"size": 219,
|
|
340
|
-
"indexedAt": "2026-03-18T19:21:24.550Z"
|
|
341
|
-
},
|
|
342
|
-
"ai/context/flows/views.py.json": {
|
|
343
|
-
"path": "ai/context/flows/views.py.json",
|
|
344
|
-
"hash": "92e219664bd09fef678ee7fd1d7056ab",
|
|
345
|
-
"mtime": 1773861683871.9397,
|
|
346
|
-
"size": 302,
|
|
347
|
-
"indexedAt": "2026-03-18T19:21:24.550Z"
|
|
348
|
-
},
|
|
349
|
-
"ai/context/repo.json": {
|
|
350
|
-
"path": "ai/context/repo.json",
|
|
351
|
-
"hash": "bd1c6fa8dd53ef2812310be1b0fb660c",
|
|
352
|
-
"mtime": 1773162421927.4534,
|
|
353
|
-
"size": 1529,
|
|
354
|
-
"indexedAt": "2026-03-18T19:21:24.550Z"
|
|
355
|
-
},
|
|
356
|
-
"ai/context/utils.json": {
|
|
357
|
-
"path": "ai/context/utils.json",
|
|
358
|
-
"hash": "1e24ba3674bfffeb902de264f3bfe104",
|
|
359
|
-
"mtime": 1773162421927.4534,
|
|
360
|
-
"size": 121,
|
|
361
|
-
"indexedAt": "2026-03-18T19:21:24.550Z"
|
|
362
|
-
},
|
|
363
|
-
"ai/conventions.md": {
|
|
364
|
-
"path": "ai/conventions.md",
|
|
365
|
-
"hash": "3dfe3926ca897908529e645c31176604",
|
|
366
|
-
"mtime": 1773861683120.928,
|
|
367
|
-
"size": 850,
|
|
368
|
-
"indexedAt": "2026-03-18T19:21:24.550Z"
|
|
369
|
-
},
|
|
370
|
-
"ai/dependencies.json": {
|
|
371
|
-
"path": "ai/dependencies.json",
|
|
372
|
-
"hash": "5c42f814ecc05c9b765eb5c3d1df3538",
|
|
373
|
-
"mtime": 1773861683206.9292,
|
|
374
|
-
"size": 87014,
|
|
375
|
-
"indexedAt": "2026-03-18T19:21:24.550Z"
|
|
376
|
-
},
|
|
377
|
-
"ai/embeddings.json": {
|
|
378
|
-
"path": "ai/embeddings.json",
|
|
379
|
-
"hash": "26a10d77ee69ae123cc71fee255587c7",
|
|
380
|
-
"mtime": 1773074029679.9358,
|
|
381
|
-
"size": 706073,
|
|
382
|
-
"indexedAt": "2026-03-18T19:21:24.551Z"
|
|
383
|
-
},
|
|
384
|
-
"ai/entrypoints.md": {
|
|
385
|
-
"path": "ai/entrypoints.md",
|
|
386
|
-
"hash": "ec0759563a5d2f2d9351ee65013fbde8",
|
|
387
|
-
"mtime": 1773861683118.928,
|
|
388
|
-
"size": 1068,
|
|
389
|
-
"indexedAt": "2026-03-18T19:21:24.551Z"
|
|
390
|
-
},
|
|
391
|
-
"ai/files.json": {
|
|
392
|
-
"path": "ai/files.json",
|
|
393
|
-
"hash": "c8ee0df10ad0ae833140f494ee07b98d",
|
|
394
|
-
"mtime": 1773861683976.9414,
|
|
395
|
-
"size": 71703,
|
|
396
|
-
"indexedAt": "2026-03-18T19:21:24.551Z"
|
|
397
|
-
},
|
|
398
|
-
"ai/git/commit-activity.json": {
|
|
399
|
-
"path": "ai/git/commit-activity.json",
|
|
400
|
-
"hash": "a316ee82ce5e61bcfac27710f35d999c",
|
|
401
|
-
"mtime": 1773854929666.0325,
|
|
402
|
-
"size": 552707,
|
|
403
|
-
"indexedAt": "2026-03-18T19:21:24.552Z"
|
|
404
|
-
},
|
|
405
|
-
"ai/git/recent-features.json": {
|
|
406
|
-
"path": "ai/git/recent-features.json",
|
|
407
|
-
"hash": "d751713988987e9331980363e24189ce",
|
|
408
|
-
"mtime": 1773854929666.0325,
|
|
409
|
-
"size": 2,
|
|
410
|
-
"indexedAt": "2026-03-18T19:21:24.552Z"
|
|
411
|
-
},
|
|
412
|
-
"ai/git/recent-files.json": {
|
|
413
|
-
"path": "ai/git/recent-files.json",
|
|
414
|
-
"hash": "02e54f0e55236da0d7e799a1ce22b47b",
|
|
415
|
-
"mtime": 1773854929666.0325,
|
|
416
|
-
"size": 1636,
|
|
417
|
-
"indexedAt": "2026-03-18T19:21:24.552Z"
|
|
418
|
-
},
|
|
419
|
-
"ai/git/recent-flows.json": {
|
|
420
|
-
"path": "ai/git/recent-flows.json",
|
|
421
|
-
"hash": "d751713988987e9331980363e24189ce",
|
|
422
|
-
"mtime": 1773854929666.0325,
|
|
423
|
-
"size": 2,
|
|
424
|
-
"indexedAt": "2026-03-18T19:21:24.552Z"
|
|
425
|
-
},
|
|
426
|
-
"ai/graph/knowledge-graph.json": {
|
|
427
|
-
"path": "ai/graph/knowledge-graph.json",
|
|
428
|
-
"hash": "f3b4695cd4d8fa147bb274506586c88d",
|
|
429
|
-
"mtime": 1773854929667.0325,
|
|
430
|
-
"size": 1608497,
|
|
431
|
-
"indexedAt": "2026-03-18T19:21:24.554Z"
|
|
432
|
-
},
|
|
433
|
-
"ai/graph/module-graph.json": {
|
|
434
|
-
"path": "ai/graph/module-graph.json",
|
|
435
|
-
"hash": "79ece2ad0d153f888fd671535e95812a",
|
|
436
|
-
"mtime": 1773861683350.9316,
|
|
437
|
-
"size": 34067,
|
|
438
|
-
"indexedAt": "2026-03-18T19:21:24.554Z"
|
|
439
|
-
},
|
|
440
|
-
"ai/graph/symbol-graph.json": {
|
|
441
|
-
"path": "ai/graph/symbol-graph.json",
|
|
442
|
-
"hash": "0fed8ad53527714320a8fed486264455",
|
|
443
|
-
"mtime": 1773861683679.9368,
|
|
444
|
-
"size": 6254510,
|
|
445
|
-
"indexedAt": "2026-03-18T19:21:24.565Z"
|
|
446
|
-
},
|
|
447
|
-
"ai/graph/symbol-references.json": {
|
|
448
|
-
"path": "ai/graph/symbol-references.json",
|
|
449
|
-
"hash": "72805d0c57e1e933751701c756fb4296",
|
|
450
|
-
"mtime": 1773861683693.937,
|
|
451
|
-
"size": 296033,
|
|
452
|
-
"indexedAt": "2026-03-18T19:21:24.566Z"
|
|
453
|
-
},
|
|
454
|
-
"ai/hierarchy.json": {
|
|
455
|
-
"path": "ai/hierarchy.json",
|
|
456
|
-
"hash": "6acd89feb85aa3b73608b4a076062f5a",
|
|
457
|
-
"mtime": 1773854929670.0327,
|
|
458
|
-
"size": 1976,
|
|
459
|
-
"indexedAt": "2026-03-18T19:21:24.566Z"
|
|
460
|
-
},
|
|
461
|
-
"ai/index-state.json": {
|
|
462
|
-
"path": "ai/index-state.json",
|
|
463
|
-
"hash": "0c557017ee79e08150c6608cdba09601",
|
|
464
|
-
"mtime": 1773854929671.0327,
|
|
465
|
-
"size": 32552,
|
|
466
|
-
"indexedAt": "2026-03-18T19:21:24.566Z"
|
|
467
|
-
},
|
|
468
|
-
"ai/modules.json": {
|
|
469
|
-
"path": "ai/modules.json",
|
|
470
|
-
"hash": "283094fee199bd2b19ff5550d82384da",
|
|
471
|
-
"mtime": 1773861683977.9414,
|
|
472
|
-
"size": 28696,
|
|
473
|
-
"indexedAt": "2026-03-18T19:21:24.566Z"
|
|
474
|
-
},
|
|
475
|
-
"ai/project.json": {
|
|
476
|
-
"path": "ai/project.json",
|
|
477
|
-
"hash": "a74d96e6ea8c2031b09619dbb8f3d1bd",
|
|
478
|
-
"mtime": 1773861683250.93,
|
|
479
|
-
"size": 599,
|
|
480
|
-
"indexedAt": "2026-03-18T19:21:24.566Z"
|
|
481
|
-
},
|
|
482
|
-
"ai/repo-map.json": {
|
|
483
|
-
"path": "ai/repo-map.json",
|
|
484
|
-
"hash": "bf720b25a20829ac2b7a9e4a6c25869c",
|
|
485
|
-
"mtime": 1773861683330.9312,
|
|
486
|
-
"size": 168624,
|
|
487
|
-
"indexedAt": "2026-03-18T19:21:24.566Z"
|
|
488
|
-
},
|
|
489
|
-
"ai/repo_map.json": {
|
|
490
|
-
"path": "ai/repo_map.json",
|
|
491
|
-
"hash": "683e925f0bb7bb86a0a95b4f045f247d",
|
|
492
|
-
"mtime": 1773861683111.9277,
|
|
493
|
-
"size": 168624,
|
|
494
|
-
"indexedAt": "2026-03-18T19:21:24.566Z"
|
|
495
|
-
},
|
|
496
|
-
"ai/repo_map.md": {
|
|
497
|
-
"path": "ai/repo_map.md",
|
|
498
|
-
"hash": "76db6ab5077517843b4e9673c713b074",
|
|
499
|
-
"mtime": 1773861683109.9277,
|
|
500
|
-
"size": 41049,
|
|
501
|
-
"indexedAt": "2026-03-18T19:21:24.566Z"
|
|
502
|
-
},
|
|
503
|
-
"ai/schema.json": {
|
|
504
|
-
"path": "ai/schema.json",
|
|
505
|
-
"hash": "4f0b7ea89f849a2d8f24cab1e27e0b35",
|
|
506
|
-
"mtime": 1773861683249.93,
|
|
507
|
-
"size": 102,
|
|
508
|
-
"indexedAt": "2026-03-18T19:21:24.566Z"
|
|
509
|
-
},
|
|
510
|
-
"ai/summary.md": {
|
|
511
|
-
"path": "ai/summary.md",
|
|
512
|
-
"hash": "2a759ad5606e7ff84df3c85bb9f01e62",
|
|
513
|
-
"mtime": 1773861683112.9277,
|
|
514
|
-
"size": 759,
|
|
515
|
-
"indexedAt": "2026-03-18T19:21:24.566Z"
|
|
516
|
-
},
|
|
517
|
-
"ai/symbols.json": {
|
|
518
|
-
"path": "ai/symbols.json",
|
|
519
|
-
"hash": "9ef3d9b7a04b6d50e0086dfec6c9a37f",
|
|
520
|
-
"mtime": 1773861683188.929,
|
|
521
|
-
"size": 1642096,
|
|
522
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
523
|
-
},
|
|
524
|
-
"ai/tech_stack.md": {
|
|
525
|
-
"path": "ai/tech_stack.md",
|
|
526
|
-
"hash": "0a379fa423f21f42370f81b95e58f3a7",
|
|
527
|
-
"mtime": 1773861683118.928,
|
|
528
|
-
"size": 593,
|
|
529
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
530
|
-
},
|
|
531
|
-
"ai/tools.json": {
|
|
532
|
-
"path": "ai/tools.json",
|
|
533
|
-
"hash": "b1356e52c74e9b3b6a0d397b790a4968",
|
|
534
|
-
"mtime": 1773861683250.93,
|
|
535
|
-
"size": 138,
|
|
536
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
537
|
-
},
|
|
538
|
-
"docs/.vitepress/config.ts": {
|
|
539
|
-
"path": "docs/.vitepress/config.ts",
|
|
540
|
-
"hash": "6c53efc8669f87bc9040096b96847be3",
|
|
541
|
-
"mtime": 1773090332406.6528,
|
|
542
|
-
"size": 3219,
|
|
543
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
544
|
-
},
|
|
545
|
-
"docs/.vitepress/theme/custom.css": {
|
|
546
|
-
"path": "docs/.vitepress/theme/custom.css",
|
|
547
|
-
"hash": "924287015c3c64819e66cdfc0f24fa46",
|
|
548
|
-
"mtime": 1773076171344.3733,
|
|
549
|
-
"size": 4021,
|
|
550
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
551
|
-
},
|
|
552
|
-
"docs/.vitepress/theme/index.ts": {
|
|
553
|
-
"path": "docs/.vitepress/theme/index.ts",
|
|
554
|
-
"hash": "a9a72e0000dd7687fd2d899d79e4aee0",
|
|
555
|
-
"mtime": 1773076127580.8638,
|
|
556
|
-
"size": 182,
|
|
557
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
558
|
-
},
|
|
559
|
-
"docs/es/guide/adapters.md": {
|
|
560
|
-
"path": "docs/es/guide/adapters.md",
|
|
561
|
-
"hash": "a593b919a72920866a143d68d3f6114a",
|
|
562
|
-
"mtime": 1773184836139.1023,
|
|
563
|
-
"size": 3853,
|
|
564
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
565
|
-
},
|
|
566
|
-
"docs/es/guide/ai-repository-schema.md": {
|
|
567
|
-
"path": "docs/es/guide/ai-repository-schema.md",
|
|
568
|
-
"hash": "36634728939ebe93bd4f47ebcbeee945",
|
|
569
|
-
"mtime": 1773251866778.0652,
|
|
570
|
-
"size": 3030,
|
|
571
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
572
|
-
},
|
|
573
|
-
"docs/es/guide/features.md": {
|
|
574
|
-
"path": "docs/es/guide/features.md",
|
|
575
|
-
"hash": "0b8d521e9b1156336091a441b64518f0",
|
|
576
|
-
"mtime": 1773178691579.252,
|
|
577
|
-
"size": 1785,
|
|
578
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
579
|
-
},
|
|
580
|
-
"docs/es/guide/flows.md": {
|
|
581
|
-
"path": "docs/es/guide/flows.md",
|
|
582
|
-
"hash": "00cd75411f18ab0c21c0b1d110b14064",
|
|
583
|
-
"mtime": 1773178392796.509,
|
|
584
|
-
"size": 3671,
|
|
585
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
586
|
-
},
|
|
587
|
-
"docs/es/guide/getting-started.md": {
|
|
588
|
-
"path": "docs/es/guide/getting-started.md",
|
|
589
|
-
"hash": "c446f6957beff061b7b41b0ccef510e2",
|
|
590
|
-
"mtime": 1773090370625.2866,
|
|
591
|
-
"size": 619,
|
|
592
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
593
|
-
},
|
|
594
|
-
"docs/es/guide/git-intelligence.md": {
|
|
595
|
-
"path": "docs/es/guide/git-intelligence.md",
|
|
596
|
-
"hash": "e47e2199964d144cb4e841a0c7a8b881",
|
|
597
|
-
"mtime": 1773238994485.4612,
|
|
598
|
-
"size": 4390,
|
|
599
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
600
|
-
},
|
|
601
|
-
"docs/es/guide/incremental-analysis.md": {
|
|
602
|
-
"path": "docs/es/guide/incremental-analysis.md",
|
|
603
|
-
"hash": "526453da195d833ad614c9a32585e3f3",
|
|
604
|
-
"mtime": 1773247246616.0706,
|
|
605
|
-
"size": 3419,
|
|
606
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
607
|
-
},
|
|
608
|
-
"docs/es/guide/knowledge-graph.md": {
|
|
609
|
-
"path": "docs/es/guide/knowledge-graph.md",
|
|
610
|
-
"hash": "a4deda34b2f4f587858127a7299c5e0b",
|
|
611
|
-
"mtime": 1773244257027.961,
|
|
612
|
-
"size": 3593,
|
|
613
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
614
|
-
},
|
|
615
|
-
"docs/es/guide/lazy-indexing.md": {
|
|
616
|
-
"path": "docs/es/guide/lazy-indexing.md",
|
|
617
|
-
"hash": "50862945713d450e7ca2401e62ce3e66",
|
|
618
|
-
"mtime": 1773258482771.7268,
|
|
619
|
-
"size": 3918,
|
|
620
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
621
|
-
},
|
|
622
|
-
"docs/es/guide/performance.md": {
|
|
623
|
-
"path": "docs/es/guide/performance.md",
|
|
624
|
-
"hash": "624e29f574a1bc47347754e918476dcc",
|
|
625
|
-
"mtime": 1773181129397.9136,
|
|
626
|
-
"size": 3199,
|
|
627
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
628
|
-
},
|
|
629
|
-
"docs/es/index.md": {
|
|
630
|
-
"path": "docs/es/index.md",
|
|
631
|
-
"hash": "920ea9e39b01a04495d68306c26d2fe9",
|
|
632
|
-
"mtime": 1773090256493.4934,
|
|
633
|
-
"size": 3121,
|
|
634
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
635
|
-
},
|
|
636
|
-
"docs/examples/express-api.md": {
|
|
637
|
-
"path": "docs/examples/express-api.md",
|
|
638
|
-
"hash": "54af0d58910939c041d98437a73cf231",
|
|
639
|
-
"mtime": 1773076482605.2854,
|
|
640
|
-
"size": 2665,
|
|
641
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
642
|
-
},
|
|
643
|
-
"docs/examples/index.md": {
|
|
644
|
-
"path": "docs/examples/index.md",
|
|
645
|
-
"hash": "67f774e8e8b170d44b51cfcfff9ecdd7",
|
|
646
|
-
"mtime": 1773076421849.489,
|
|
647
|
-
"size": 738,
|
|
648
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
649
|
-
},
|
|
650
|
-
"docs/examples/python-django.md": {
|
|
651
|
-
"path": "docs/examples/python-django.md",
|
|
652
|
-
"hash": "a57217d9a4a0eba7e6750caf75b86aae",
|
|
653
|
-
"mtime": 1773076518221.758,
|
|
654
|
-
"size": 1926,
|
|
655
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
656
|
-
},
|
|
657
|
-
"docs/examples/react-app.md": {
|
|
658
|
-
"path": "docs/examples/react-app.md",
|
|
659
|
-
"hash": "c3ae0d56ab0de03f6957a2c3685e2a10",
|
|
660
|
-
"mtime": 1773076494650.4448,
|
|
661
|
-
"size": 2305,
|
|
662
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
663
|
-
},
|
|
664
|
-
"docs/guide/adapters.md": {
|
|
665
|
-
"path": "docs/guide/adapters.md",
|
|
666
|
-
"hash": "54aff0280eef4b341723d9fe1f4936a1",
|
|
667
|
-
"mtime": 1773194224066.7905,
|
|
668
|
-
"size": 6006,
|
|
669
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
670
|
-
},
|
|
671
|
-
"docs/guide/ai-repository-schema.md": {
|
|
672
|
-
"path": "docs/guide/ai-repository-schema.md",
|
|
673
|
-
"hash": "b953a4c87754d0ac445df26967444891",
|
|
674
|
-
"mtime": 1773251800916.9807,
|
|
675
|
-
"size": 2757,
|
|
676
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
677
|
-
},
|
|
678
|
-
"docs/guide/architecture.md": {
|
|
679
|
-
"path": "docs/guide/architecture.md",
|
|
680
|
-
"hash": "a73bf154ed909b4d0157e0f8f37a97aa",
|
|
681
|
-
"mtime": 1773176294334.256,
|
|
682
|
-
"size": 12576,
|
|
683
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
684
|
-
},
|
|
685
|
-
"docs/guide/flows.md": {
|
|
686
|
-
"path": "docs/guide/flows.md",
|
|
687
|
-
"hash": "58dc503bbdf067153ba4a0b04a8c56f0",
|
|
688
|
-
"mtime": 1773176979656.7134,
|
|
689
|
-
"size": 3165,
|
|
690
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
691
|
-
},
|
|
692
|
-
"docs/guide/getting-started.md": {
|
|
693
|
-
"path": "docs/guide/getting-started.md",
|
|
694
|
-
"hash": "b783c85c32dc67ffa2133915b5cd93fb",
|
|
695
|
-
"mtime": 1773076199524.7075,
|
|
696
|
-
"size": 2315,
|
|
697
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
698
|
-
},
|
|
699
|
-
"docs/guide/git-intelligence.md": {
|
|
700
|
-
"path": "docs/guide/git-intelligence.md",
|
|
701
|
-
"hash": "2e6f8fc3e8efba54d92eea8cc631c19e",
|
|
702
|
-
"mtime": 1773238937863.8408,
|
|
703
|
-
"size": 4071,
|
|
704
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
705
|
-
},
|
|
706
|
-
"docs/guide/incremental-analysis.md": {
|
|
707
|
-
"path": "docs/guide/incremental-analysis.md",
|
|
708
|
-
"hash": "d4293f8de2ca740e2736c282f8b1514b",
|
|
709
|
-
"mtime": 1773247186818.0437,
|
|
710
|
-
"size": 3138,
|
|
711
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
712
|
-
},
|
|
713
|
-
"docs/guide/installation.md": {
|
|
714
|
-
"path": "docs/guide/installation.md",
|
|
715
|
-
"hash": "7926dceb824c696ff79bc357aee27580",
|
|
716
|
-
"mtime": 1773076224028.002,
|
|
717
|
-
"size": 1276,
|
|
718
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
719
|
-
},
|
|
720
|
-
"docs/guide/knowledge-graph.md": {
|
|
721
|
-
"path": "docs/guide/knowledge-graph.md",
|
|
722
|
-
"hash": "3c00be517112f0fb1e865cedd2ec5a81",
|
|
723
|
-
"mtime": 1773244190994.9873,
|
|
724
|
-
"size": 3408,
|
|
725
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
726
|
-
},
|
|
727
|
-
"docs/guide/lazy-indexing.md": {
|
|
728
|
-
"path": "docs/guide/lazy-indexing.md",
|
|
729
|
-
"hash": "29c43fc104003e8819e731e45f7c640d",
|
|
730
|
-
"mtime": 1773258407656.5571,
|
|
731
|
-
"size": 3491,
|
|
732
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
733
|
-
},
|
|
734
|
-
"docs/guide/performance.md": {
|
|
735
|
-
"path": "docs/guide/performance.md",
|
|
736
|
-
"hash": "a2a5434f93591785a72e202ff700467f",
|
|
737
|
-
"mtime": 1773181094035.3489,
|
|
738
|
-
"size": 2783,
|
|
739
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
740
|
-
},
|
|
741
|
-
"docs/guide/quick-start.md": {
|
|
742
|
-
"path": "docs/guide/quick-start.md",
|
|
743
|
-
"hash": "dfa4c6196895c98b84845c138182dae6",
|
|
744
|
-
"mtime": 1773076244371.249,
|
|
745
|
-
"size": 1732,
|
|
746
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
747
|
-
},
|
|
748
|
-
"docs/index.md": {
|
|
749
|
-
"path": "docs/index.md",
|
|
750
|
-
"hash": "9032437ec565b4935df406022143d2ae",
|
|
751
|
-
"mtime": 1773089168385.8672,
|
|
752
|
-
"size": 3163,
|
|
753
|
-
"indexedAt": "2026-03-18T19:21:24.570Z"
|
|
754
|
-
},
|
|
755
|
-
"docs/reference/commands.md": {
|
|
756
|
-
"path": "docs/reference/commands.md",
|
|
757
|
-
"hash": "f9b509d9a44a4a8ffebc433d4adb07c5",
|
|
758
|
-
"mtime": 1773095909341.2031,
|
|
759
|
-
"size": 3817,
|
|
760
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
761
|
-
},
|
|
762
|
-
"examples/01-express-api.md": {
|
|
763
|
-
"path": "examples/01-express-api.md",
|
|
764
|
-
"hash": "54af0d58910939c041d98437a73cf231",
|
|
765
|
-
"mtime": 1773014837445.3228,
|
|
766
|
-
"size": 2665,
|
|
767
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
768
|
-
},
|
|
769
|
-
"examples/02-react-app.md": {
|
|
770
|
-
"path": "examples/02-react-app.md",
|
|
771
|
-
"hash": "2f1948bf3765228b37697f9f48d37b79",
|
|
772
|
-
"mtime": 1773014866555.722,
|
|
773
|
-
"size": 2702,
|
|
774
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
775
|
-
},
|
|
776
|
-
"examples/03-python-django.md": {
|
|
777
|
-
"path": "examples/03-python-django.md",
|
|
778
|
-
"hash": "fccd23e390a3d29d7d0d5d34a14d8cf3",
|
|
779
|
-
"mtime": 1773014902647.2178,
|
|
780
|
-
"size": 2947,
|
|
781
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
782
|
-
},
|
|
783
|
-
"examples/README.md": {
|
|
784
|
-
"path": "examples/README.md",
|
|
785
|
-
"hash": "4e8a85046bacda16352b5dff84e3ffe4",
|
|
786
|
-
"mtime": 1773014931866.6204,
|
|
787
|
-
"size": 1660,
|
|
788
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
789
|
-
},
|
|
790
|
-
"package-lock.json": {
|
|
791
|
-
"path": "package-lock.json",
|
|
792
|
-
"hash": "52220838924486c8aa10ed329be1adf5",
|
|
793
|
-
"mtime": 1773083490249.47,
|
|
794
|
-
"size": 126683,
|
|
795
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
796
|
-
},
|
|
797
|
-
"package.json": {
|
|
798
|
-
"path": "package.json",
|
|
799
|
-
"hash": "df5d8aec6d7b3e2829995654a76aaf80",
|
|
800
|
-
"mtime": 1773797139334.4119,
|
|
801
|
-
"size": 1538,
|
|
802
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
803
|
-
},
|
|
804
|
-
"src/analyzers/aiRules.ts": {
|
|
805
|
-
"path": "src/analyzers/aiRules.ts",
|
|
806
|
-
"hash": "3213f98ebd24246dd24b2c39f696bd14",
|
|
807
|
-
"mtime": 1773009335276.8303,
|
|
808
|
-
"size": 4961,
|
|
809
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
810
|
-
},
|
|
811
|
-
"src/analyzers/androidResources.ts": {
|
|
812
|
-
"path": "src/analyzers/androidResources.ts",
|
|
813
|
-
"hash": "d260211a62c187920db680c232367505",
|
|
814
|
-
"mtime": 1773153784923.4502,
|
|
815
|
-
"size": 3203,
|
|
816
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
817
|
-
},
|
|
818
|
-
"src/analyzers/architecture.ts": {
|
|
819
|
-
"path": "src/analyzers/architecture.ts",
|
|
820
|
-
"hash": "263e2e84afa0800cd4e95820f7d5aacb",
|
|
821
|
-
"mtime": 1773007837808.1536,
|
|
822
|
-
"size": 9551,
|
|
823
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
824
|
-
},
|
|
825
|
-
"src/analyzers/conventions.ts": {
|
|
826
|
-
"path": "src/analyzers/conventions.ts",
|
|
827
|
-
"hash": "887a991db6e0b9d658046b81cbe719b6",
|
|
828
|
-
"mtime": 1773008352611.8462,
|
|
829
|
-
"size": 7412,
|
|
830
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
831
|
-
},
|
|
832
|
-
"src/analyzers/dependencies.ts": {
|
|
833
|
-
"path": "src/analyzers/dependencies.ts",
|
|
834
|
-
"hash": "b0a73ac0cfe33821632a918e2529fdad",
|
|
835
|
-
"mtime": 1773790761658.4297,
|
|
836
|
-
"size": 9118,
|
|
837
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
838
|
-
},
|
|
839
|
-
"src/analyzers/entrypoints.ts": {
|
|
840
|
-
"path": "src/analyzers/entrypoints.ts",
|
|
841
|
-
"hash": "c4a26db8302561ab46319ed6ba9019be",
|
|
842
|
-
"mtime": 1773153667235.145,
|
|
843
|
-
"size": 6659,
|
|
844
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
845
|
-
},
|
|
846
|
-
"src/analyzers/gradleModules.ts": {
|
|
847
|
-
"path": "src/analyzers/gradleModules.ts",
|
|
848
|
-
"hash": "fd4d77c29f554bf967e2ce4a05574497",
|
|
849
|
-
"mtime": 1773153804000.0356,
|
|
850
|
-
"size": 2761,
|
|
851
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
852
|
-
},
|
|
853
|
-
"src/analyzers/symbols.ts": {
|
|
854
|
-
"path": "src/analyzers/symbols.ts",
|
|
855
|
-
"hash": "7c6b281a55356c2528e3e13f88c41b57",
|
|
856
|
-
"mtime": 1773956636103.064,
|
|
857
|
-
"size": 16799,
|
|
858
|
-
"indexedAt": "2026-03-19T21:47:18.435Z"
|
|
859
|
-
},
|
|
860
|
-
"src/analyzers/techStack.ts": {
|
|
861
|
-
"path": "src/analyzers/techStack.ts",
|
|
862
|
-
"hash": "64ef322c5475e2b0ef1d95eab41b6b4c",
|
|
863
|
-
"mtime": 1773153400053.8142,
|
|
864
|
-
"size": 13336,
|
|
865
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
866
|
-
},
|
|
867
|
-
"src/commands/ai-first.ts": {
|
|
868
|
-
"path": "src/commands/ai-first.ts",
|
|
869
|
-
"hash": "7bfaa8a8bf6662f305f34b0608114b1d",
|
|
870
|
-
"mtime": 1773793521992.9373,
|
|
871
|
-
"size": 51429,
|
|
872
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
873
|
-
},
|
|
874
|
-
"src/commands/doctor.ts": {
|
|
875
|
-
"path": "src/commands/doctor.ts",
|
|
876
|
-
"hash": "bf877242c2777a92c2c13c6f20952d63",
|
|
877
|
-
"mtime": 1773072336100.912,
|
|
878
|
-
"size": 3599,
|
|
879
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
880
|
-
},
|
|
881
|
-
"src/commands/explore.ts": {
|
|
882
|
-
"path": "src/commands/explore.ts",
|
|
883
|
-
"hash": "684e64267e90e13ff9ae7a7a87deaa5d",
|
|
884
|
-
"mtime": 1773071610359.5925,
|
|
885
|
-
"size": 2787,
|
|
886
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
887
|
-
},
|
|
888
|
-
"src/core/adapters/adapterRegistry.ts": {
|
|
889
|
-
"path": "src/core/adapters/adapterRegistry.ts",
|
|
890
|
-
"hash": "9c82d3399bf134c40c4d0d8239252813",
|
|
891
|
-
"mtime": 1773194865986.006,
|
|
892
|
-
"size": 4746,
|
|
893
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
894
|
-
},
|
|
895
|
-
"src/core/adapters/baseAdapter.ts": {
|
|
896
|
-
"path": "src/core/adapters/baseAdapter.ts",
|
|
897
|
-
"hash": "5f64bb1c62d32109898a576b1a11fc84",
|
|
898
|
-
"mtime": 1773183006248.3667,
|
|
899
|
-
"size": 2706,
|
|
900
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
901
|
-
},
|
|
902
|
-
"src/core/adapters/community/fastapiAdapter.ts": {
|
|
903
|
-
"path": "src/core/adapters/community/fastapiAdapter.ts",
|
|
904
|
-
"hash": "1d6e19ee052f97e3edeaf100199a4f6e",
|
|
905
|
-
"mtime": 1773195157323.2893,
|
|
906
|
-
"size": 1227,
|
|
907
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
908
|
-
},
|
|
909
|
-
"src/core/adapters/community/index.ts": {
|
|
910
|
-
"path": "src/core/adapters/community/index.ts",
|
|
911
|
-
"hash": "869811b9969b694a69da22a0acf65062",
|
|
912
|
-
"mtime": 1773185647607.2932,
|
|
913
|
-
"size": 366,
|
|
914
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
915
|
-
},
|
|
916
|
-
"src/core/adapters/community/laravelAdapter.ts": {
|
|
917
|
-
"path": "src/core/adapters/community/laravelAdapter.ts",
|
|
918
|
-
"hash": "783b2d3973cb186133b0291cecf5bea4",
|
|
919
|
-
"mtime": 1773185437305.221,
|
|
920
|
-
"size": 1501,
|
|
921
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
922
|
-
},
|
|
923
|
-
"src/core/adapters/community/nestjsAdapter.ts": {
|
|
924
|
-
"path": "src/core/adapters/community/nestjsAdapter.ts",
|
|
925
|
-
"hash": "1497421c1608545d575172567db22956",
|
|
926
|
-
"mtime": 1773185475791.7996,
|
|
927
|
-
"size": 1519,
|
|
928
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
929
|
-
},
|
|
930
|
-
"src/core/adapters/community/phoenixAdapter.ts": {
|
|
931
|
-
"path": "src/core/adapters/community/phoenixAdapter.ts",
|
|
932
|
-
"hash": "06f5634a4d352223e4cd8f5ea795a7e4",
|
|
933
|
-
"mtime": 1773185580466.3152,
|
|
934
|
-
"size": 1331,
|
|
935
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
936
|
-
},
|
|
937
|
-
"src/core/adapters/community/springBootAdapter.ts": {
|
|
938
|
-
"path": "src/core/adapters/community/springBootAdapter.ts",
|
|
939
|
-
"hash": "a4da44ea1657a242cfe06e2c80263c3b",
|
|
940
|
-
"mtime": 1773185539438.7197,
|
|
941
|
-
"size": 1502,
|
|
942
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
943
|
-
},
|
|
944
|
-
"src/core/adapters/dotnetAdapter.ts": {
|
|
945
|
-
"path": "src/core/adapters/dotnetAdapter.ts",
|
|
946
|
-
"hash": "cb85de66279ec84e49b78e202ad53172",
|
|
947
|
-
"mtime": 1773183211018.439,
|
|
948
|
-
"size": 3432,
|
|
949
|
-
"indexedAt": "2026-03-18T19:21:24.571Z"
|
|
950
|
-
},
|
|
951
|
-
"src/core/adapters/index.ts": {
|
|
952
|
-
"path": "src/core/adapters/index.ts",
|
|
953
|
-
"hash": "52fbc30e12817507e27c51584e710041",
|
|
954
|
-
"mtime": 1773194224100.791,
|
|
955
|
-
"size": 1096,
|
|
956
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
957
|
-
},
|
|
958
|
-
"src/core/adapters/javascriptAdapter.ts": {
|
|
959
|
-
"path": "src/core/adapters/javascriptAdapter.ts",
|
|
960
|
-
"hash": "4344fc5d7dfa44800a3c27d04bf5b23d",
|
|
961
|
-
"mtime": 1773183042396.908,
|
|
962
|
-
"size": 2152,
|
|
963
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
964
|
-
},
|
|
965
|
-
"src/core/adapters/pythonAdapter.ts": {
|
|
966
|
-
"path": "src/core/adapters/pythonAdapter.ts",
|
|
967
|
-
"hash": "01bf12d95ab7ebf0819b1bbc97bd0223",
|
|
968
|
-
"mtime": 1773183091831.6492,
|
|
969
|
-
"size": 4108,
|
|
970
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
971
|
-
},
|
|
972
|
-
"src/core/adapters/railsAdapter.ts": {
|
|
973
|
-
"path": "src/core/adapters/railsAdapter.ts",
|
|
974
|
-
"hash": "ce0622664c7614cd86fe33a6ed5cf9ec",
|
|
975
|
-
"mtime": 1773183128570.2004,
|
|
976
|
-
"size": 1983,
|
|
977
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
978
|
-
},
|
|
979
|
-
"src/core/adapters/salesforceAdapter.ts": {
|
|
980
|
-
"path": "src/core/adapters/salesforceAdapter.ts",
|
|
981
|
-
"hash": "9080869edee1b246baf94caf66732cf1",
|
|
982
|
-
"mtime": 1773183167520.7852,
|
|
983
|
-
"size": 2375,
|
|
984
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
985
|
-
},
|
|
986
|
-
"src/core/adapters/sdk.ts": {
|
|
987
|
-
"path": "src/core/adapters/sdk.ts",
|
|
988
|
-
"hash": "cfe5d3b363b701aae09b29250274d495",
|
|
989
|
-
"mtime": 1773185372752.242,
|
|
990
|
-
"size": 4947,
|
|
991
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
992
|
-
},
|
|
993
|
-
"src/core/aiContextGenerator.ts": {
|
|
994
|
-
"path": "src/core/aiContextGenerator.ts",
|
|
995
|
-
"hash": "c520cef1f061e0f8517734b30957b947",
|
|
996
|
-
"mtime": 1773013859071.9048,
|
|
997
|
-
"size": 30018,
|
|
998
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
999
|
-
},
|
|
1000
|
-
"src/core/ccp.ts": {
|
|
1001
|
-
"path": "src/core/ccp.ts",
|
|
1002
|
-
"hash": "cdab3bf243f95155d0a15e26b6582afb",
|
|
1003
|
-
"mtime": 1773157731340.6924,
|
|
1004
|
-
"size": 6267,
|
|
1005
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1006
|
-
},
|
|
1007
|
-
"src/core/chunker.ts": {
|
|
1008
|
-
"path": "src/core/chunker.ts",
|
|
1009
|
-
"hash": "7f53952952c9d801672a5a6ad729e7d5",
|
|
1010
|
-
"mtime": 1773073665099.1428,
|
|
1011
|
-
"size": 9678,
|
|
1012
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1013
|
-
},
|
|
1014
|
-
"src/core/contextGenerator.ts": {
|
|
1015
|
-
"path": "src/core/contextGenerator.ts",
|
|
1016
|
-
"hash": "0e3c3077c006ce8092c64f0232f750c0",
|
|
1017
|
-
"mtime": 1773006174980.9766,
|
|
1018
|
-
"size": 8351,
|
|
1019
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1020
|
-
},
|
|
1021
|
-
"src/core/contextPacket.ts": {
|
|
1022
|
-
"path": "src/core/contextPacket.ts",
|
|
1023
|
-
"hash": "0febc90214d77fc907e412222f94e6c1",
|
|
1024
|
-
"mtime": 1773095515712.9194,
|
|
1025
|
-
"size": 13322,
|
|
1026
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1027
|
-
},
|
|
1028
|
-
"src/core/embeddings.ts": {
|
|
1029
|
-
"path": "src/core/embeddings.ts",
|
|
1030
|
-
"hash": "ce1769d7adec0510a295672f69a8ba41",
|
|
1031
|
-
"mtime": 1773073766382.3613,
|
|
1032
|
-
"size": 4541,
|
|
1033
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1034
|
-
},
|
|
1035
|
-
"src/core/gitAnalyzer.ts": {
|
|
1036
|
-
"path": "src/core/gitAnalyzer.ts",
|
|
1037
|
-
"hash": "cc017c698e64892c23a1761440d9dbd7",
|
|
1038
|
-
"mtime": 1773237342075.0762,
|
|
1039
|
-
"size": 10336,
|
|
1040
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1041
|
-
},
|
|
1042
|
-
"src/core/hierarchyGenerator.ts": {
|
|
1043
|
-
"path": "src/core/hierarchyGenerator.ts",
|
|
1044
|
-
"hash": "c83b44b554d5aab8759f6a4807985a24",
|
|
1045
|
-
"mtime": 1773016072837.5437,
|
|
1046
|
-
"size": 10914,
|
|
1047
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1048
|
-
},
|
|
1049
|
-
"src/core/incrementalAnalyzer.ts": {
|
|
1050
|
-
"path": "src/core/incrementalAnalyzer.ts",
|
|
1051
|
-
"hash": "7057f4102daa2b59a53f62776a56b9e1",
|
|
1052
|
-
"mtime": 1773246228077.465,
|
|
1053
|
-
"size": 12487,
|
|
1054
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1055
|
-
},
|
|
1056
|
-
"src/core/indexState.ts": {
|
|
1057
|
-
"path": "src/core/indexState.ts",
|
|
1058
|
-
"hash": "412559800f738abb82e28c9eb71f8a6c",
|
|
1059
|
-
"mtime": 1773073382179.3071,
|
|
1060
|
-
"size": 4850,
|
|
1061
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1062
|
-
},
|
|
1063
|
-
"src/core/indexer.ts": {
|
|
1064
|
-
"path": "src/core/indexer.ts",
|
|
1065
|
-
"hash": "6e5b002d8661cf176d236b2e362db46c",
|
|
1066
|
-
"mtime": 1773012050361.3564,
|
|
1067
|
-
"size": 25617,
|
|
1068
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1069
|
-
},
|
|
1070
|
-
"src/core/knowledgeGraphBuilder.ts": {
|
|
1071
|
-
"path": "src/core/knowledgeGraphBuilder.ts",
|
|
1072
|
-
"hash": "274e5831b4e8be00cec10f2668b90735",
|
|
1073
|
-
"mtime": 1773242876540.4153,
|
|
1074
|
-
"size": 7833,
|
|
1075
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1076
|
-
},
|
|
1077
|
-
"src/core/lazyAnalyzer.ts": {
|
|
1078
|
-
"path": "src/core/lazyAnalyzer.ts",
|
|
1079
|
-
"hash": "b28a51c974b1f4ea7eb98acd5ba6fddd",
|
|
1080
|
-
"mtime": 1773257763051.4905,
|
|
1081
|
-
"size": 8092,
|
|
1082
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1083
|
-
},
|
|
1084
|
-
"src/core/moduleGraph.ts": {
|
|
1085
|
-
"path": "src/core/moduleGraph.ts",
|
|
1086
|
-
"hash": "0bf6db06febcf2f929d92fdf569d753b",
|
|
1087
|
-
"mtime": 1773071610359.6934,
|
|
1088
|
-
"size": 5256,
|
|
1089
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1090
|
-
},
|
|
1091
|
-
"src/core/repoMapper.ts": {
|
|
1092
|
-
"path": "src/core/repoMapper.ts",
|
|
1093
|
-
"hash": "2b5a86b04f99bcbfaa6b29291857a0d4",
|
|
1094
|
-
"mtime": 1773005052293.012,
|
|
1095
|
-
"size": 4464,
|
|
1096
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1097
|
-
},
|
|
1098
|
-
"src/core/repoScanner.ts": {
|
|
1099
|
-
"path": "src/core/repoScanner.ts",
|
|
1100
|
-
"hash": "78c4baf429b8365b779d779faec6c6f2",
|
|
1101
|
-
"mtime": 1773004069943.8745,
|
|
1102
|
-
"size": 2351,
|
|
1103
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1104
|
-
},
|
|
1105
|
-
"src/core/schema.ts": {
|
|
1106
|
-
"path": "src/core/schema.ts",
|
|
1107
|
-
"hash": "e6f173aea750cf98e4ef363846edd2b2",
|
|
1108
|
-
"mtime": 1773249080973.0469,
|
|
1109
|
-
"size": 5195,
|
|
1110
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1111
|
-
},
|
|
1112
|
-
"src/core/semanticContexts.ts": {
|
|
1113
|
-
"path": "src/core/semanticContexts.ts",
|
|
1114
|
-
"hash": "8c335cda53cbdecd1190a15d30910c17",
|
|
1115
|
-
"mtime": 1773854929727.958,
|
|
1116
|
-
"size": 17361,
|
|
1117
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1118
|
-
},
|
|
1119
|
-
"src/core/symbolGraph.ts": {
|
|
1120
|
-
"path": "src/core/symbolGraph.ts",
|
|
1121
|
-
"hash": "32cf884e7fd3e92bd87c94d0610a2654",
|
|
1122
|
-
"mtime": 1773854929728.3672,
|
|
1123
|
-
"size": 17845,
|
|
1124
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1125
|
-
},
|
|
1126
|
-
"src/index.ts": {
|
|
1127
|
-
"path": "src/index.ts",
|
|
1128
|
-
"hash": "f79ef17442d3a4a7a0288a646e2b21b0",
|
|
1129
|
-
"mtime": 1773069735666.7573,
|
|
1130
|
-
"size": 556,
|
|
1131
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1132
|
-
},
|
|
1133
|
-
"src/types/sql.js.d.ts": {
|
|
1134
|
-
"path": "src/types/sql.js.d.ts",
|
|
1135
|
-
"hash": "5b68823eaec8a56784c956075d1954ce",
|
|
1136
|
-
"mtime": 1773010637558.1929,
|
|
1137
|
-
"size": 515,
|
|
1138
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1139
|
-
},
|
|
1140
|
-
"src/utils/fileUtils.ts": {
|
|
1141
|
-
"path": "src/utils/fileUtils.ts",
|
|
1142
|
-
"hash": "f1b6c884e3f78c088b276ff82a7ad09e",
|
|
1143
|
-
"mtime": 1773778112059.0947,
|
|
1144
|
-
"size": 2746,
|
|
1145
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1146
|
-
},
|
|
1147
|
-
"test-projects/django-app/README.md": {
|
|
1148
|
-
"path": "test-projects/django-app/README.md",
|
|
1149
|
-
"hash": "2b099275e8f719d2a008071b600752a7",
|
|
1150
|
-
"mtime": 1773847503082.22,
|
|
1151
|
-
"size": 2592,
|
|
1152
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1153
|
-
},
|
|
1154
|
-
"test-projects/django-app/ai/ai_context.md": {
|
|
1155
|
-
"path": "test-projects/django-app/ai/ai_context.md",
|
|
1156
|
-
"hash": "4926e5dd61c81d03cee052db56664235",
|
|
1157
|
-
"mtime": 1773847524423.5146,
|
|
1158
|
-
"size": 1525,
|
|
1159
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1160
|
-
},
|
|
1161
|
-
"test-projects/django-app/ai/ai_rules.md": {
|
|
1162
|
-
"path": "test-projects/django-app/ai/ai_rules.md",
|
|
1163
|
-
"hash": "b7db08ce64e7b0afd2e515992bc0a561",
|
|
1164
|
-
"mtime": 1773847524422.5146,
|
|
1165
|
-
"size": 787,
|
|
1166
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1167
|
-
},
|
|
1168
|
-
"test-projects/django-app/ai/architecture.md": {
|
|
1169
|
-
"path": "test-projects/django-app/ai/architecture.md",
|
|
1170
|
-
"hash": "fa4d5fbe8c4e29ebc725a92b12d88b04",
|
|
1171
|
-
"mtime": 1773847524416.5146,
|
|
1172
|
-
"size": 922,
|
|
1173
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1174
|
-
},
|
|
1175
|
-
"test-projects/django-app/ai/cache.json": {
|
|
1176
|
-
"path": "test-projects/django-app/ai/cache.json",
|
|
1177
|
-
"hash": "29106f930a901a1723c2c25d22e43f31",
|
|
1178
|
-
"mtime": 1773847532764.63,
|
|
1179
|
-
"size": 4384,
|
|
1180
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1181
|
-
},
|
|
1182
|
-
"test-projects/django-app/ai/context/flows/views.json": {
|
|
1183
|
-
"path": "test-projects/django-app/ai/context/flows/views.json",
|
|
1184
|
-
"hash": "a914f6473aa639c9261d9491913a5440",
|
|
1185
|
-
"mtime": 1773847532766.63,
|
|
1186
|
-
"size": 144,
|
|
1187
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1188
|
-
},
|
|
1189
|
-
"test-projects/django-app/ai/conventions.md": {
|
|
1190
|
-
"path": "test-projects/django-app/ai/conventions.md",
|
|
1191
|
-
"hash": "d11ac646a8916e3c6cc376f610368317",
|
|
1192
|
-
"mtime": 1773847524419.5146,
|
|
1193
|
-
"size": 813,
|
|
1194
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1195
|
-
},
|
|
1196
|
-
"test-projects/django-app/ai/dependencies.json": {
|
|
1197
|
-
"path": "test-projects/django-app/ai/dependencies.json",
|
|
1198
|
-
"hash": "ef1c6db344eea60efd35525d7edfbdc5",
|
|
1199
|
-
"mtime": 1773847524421.5146,
|
|
1200
|
-
"size": 6782,
|
|
1201
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1202
|
-
},
|
|
1203
|
-
"test-projects/django-app/ai/entrypoints.md": {
|
|
1204
|
-
"path": "test-projects/django-app/ai/entrypoints.md",
|
|
1205
|
-
"hash": "34c8965a66697d9f1d428bb0904f5d8d",
|
|
1206
|
-
"mtime": 1773847524418.5146,
|
|
1207
|
-
"size": 43,
|
|
1208
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1209
|
-
},
|
|
1210
|
-
"test-projects/django-app/ai/files.json": {
|
|
1211
|
-
"path": "test-projects/django-app/ai/files.json",
|
|
1212
|
-
"hash": "7b7f0e91d52466a3bfc61934f7318773",
|
|
1213
|
-
"mtime": 1773854929728.3672,
|
|
1214
|
-
"size": 3845,
|
|
1215
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1216
|
-
},
|
|
1217
|
-
"test-projects/django-app/ai/graph/module-graph.json": {
|
|
1218
|
-
"path": "test-projects/django-app/ai/graph/module-graph.json",
|
|
1219
|
-
"hash": "b226564aa5093d79889b9d70969a7018",
|
|
1220
|
-
"mtime": 1773847532754.6296,
|
|
1221
|
-
"size": 2547,
|
|
1222
|
-
"indexedAt": "2026-03-18T19:21:24.572Z"
|
|
1223
|
-
},
|
|
1224
|
-
"test-projects/django-app/ai/graph/symbol-graph.json": {
|
|
1225
|
-
"path": "test-projects/django-app/ai/graph/symbol-graph.json",
|
|
1226
|
-
"hash": "b1bd34e7d1007ce43b7fe133c1c2ba93",
|
|
1227
|
-
"mtime": 1773847532762.63,
|
|
1228
|
-
"size": 37423,
|
|
1229
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1230
|
-
},
|
|
1231
|
-
"test-projects/django-app/ai/graph/symbol-references.json": {
|
|
1232
|
-
"path": "test-projects/django-app/ai/graph/symbol-references.json",
|
|
1233
|
-
"hash": "99914b932bd37a50b983c5e7c90ae93b",
|
|
1234
|
-
"mtime": 1773847532762.63,
|
|
1235
|
-
"size": 2,
|
|
1236
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1237
|
-
},
|
|
1238
|
-
"test-projects/django-app/ai/index-state.json": {
|
|
1239
|
-
"path": "test-projects/django-app/ai/index-state.json",
|
|
1240
|
-
"hash": "bfc0668aa599dec27819bd72c7bfe674",
|
|
1241
|
-
"mtime": 1773854929728.3672,
|
|
1242
|
-
"size": 8827,
|
|
1243
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1244
|
-
},
|
|
1245
|
-
"test-projects/django-app/ai/modules.json": {
|
|
1246
|
-
"path": "test-projects/django-app/ai/modules.json",
|
|
1247
|
-
"hash": "cba831f3ad2e9f04973d35fad2f07b55",
|
|
1248
|
-
"mtime": 1773854831967.291,
|
|
1249
|
-
"size": 688,
|
|
1250
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1251
|
-
},
|
|
1252
|
-
"test-projects/django-app/ai/project.json": {
|
|
1253
|
-
"path": "test-projects/django-app/ai/project.json",
|
|
1254
|
-
"hash": "446f506ec7e9c0573dfc4a245b7c7084",
|
|
1255
|
-
"mtime": 1773847524425.5146,
|
|
1256
|
-
"size": 199,
|
|
1257
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1258
|
-
},
|
|
1259
|
-
"test-projects/django-app/ai/repo-map.json": {
|
|
1260
|
-
"path": "test-projects/django-app/ai/repo-map.json",
|
|
1261
|
-
"hash": "22e7d221904a4f61d95484fab517e546",
|
|
1262
|
-
"mtime": 1773847532746.6296,
|
|
1263
|
-
"size": 7092,
|
|
1264
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1265
|
-
},
|
|
1266
|
-
"test-projects/django-app/ai/repo_map.json": {
|
|
1267
|
-
"path": "test-projects/django-app/ai/repo_map.json",
|
|
1268
|
-
"hash": "9940eb9df7de6de79da4220bc1c3ca2b",
|
|
1269
|
-
"mtime": 1773847524415.5146,
|
|
1270
|
-
"size": 3653,
|
|
1271
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1272
|
-
},
|
|
1273
|
-
"test-projects/django-app/ai/repo_map.md": {
|
|
1274
|
-
"path": "test-projects/django-app/ai/repo_map.md",
|
|
1275
|
-
"hash": "9e1e333f34d5b4166d3fca576c2c77b9",
|
|
1276
|
-
"mtime": 1773847524415.5146,
|
|
1277
|
-
"size": 891,
|
|
1278
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1279
|
-
},
|
|
1280
|
-
"test-projects/django-app/ai/schema.json": {
|
|
1281
|
-
"path": "test-projects/django-app/ai/schema.json",
|
|
1282
|
-
"hash": "9aef49ca496598670fa99edc138df4a4",
|
|
1283
|
-
"mtime": 1773847524425.5146,
|
|
1284
|
-
"size": 102,
|
|
1285
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1286
|
-
},
|
|
1287
|
-
"test-projects/django-app/ai/summary.md": {
|
|
1288
|
-
"path": "test-projects/django-app/ai/summary.md",
|
|
1289
|
-
"hash": "21d8172f53214fcb4765fdbfc60783ca",
|
|
1290
|
-
"mtime": 1773847524415.5146,
|
|
1291
|
-
"size": 189,
|
|
1292
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1293
|
-
},
|
|
1294
|
-
"test-projects/django-app/ai/symbols.json": {
|
|
1295
|
-
"path": "test-projects/django-app/ai/symbols.json",
|
|
1296
|
-
"hash": "a5f3112d44cfa4dc256b75bda253df0e",
|
|
1297
|
-
"mtime": 1773847524420.5146,
|
|
1298
|
-
"size": 61296,
|
|
1299
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1300
|
-
},
|
|
1301
|
-
"test-projects/django-app/ai/tech_stack.md": {
|
|
1302
|
-
"path": "test-projects/django-app/ai/tech_stack.md",
|
|
1303
|
-
"hash": "f5d7720e17390f42b9f81c4b3c0d1bdf",
|
|
1304
|
-
"mtime": 1773847524418.5146,
|
|
1305
|
-
"size": 342,
|
|
1306
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1307
|
-
},
|
|
1308
|
-
"test-projects/django-app/ai/tools.json": {
|
|
1309
|
-
"path": "test-projects/django-app/ai/tools.json",
|
|
1310
|
-
"hash": "b1356e52c74e9b3b6a0d397b790a4968",
|
|
1311
|
-
"mtime": 1773847524425.5146,
|
|
1312
|
-
"size": 138,
|
|
1313
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1314
|
-
},
|
|
1315
|
-
"test-projects/django-app/blog/__init__.py": {
|
|
1316
|
-
"path": "test-projects/django-app/blog/__init__.py",
|
|
1317
|
-
"hash": "d41d8cd98f00b204e9800998ecf8427e",
|
|
1318
|
-
"mtime": 1773847262320.9067,
|
|
1319
|
-
"size": 0,
|
|
1320
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1321
|
-
},
|
|
1322
|
-
"test-projects/django-app/blog/admin.py": {
|
|
1323
|
-
"path": "test-projects/django-app/blog/admin.py",
|
|
1324
|
-
"hash": "ef8b15c55e00e9ef835b4cc1a3ae8307",
|
|
1325
|
-
"mtime": 1773847452965.5286,
|
|
1326
|
-
"size": 851,
|
|
1327
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1328
|
-
},
|
|
1329
|
-
"test-projects/django-app/blog/models.py": {
|
|
1330
|
-
"path": "test-projects/django-app/blog/models.py",
|
|
1331
|
-
"hash": "11cf32800211bc954798a3775a0c1429",
|
|
1332
|
-
"mtime": 1773847281082.164,
|
|
1333
|
-
"size": 1551,
|
|
1334
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1335
|
-
},
|
|
1336
|
-
"test-projects/django-app/blog/serializers.py": {
|
|
1337
|
-
"path": "test-projects/django-app/blog/serializers.py",
|
|
1338
|
-
"hash": "efb817010fdd412250c980c9d7b738a2",
|
|
1339
|
-
"mtime": 1773847304708.4883,
|
|
1340
|
-
"size": 2094,
|
|
1341
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1342
|
-
},
|
|
1343
|
-
"test-projects/django-app/blog/urls.py": {
|
|
1344
|
-
"path": "test-projects/django-app/blog/urls.py",
|
|
1345
|
-
"hash": "235d6b0d52e581825c76a37dba5d46f4",
|
|
1346
|
-
"mtime": 1773847343339.019,
|
|
1347
|
-
"size": 407,
|
|
1348
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1349
|
-
},
|
|
1350
|
-
"test-projects/django-app/blog/views.py": {
|
|
1351
|
-
"path": "test-projects/django-app/blog/views.py",
|
|
1352
|
-
"hash": "b51bcfc62e8a9cc4e36d6e04d0d66ac2",
|
|
1353
|
-
"mtime": 1773847331379.8545,
|
|
1354
|
-
"size": 3123,
|
|
1355
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1356
|
-
},
|
|
1357
|
-
"test-projects/django-app/django_app/__init__.py": {
|
|
1358
|
-
"path": "test-projects/django-app/django_app/__init__.py",
|
|
1359
|
-
"hash": "d41d8cd98f00b204e9800998ecf8427e",
|
|
1360
|
-
"mtime": 1773847262320.9067,
|
|
1361
|
-
"size": 0,
|
|
1362
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1363
|
-
},
|
|
1364
|
-
"test-projects/django-app/django_app/settings.py": {
|
|
1365
|
-
"path": "test-projects/django-app/django_app/settings.py",
|
|
1366
|
-
"hash": "ec0ff12dd114d0f70b04dee4e6753ded",
|
|
1367
|
-
"mtime": 1773847230399.4692,
|
|
1368
|
-
"size": 2283,
|
|
1369
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1370
|
-
},
|
|
1371
|
-
"test-projects/django-app/django_app/urls.py": {
|
|
1372
|
-
"path": "test-projects/django-app/django_app/urls.py",
|
|
1373
|
-
"hash": "646e11e6cbfc20b5a1c457bd04058b6f",
|
|
1374
|
-
"mtime": 1773847241419.62,
|
|
1375
|
-
"size": 311,
|
|
1376
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1377
|
-
},
|
|
1378
|
-
"test-projects/django-app/django_app/wsgi.py": {
|
|
1379
|
-
"path": "test-projects/django-app/django_app/wsgi.py",
|
|
1380
|
-
"hash": "8997e7b6236b6d5cc5ab76625293b138",
|
|
1381
|
-
"mtime": 1773847252217.768,
|
|
1382
|
-
"size": 214,
|
|
1383
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1384
|
-
},
|
|
1385
|
-
"test-projects/django-app/manage.py": {
|
|
1386
|
-
"path": "test-projects/django-app/manage.py",
|
|
1387
|
-
"hash": "557480f24dd7cddb10ad7fdcf39b6c79",
|
|
1388
|
-
"mtime": 1773847204930.1206,
|
|
1389
|
-
"size": 667,
|
|
1390
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1391
|
-
},
|
|
1392
|
-
"test-projects/django-app/users/__init__.py": {
|
|
1393
|
-
"path": "test-projects/django-app/users/__init__.py",
|
|
1394
|
-
"hash": "d41d8cd98f00b204e9800998ecf8427e",
|
|
1395
|
-
"mtime": 1773847262320.9067,
|
|
1396
|
-
"size": 0,
|
|
1397
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1398
|
-
},
|
|
1399
|
-
"test-projects/django-app/users/admin.py": {
|
|
1400
|
-
"path": "test-projects/django-app/users/admin.py",
|
|
1401
|
-
"hash": "3a42200ccb8543463198e6df6bbf3601",
|
|
1402
|
-
"mtime": 1773847468180.7383,
|
|
1403
|
-
"size": 1024,
|
|
1404
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1405
|
-
},
|
|
1406
|
-
"test-projects/django-app/users/models.py": {
|
|
1407
|
-
"path": "test-projects/django-app/users/models.py",
|
|
1408
|
-
"hash": "861e708ed26ccbcb76365faf6d540ac6",
|
|
1409
|
-
"mtime": 1773847363660.2983,
|
|
1410
|
-
"size": 1748,
|
|
1411
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1412
|
-
},
|
|
1413
|
-
"test-projects/django-app/users/serializers.py": {
|
|
1414
|
-
"path": "test-projects/django-app/users/serializers.py",
|
|
1415
|
-
"hash": "709f852da00f6f58d0b9cdb84bb7fe24",
|
|
1416
|
-
"mtime": 1773847389572.655,
|
|
1417
|
-
"size": 3196,
|
|
1418
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1419
|
-
},
|
|
1420
|
-
"test-projects/django-app/users/urls.py": {
|
|
1421
|
-
"path": "test-projects/django-app/users/urls.py",
|
|
1422
|
-
"hash": "c331ed123fa4e1121d48eead9befbb0d",
|
|
1423
|
-
"mtime": 1773847438434.3281,
|
|
1424
|
-
"size": 351,
|
|
1425
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1426
|
-
},
|
|
1427
|
-
"test-projects/django-app/users/views.py": {
|
|
1428
|
-
"path": "test-projects/django-app/users/views.py",
|
|
1429
|
-
"hash": "91fa1403cd82ec70898d487250d9673b",
|
|
1430
|
-
"mtime": 1773847426896.1692,
|
|
1431
|
-
"size": 4756,
|
|
1432
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1433
|
-
},
|
|
1434
|
-
"test-projects/express-api/ai/ai_context.md": {
|
|
1435
|
-
"path": "test-projects/express-api/ai/ai_context.md",
|
|
1436
|
-
"hash": "286f0083010c4a66f3906b020b9cc7b4",
|
|
1437
|
-
"mtime": 1773796492348.4023,
|
|
1438
|
-
"size": 2042,
|
|
1439
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1440
|
-
},
|
|
1441
|
-
"test-projects/express-api/ai/ai_rules.md": {
|
|
1442
|
-
"path": "test-projects/express-api/ai/ai_rules.md",
|
|
1443
|
-
"hash": "fa1a632e71f5b7055dee7d1368600ce0",
|
|
1444
|
-
"mtime": 1773796492348.4023,
|
|
1445
|
-
"size": 915,
|
|
1446
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1447
|
-
},
|
|
1448
|
-
"test-projects/express-api/ai/architecture.md": {
|
|
1449
|
-
"path": "test-projects/express-api/ai/architecture.md",
|
|
1450
|
-
"hash": "5e9f157447aac07a89cf6fe7bffcdad4",
|
|
1451
|
-
"mtime": 1773796492342.4023,
|
|
1452
|
-
"size": 1328,
|
|
1453
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1454
|
-
},
|
|
1455
|
-
"test-projects/express-api/ai/cache.json": {
|
|
1456
|
-
"path": "test-projects/express-api/ai/cache.json",
|
|
1457
|
-
"hash": "3c6e4d40d9a93aec0c33ac72d4fc4e85",
|
|
1458
|
-
"mtime": 1773854929729.0337,
|
|
1459
|
-
"size": 3670,
|
|
1460
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1461
|
-
},
|
|
1462
|
-
"test-projects/express-api/ai/context/features/controllers.json": {
|
|
1463
|
-
"path": "test-projects/express-api/ai/context/features/controllers.json",
|
|
1464
|
-
"hash": "65a9f94a405e51bd65bd7a5378dbb164",
|
|
1465
|
-
"mtime": 1773796517401.7932,
|
|
1466
|
-
"size": 262,
|
|
1467
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1468
|
-
},
|
|
1469
|
-
"test-projects/express-api/ai/context/features/services.json": {
|
|
1470
|
-
"path": "test-projects/express-api/ai/context/features/services.json",
|
|
1471
|
-
"hash": "113525da53ad952071cca194ba355d48",
|
|
1472
|
-
"mtime": 1773796517401.7932,
|
|
1473
|
-
"size": 232,
|
|
1474
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1475
|
-
},
|
|
1476
|
-
"test-projects/express-api/ai/context/flows/auth.json": {
|
|
1477
|
-
"path": "test-projects/express-api/ai/context/flows/auth.json",
|
|
1478
|
-
"hash": "a6200259a521a38e08dc6396d870a633",
|
|
1479
|
-
"mtime": 1773796517401.7932,
|
|
1480
|
-
"size": 201,
|
|
1481
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1482
|
-
},
|
|
1483
|
-
"test-projects/express-api/ai/context/flows/user.json": {
|
|
1484
|
-
"path": "test-projects/express-api/ai/context/flows/user.json",
|
|
1485
|
-
"hash": "af049ebfc3b8ce808e6091ac96a651ee",
|
|
1486
|
-
"mtime": 1773796517401.7932,
|
|
1487
|
-
"size": 233,
|
|
1488
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1489
|
-
},
|
|
1490
|
-
"test-projects/express-api/ai/conventions.md": {
|
|
1491
|
-
"path": "test-projects/express-api/ai/conventions.md",
|
|
1492
|
-
"hash": "fa8f117204dbd53d6b787e6ec1791dbf",
|
|
1493
|
-
"mtime": 1773796492344.4023,
|
|
1494
|
-
"size": 811,
|
|
1495
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1496
|
-
},
|
|
1497
|
-
"test-projects/express-api/ai/dependencies.json": {
|
|
1498
|
-
"path": "test-projects/express-api/ai/dependencies.json",
|
|
1499
|
-
"hash": "b59a369568a90136bf6d54a022aae411",
|
|
1500
|
-
"mtime": 1773796492346.4023,
|
|
1501
|
-
"size": 1193,
|
|
1502
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1503
|
-
},
|
|
1504
|
-
"test-projects/express-api/ai/entrypoints.md": {
|
|
1505
|
-
"path": "test-projects/express-api/ai/entrypoints.md",
|
|
1506
|
-
"hash": "17b75097fff8baf7e8218553431dad64",
|
|
1507
|
-
"mtime": 1773796492343.4023,
|
|
1508
|
-
"size": 304,
|
|
1509
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1510
|
-
},
|
|
1511
|
-
"test-projects/express-api/ai/files.json": {
|
|
1512
|
-
"path": "test-projects/express-api/ai/files.json",
|
|
1513
|
-
"hash": "4041be286c1f3bef227566eb3131babc",
|
|
1514
|
-
"mtime": 1773854929729.0337,
|
|
1515
|
-
"size": 2512,
|
|
1516
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1517
|
-
},
|
|
1518
|
-
"test-projects/express-api/ai/graph/knowledge-graph.json": {
|
|
1519
|
-
"path": "test-projects/express-api/ai/graph/knowledge-graph.json",
|
|
1520
|
-
"hash": "f77f4f49dab0623ff144b6e971feabdc",
|
|
1521
|
-
"mtime": 1773796549349.291,
|
|
1522
|
-
"size": 1809,
|
|
1523
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1524
|
-
},
|
|
1525
|
-
"test-projects/express-api/ai/graph/module-graph.json": {
|
|
1526
|
-
"path": "test-projects/express-api/ai/graph/module-graph.json",
|
|
1527
|
-
"hash": "43383456483e635b66ff8960f3b39f03",
|
|
1528
|
-
"mtime": 1773796517391.793,
|
|
1529
|
-
"size": 725,
|
|
1530
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1531
|
-
},
|
|
1532
|
-
"test-projects/express-api/ai/graph/symbol-graph.json": {
|
|
1533
|
-
"path": "test-projects/express-api/ai/graph/symbol-graph.json",
|
|
1534
|
-
"hash": "d254a317177342dab8125c05c4616101",
|
|
1535
|
-
"mtime": 1773796517397.7932,
|
|
1536
|
-
"size": 23692,
|
|
1537
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1538
|
-
},
|
|
1539
|
-
"test-projects/express-api/ai/graph/symbol-references.json": {
|
|
1540
|
-
"path": "test-projects/express-api/ai/graph/symbol-references.json",
|
|
1541
|
-
"hash": "656c3df0aaaf021cc2f25769a7945c41",
|
|
1542
|
-
"mtime": 1773796517397.7932,
|
|
1543
|
-
"size": 1577,
|
|
1544
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1545
|
-
},
|
|
1546
|
-
"test-projects/express-api/ai/index-state.json": {
|
|
1547
|
-
"path": "test-projects/express-api/ai/index-state.json",
|
|
1548
|
-
"hash": "8870c8839252ed08c5c2804959db7841",
|
|
1549
|
-
"mtime": 1773854832180.295,
|
|
1550
|
-
"size": 7997,
|
|
1551
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1552
|
-
},
|
|
1553
|
-
"test-projects/express-api/ai/modules.json": {
|
|
1554
|
-
"path": "test-projects/express-api/ai/modules.json",
|
|
1555
|
-
"hash": "52396bb2eb3346493e373bf55805ef90",
|
|
1556
|
-
"mtime": 1773854832117.2937,
|
|
1557
|
-
"size": 555,
|
|
1558
|
-
"indexedAt": "2026-03-18T19:21:24.573Z"
|
|
1559
|
-
},
|
|
1560
|
-
"test-projects/express-api/ai/project.json": {
|
|
1561
|
-
"path": "test-projects/express-api/ai/project.json",
|
|
1562
|
-
"hash": "1bb817bdbded1961f92fd41ff357d31b",
|
|
1563
|
-
"mtime": 1773854929729.0337,
|
|
1564
|
-
"size": 249,
|
|
1565
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1566
|
-
},
|
|
1567
|
-
"test-projects/express-api/ai/repo-map.json": {
|
|
1568
|
-
"path": "test-projects/express-api/ai/repo-map.json",
|
|
1569
|
-
"hash": "d59ff56ea2af1192014b5a9977c3cc01",
|
|
1570
|
-
"mtime": 1773854929729.0337,
|
|
1571
|
-
"size": 6308,
|
|
1572
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1573
|
-
},
|
|
1574
|
-
"test-projects/express-api/ai/repo_map.json": {
|
|
1575
|
-
"path": "test-projects/express-api/ai/repo_map.json",
|
|
1576
|
-
"hash": "2c931b22a4f0555492ca98f0e74d0511",
|
|
1577
|
-
"mtime": 1773854929729.0337,
|
|
1578
|
-
"size": 2017,
|
|
1579
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1580
|
-
},
|
|
1581
|
-
"test-projects/express-api/ai/repo_map.md": {
|
|
1582
|
-
"path": "test-projects/express-api/ai/repo_map.md",
|
|
1583
|
-
"hash": "35963e46f602438bc7b1318c630c9616",
|
|
1584
|
-
"mtime": 1773796492340.4023,
|
|
1585
|
-
"size": 618,
|
|
1586
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1587
|
-
},
|
|
1588
|
-
"test-projects/express-api/ai/schema.json": {
|
|
1589
|
-
"path": "test-projects/express-api/ai/schema.json",
|
|
1590
|
-
"hash": "13d7dee9946a2959f9b7309ee88b23f6",
|
|
1591
|
-
"mtime": 1773854929729.0337,
|
|
1592
|
-
"size": 102,
|
|
1593
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1594
|
-
},
|
|
1595
|
-
"test-projects/express-api/ai/summary.md": {
|
|
1596
|
-
"path": "test-projects/express-api/ai/summary.md",
|
|
1597
|
-
"hash": "792c7fa8536cdf57b7506a5b4390e1fd",
|
|
1598
|
-
"mtime": 1773796492341.4023,
|
|
1599
|
-
"size": 215,
|
|
1600
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1601
|
-
},
|
|
1602
|
-
"test-projects/express-api/ai/symbols.json": {
|
|
1603
|
-
"path": "test-projects/express-api/ai/symbols.json",
|
|
1604
|
-
"hash": "55f09cedb48590dcdc4c0a4506026d52",
|
|
1605
|
-
"mtime": 1773796492346.4023,
|
|
1606
|
-
"size": 30291,
|
|
1607
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1608
|
-
},
|
|
1609
|
-
"test-projects/express-api/ai/tech_stack.md": {
|
|
1610
|
-
"path": "test-projects/express-api/ai/tech_stack.md",
|
|
1611
|
-
"hash": "bce98c307ddce9864d341031c914ba8a",
|
|
1612
|
-
"mtime": 1773796492343.4023,
|
|
1613
|
-
"size": 411,
|
|
1614
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1615
|
-
},
|
|
1616
|
-
"test-projects/express-api/ai/tools.json": {
|
|
1617
|
-
"path": "test-projects/express-api/ai/tools.json",
|
|
1618
|
-
"hash": "b1356e52c74e9b3b6a0d397b790a4968",
|
|
1619
|
-
"mtime": 1773796492350.4023,
|
|
1620
|
-
"size": 138,
|
|
1621
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1622
|
-
},
|
|
1623
|
-
"test-projects/express-api/controllers/authController.js": {
|
|
1624
|
-
"path": "test-projects/express-api/controllers/authController.js",
|
|
1625
|
-
"hash": "7354721b063c069c013d70e04f4bee0f",
|
|
1626
|
-
"mtime": 1773776832721.0393,
|
|
1627
|
-
"size": 930,
|
|
1628
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1629
|
-
},
|
|
1630
|
-
"test-projects/express-api/controllers/userController.js": {
|
|
1631
|
-
"path": "test-projects/express-api/controllers/userController.js",
|
|
1632
|
-
"hash": "e43bb45b1c75b7e4bcd072c60a70d848",
|
|
1633
|
-
"mtime": 1773776845003.1538,
|
|
1634
|
-
"size": 1214,
|
|
1635
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1636
|
-
},
|
|
1637
|
-
"test-projects/express-api/index.js": {
|
|
1638
|
-
"path": "test-projects/express-api/index.js",
|
|
1639
|
-
"hash": "b866780bf160f2bfb2ac6baba6a1f6b1",
|
|
1640
|
-
"mtime": 1773776791058.662,
|
|
1641
|
-
"size": 682,
|
|
1642
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1643
|
-
},
|
|
1644
|
-
"test-projects/express-api/middleware/authMiddleware.js": {
|
|
1645
|
-
"path": "test-projects/express-api/middleware/authMiddleware.js",
|
|
1646
|
-
"hash": "bd1176bd90f83f93b3f66d07758267e5",
|
|
1647
|
-
"mtime": 1773776926397.9497,
|
|
1648
|
-
"size": 689,
|
|
1649
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1650
|
-
},
|
|
1651
|
-
"test-projects/express-api/models/userRepository.js": {
|
|
1652
|
-
"path": "test-projects/express-api/models/userRepository.js",
|
|
1653
|
-
"hash": "fdf8dfbb70b15c82f0d2b13e51a640f6",
|
|
1654
|
-
"mtime": 1773776885672.544,
|
|
1655
|
-
"size": 767,
|
|
1656
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1657
|
-
},
|
|
1658
|
-
"test-projects/express-api/package.json": {
|
|
1659
|
-
"path": "test-projects/express-api/package.json",
|
|
1660
|
-
"hash": "c64180130f77b5472a2850aafa61c7e9",
|
|
1661
|
-
"mtime": 1773776784437.6038,
|
|
1662
|
-
"size": 363,
|
|
1663
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1664
|
-
},
|
|
1665
|
-
"test-projects/express-api/services/authService.js": {
|
|
1666
|
-
"path": "test-projects/express-api/services/authService.js",
|
|
1667
|
-
"hash": "cacf5bd493a669c8ef7b95bef67cf7e5",
|
|
1668
|
-
"mtime": 1773776853984.2388,
|
|
1669
|
-
"size": 555,
|
|
1670
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1671
|
-
},
|
|
1672
|
-
"test-projects/express-api/services/userService.js": {
|
|
1673
|
-
"path": "test-projects/express-api/services/userService.js",
|
|
1674
|
-
"hash": "cb3b6f655977d154edee4038d6105d10",
|
|
1675
|
-
"mtime": 1773776865182.3455,
|
|
1676
|
-
"size": 534,
|
|
1677
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1678
|
-
},
|
|
1679
|
-
"test-projects/fastapi-app/README.md": {
|
|
1680
|
-
"path": "test-projects/fastapi-app/README.md",
|
|
1681
|
-
"hash": "bf26100b42bb769b5067306a5fb0a830",
|
|
1682
|
-
"mtime": 1773848160010.3352,
|
|
1683
|
-
"size": 3195,
|
|
1684
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1685
|
-
},
|
|
1686
|
-
"test-projects/fastapi-app/ai/ai_context.md": {
|
|
1687
|
-
"path": "test-projects/fastapi-app/ai/ai_context.md",
|
|
1688
|
-
"hash": "06b0588ccaa38e93b82047e29c26dbf4",
|
|
1689
|
-
"mtime": 1773848180015.6138,
|
|
1690
|
-
"size": 1421,
|
|
1691
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1692
|
-
},
|
|
1693
|
-
"test-projects/fastapi-app/ai/ai_rules.md": {
|
|
1694
|
-
"path": "test-projects/fastapi-app/ai/ai_rules.md",
|
|
1695
|
-
"hash": "b7db08ce64e7b0afd2e515992bc0a561",
|
|
1696
|
-
"mtime": 1773848180015.6138,
|
|
1697
|
-
"size": 787,
|
|
1698
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1699
|
-
},
|
|
1700
|
-
"test-projects/fastapi-app/ai/architecture.md": {
|
|
1701
|
-
"path": "test-projects/fastapi-app/ai/architecture.md",
|
|
1702
|
-
"hash": "423f9f9db4f90e3e12c8aab7f022ef98",
|
|
1703
|
-
"mtime": 1773848180010.6138,
|
|
1704
|
-
"size": 586,
|
|
1705
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1706
|
-
},
|
|
1707
|
-
"test-projects/fastapi-app/ai/cache.json": {
|
|
1708
|
-
"path": "test-projects/fastapi-app/ai/cache.json",
|
|
1709
|
-
"hash": "429adfe1177228af3779a24147bc7e1b",
|
|
1710
|
-
"mtime": 1773848188957.7383,
|
|
1711
|
-
"size": 3095,
|
|
1712
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1713
|
-
},
|
|
1714
|
-
"test-projects/fastapi-app/ai/conventions.md": {
|
|
1715
|
-
"path": "test-projects/fastapi-app/ai/conventions.md",
|
|
1716
|
-
"hash": "d11ac646a8916e3c6cc376f610368317",
|
|
1717
|
-
"mtime": 1773848180012.6138,
|
|
1718
|
-
"size": 813,
|
|
1719
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1720
|
-
},
|
|
1721
|
-
"test-projects/fastapi-app/ai/dependencies.json": {
|
|
1722
|
-
"path": "test-projects/fastapi-app/ai/dependencies.json",
|
|
1723
|
-
"hash": "246c5a632d3afd7fd186dc0f028157f6",
|
|
1724
|
-
"mtime": 1773848180014.6138,
|
|
1725
|
-
"size": 5060,
|
|
1726
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1727
|
-
},
|
|
1728
|
-
"test-projects/fastapi-app/ai/entrypoints.md": {
|
|
1729
|
-
"path": "test-projects/fastapi-app/ai/entrypoints.md",
|
|
1730
|
-
"hash": "34c8965a66697d9f1d428bb0904f5d8d",
|
|
1731
|
-
"mtime": 1773848180011.6138,
|
|
1732
|
-
"size": 43,
|
|
1733
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1734
|
-
},
|
|
1735
|
-
"test-projects/fastapi-app/ai/files.json": {
|
|
1736
|
-
"path": "test-projects/fastapi-app/ai/files.json",
|
|
1737
|
-
"hash": "2e3b91dd5469562139f75f79287027d8",
|
|
1738
|
-
"mtime": 1773854929729.0337,
|
|
1739
|
-
"size": 2819,
|
|
1740
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1741
|
-
},
|
|
1742
|
-
"test-projects/fastapi-app/ai/graph/module-graph.json": {
|
|
1743
|
-
"path": "test-projects/fastapi-app/ai/graph/module-graph.json",
|
|
1744
|
-
"hash": "dccb5b1211bf9c438fefd949ef8d280d",
|
|
1745
|
-
"mtime": 1773848188949.738,
|
|
1746
|
-
"size": 1223,
|
|
1747
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1748
|
-
},
|
|
1749
|
-
"test-projects/fastapi-app/ai/graph/symbol-graph.json": {
|
|
1750
|
-
"path": "test-projects/fastapi-app/ai/graph/symbol-graph.json",
|
|
1751
|
-
"hash": "dacfe5d47c55c042e7a83e970b975fd2",
|
|
1752
|
-
"mtime": 1773848188955.7383,
|
|
1753
|
-
"size": 44539,
|
|
1754
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1755
|
-
},
|
|
1756
|
-
"test-projects/fastapi-app/ai/graph/symbol-references.json": {
|
|
1757
|
-
"path": "test-projects/fastapi-app/ai/graph/symbol-references.json",
|
|
1758
|
-
"hash": "1cac27d66672fe0c2cf2c0f030e38795",
|
|
1759
|
-
"mtime": 1773848188956.7383,
|
|
1760
|
-
"size": 1791,
|
|
1761
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1762
|
-
},
|
|
1763
|
-
"test-projects/fastapi-app/ai/index-state.json": {
|
|
1764
|
-
"path": "test-projects/fastapi-app/ai/index-state.json",
|
|
1765
|
-
"hash": "140a19ce26a2a62352b6eb6457d91fc5",
|
|
1766
|
-
"mtime": 1773854929729.0337,
|
|
1767
|
-
"size": 6441,
|
|
1768
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1769
|
-
},
|
|
1770
|
-
"test-projects/fastapi-app/ai/modules.json": {
|
|
1771
|
-
"path": "test-projects/fastapi-app/ai/modules.json",
|
|
1772
|
-
"hash": "1c7630ab9b91c57c6cb9ccb384cc3f4e",
|
|
1773
|
-
"mtime": 1773854832245.2961,
|
|
1774
|
-
"size": 281,
|
|
1775
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1776
|
-
},
|
|
1777
|
-
"test-projects/fastapi-app/ai/project.json": {
|
|
1778
|
-
"path": "test-projects/fastapi-app/ai/project.json",
|
|
1779
|
-
"hash": "1067d825cc4be093755993728968ba7f",
|
|
1780
|
-
"mtime": 1773848180017.6138,
|
|
1781
|
-
"size": 186,
|
|
1782
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1783
|
-
},
|
|
1784
|
-
"test-projects/fastapi-app/ai/repo-map.json": {
|
|
1785
|
-
"path": "test-projects/fastapi-app/ai/repo-map.json",
|
|
1786
|
-
"hash": "618ba6fae84d28fb96cfad500fb0b32a",
|
|
1787
|
-
"mtime": 1773848188947.738,
|
|
1788
|
-
"size": 4769,
|
|
1789
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1790
|
-
},
|
|
1791
|
-
"test-projects/fastapi-app/ai/repo_map.json": {
|
|
1792
|
-
"path": "test-projects/fastapi-app/ai/repo_map.json",
|
|
1793
|
-
"hash": "01a62da84320e9b5989803f90799e278",
|
|
1794
|
-
"mtime": 1773848180009.6135,
|
|
1795
|
-
"size": 1778,
|
|
1796
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1797
|
-
},
|
|
1798
|
-
"test-projects/fastapi-app/ai/repo_map.md": {
|
|
1799
|
-
"path": "test-projects/fastapi-app/ai/repo_map.md",
|
|
1800
|
-
"hash": "e6e7d946bb0e4408e4e373f5b8fd6a74",
|
|
1801
|
-
"mtime": 1773848180008.6135,
|
|
1802
|
-
"size": 450,
|
|
1803
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1804
|
-
},
|
|
1805
|
-
"test-projects/fastapi-app/ai/schema.json": {
|
|
1806
|
-
"path": "test-projects/fastapi-app/ai/schema.json",
|
|
1807
|
-
"hash": "da47e464464bc5767261d258df5b17c4",
|
|
1808
|
-
"mtime": 1773848180017.6138,
|
|
1809
|
-
"size": 102,
|
|
1810
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1811
|
-
},
|
|
1812
|
-
"test-projects/fastapi-app/ai/summary.md": {
|
|
1813
|
-
"path": "test-projects/fastapi-app/ai/summary.md",
|
|
1814
|
-
"hash": "9a081d026396cae093add00fc2c34320",
|
|
1815
|
-
"mtime": 1773848180009.6135,
|
|
1816
|
-
"size": 138,
|
|
1817
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1818
|
-
},
|
|
1819
|
-
"test-projects/fastapi-app/ai/symbols.json": {
|
|
1820
|
-
"path": "test-projects/fastapi-app/ai/symbols.json",
|
|
1821
|
-
"hash": "a89ac8114a5482c6128299186c367207",
|
|
1822
|
-
"mtime": 1773848180013.6138,
|
|
1823
|
-
"size": 47762,
|
|
1824
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1825
|
-
},
|
|
1826
|
-
"test-projects/fastapi-app/ai/tech_stack.md": {
|
|
1827
|
-
"path": "test-projects/fastapi-app/ai/tech_stack.md",
|
|
1828
|
-
"hash": "f5d7720e17390f42b9f81c4b3c0d1bdf",
|
|
1829
|
-
"mtime": 1773848180011.6138,
|
|
1830
|
-
"size": 342,
|
|
1831
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1832
|
-
},
|
|
1833
|
-
"test-projects/fastapi-app/ai/tools.json": {
|
|
1834
|
-
"path": "test-projects/fastapi-app/ai/tools.json",
|
|
1835
|
-
"hash": "b1356e52c74e9b3b6a0d397b790a4968",
|
|
1836
|
-
"mtime": 1773848180017.6138,
|
|
1837
|
-
"size": 138,
|
|
1838
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1839
|
-
},
|
|
1840
|
-
"test-projects/fastapi-app/app/database.py": {
|
|
1841
|
-
"path": "test-projects/fastapi-app/app/database.py",
|
|
1842
|
-
"hash": "119e69e1cbb98dd5dbad6dd6667c31c8",
|
|
1843
|
-
"mtime": 1773847938779.2578,
|
|
1844
|
-
"size": 534,
|
|
1845
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1846
|
-
},
|
|
1847
|
-
"test-projects/fastapi-app/app/dependencies.py": {
|
|
1848
|
-
"path": "test-projects/fastapi-app/app/dependencies.py",
|
|
1849
|
-
"hash": "a4bcf7c973d54dfba67718f52c0d1e9b",
|
|
1850
|
-
"mtime": 1773848033913.5806,
|
|
1851
|
-
"size": 3402,
|
|
1852
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1853
|
-
},
|
|
1854
|
-
"test-projects/fastapi-app/app/main.py": {
|
|
1855
|
-
"path": "test-projects/fastapi-app/app/main.py",
|
|
1856
|
-
"hash": "19a812c3ee021a6e96bdf3aee822ac95",
|
|
1857
|
-
"mtime": 1773848130927.9304,
|
|
1858
|
-
"size": 1043,
|
|
1859
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1860
|
-
},
|
|
1861
|
-
"test-projects/fastapi-app/app/models.py": {
|
|
1862
|
-
"path": "test-projects/fastapi-app/app/models.py",
|
|
1863
|
-
"hash": "a246bcc28f34e2ea398115358f06ec1e",
|
|
1864
|
-
"mtime": 1773847967580.6582,
|
|
1865
|
-
"size": 4875,
|
|
1866
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1867
|
-
},
|
|
1868
|
-
"test-projects/fastapi-app/app/routers/auth.py": {
|
|
1869
|
-
"path": "test-projects/fastapi-app/app/routers/auth.py",
|
|
1870
|
-
"hash": "7f51218c007b8f521b149f0801d8b145",
|
|
1871
|
-
"mtime": 1773848061086.9585,
|
|
1872
|
-
"size": 3508,
|
|
1873
|
-
"indexedAt": "2026-03-18T19:21:24.574Z"
|
|
1874
|
-
},
|
|
1875
|
-
"test-projects/fastapi-app/app/routers/posts.py": {
|
|
1876
|
-
"path": "test-projects/fastapi-app/app/routers/posts.py",
|
|
1877
|
-
"hash": "f8db1a2d760c7e611af7c610dbab4162",
|
|
1878
|
-
"mtime": 1773848113520.6882,
|
|
1879
|
-
"size": 7555,
|
|
1880
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
1881
|
-
},
|
|
1882
|
-
"test-projects/fastapi-app/app/schemas.py": {
|
|
1883
|
-
"path": "test-projects/fastapi-app/app/schemas.py",
|
|
1884
|
-
"hash": "4049102356e992bc2c4442d589cd2ced",
|
|
1885
|
-
"mtime": 1773848005561.1863,
|
|
1886
|
-
"size": 3996,
|
|
1887
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
1888
|
-
},
|
|
1889
|
-
"test-projects/flask-app/README.md": {
|
|
1890
|
-
"path": "test-projects/flask-app/README.md",
|
|
1891
|
-
"hash": "071fe06a414db5cf64f67408324178eb",
|
|
1892
|
-
"mtime": 1773848514509.6038,
|
|
1893
|
-
"size": 2864,
|
|
1894
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
1895
|
-
},
|
|
1896
|
-
"test-projects/flask-app/ai/ai_context.md": {
|
|
1897
|
-
"path": "test-projects/flask-app/ai/ai_context.md",
|
|
1898
|
-
"hash": "cf729a56ec41c185778ce65866e495a7",
|
|
1899
|
-
"mtime": 1773848536627.0344,
|
|
1900
|
-
"size": 1514,
|
|
1901
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
1902
|
-
},
|
|
1903
|
-
"test-projects/flask-app/ai/ai_rules.md": {
|
|
1904
|
-
"path": "test-projects/flask-app/ai/ai_rules.md",
|
|
1905
|
-
"hash": "e3b8a915d60578c37888d5589cc8a8b4",
|
|
1906
|
-
"mtime": 1773848536627.0344,
|
|
1907
|
-
"size": 812,
|
|
1908
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
1909
|
-
},
|
|
1910
|
-
"test-projects/flask-app/ai/architecture.md": {
|
|
1911
|
-
"path": "test-projects/flask-app/ai/architecture.md",
|
|
1912
|
-
"hash": "5436c01ae8a7ed86df7421cf06c4a2ea",
|
|
1913
|
-
"mtime": 1773848536621.0344,
|
|
1914
|
-
"size": 766,
|
|
1915
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
1916
|
-
},
|
|
1917
|
-
"test-projects/flask-app/ai/cache.json": {
|
|
1918
|
-
"path": "test-projects/flask-app/ai/cache.json",
|
|
1919
|
-
"hash": "452dea2cf3172e79ede6d8bd57f1d7d6",
|
|
1920
|
-
"mtime": 1773848544258.1821,
|
|
1921
|
-
"size": 4065,
|
|
1922
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
1923
|
-
},
|
|
1924
|
-
"test-projects/flask-app/ai/context/features/app.json": {
|
|
1925
|
-
"path": "test-projects/flask-app/ai/context/features/app.json",
|
|
1926
|
-
"hash": "1d70801cc444a0b89b9d8b821d3bd9fa",
|
|
1927
|
-
"mtime": 1773848544260.1821,
|
|
1928
|
-
"size": 509,
|
|
1929
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
1930
|
-
},
|
|
1931
|
-
"test-projects/flask-app/ai/context/flows/routes.json": {
|
|
1932
|
-
"path": "test-projects/flask-app/ai/context/flows/routes.json",
|
|
1933
|
-
"hash": "5ddf9a5c298ea6a4642971022d75d3a3",
|
|
1934
|
-
"mtime": 1773848544260.1821,
|
|
1935
|
-
"size": 222,
|
|
1936
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
1937
|
-
},
|
|
1938
|
-
"test-projects/flask-app/ai/conventions.md": {
|
|
1939
|
-
"path": "test-projects/flask-app/ai/conventions.md",
|
|
1940
|
-
"hash": "d11ac646a8916e3c6cc376f610368317",
|
|
1941
|
-
"mtime": 1773848536623.0344,
|
|
1942
|
-
"size": 813,
|
|
1943
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
1944
|
-
},
|
|
1945
|
-
"test-projects/flask-app/ai/dependencies.json": {
|
|
1946
|
-
"path": "test-projects/flask-app/ai/dependencies.json",
|
|
1947
|
-
"hash": "a1df2bb705e3dfc1d871a0f4b5599918",
|
|
1948
|
-
"mtime": 1773848536626.0344,
|
|
1949
|
-
"size": 5954,
|
|
1950
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
1951
|
-
},
|
|
1952
|
-
"test-projects/flask-app/ai/entrypoints.md": {
|
|
1953
|
-
"path": "test-projects/flask-app/ai/entrypoints.md",
|
|
1954
|
-
"hash": "34c8965a66697d9f1d428bb0904f5d8d",
|
|
1955
|
-
"mtime": 1773848536623.0344,
|
|
1956
|
-
"size": 43,
|
|
1957
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
1958
|
-
},
|
|
1959
|
-
"test-projects/flask-app/ai/files.json": {
|
|
1960
|
-
"path": "test-projects/flask-app/ai/files.json",
|
|
1961
|
-
"hash": "fbef1c8bb7bf176d0b15f8e232cefee9",
|
|
1962
|
-
"mtime": 1773854929729.0337,
|
|
1963
|
-
"size": 3602,
|
|
1964
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
1965
|
-
},
|
|
1966
|
-
"test-projects/flask-app/ai/graph/module-graph.json": {
|
|
1967
|
-
"path": "test-projects/flask-app/ai/graph/module-graph.json",
|
|
1968
|
-
"hash": "02a02b0cbc9e18fbb1a22a7ab03e332d",
|
|
1969
|
-
"mtime": 1773848544249.182,
|
|
1970
|
-
"size": 1533,
|
|
1971
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
1972
|
-
},
|
|
1973
|
-
"test-projects/flask-app/ai/graph/symbol-graph.json": {
|
|
1974
|
-
"path": "test-projects/flask-app/ai/graph/symbol-graph.json",
|
|
1975
|
-
"hash": "c6510825e8319f971555c34d69b398f8",
|
|
1976
|
-
"mtime": 1773848544256.1821,
|
|
1977
|
-
"size": 36185,
|
|
1978
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
1979
|
-
},
|
|
1980
|
-
"test-projects/flask-app/ai/graph/symbol-references.json": {
|
|
1981
|
-
"path": "test-projects/flask-app/ai/graph/symbol-references.json",
|
|
1982
|
-
"hash": "50d531c7ec9c163df25e05dbeda9d3dc",
|
|
1983
|
-
"mtime": 1773848544256.1821,
|
|
1984
|
-
"size": 1393,
|
|
1985
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
1986
|
-
},
|
|
1987
|
-
"test-projects/flask-app/ai/index-state.json": {
|
|
1988
|
-
"path": "test-projects/flask-app/ai/index-state.json",
|
|
1989
|
-
"hash": "e6134693beb94e4a0ffec54a51e056d3",
|
|
1990
|
-
"mtime": 1773854929729.0337,
|
|
1991
|
-
"size": 8254,
|
|
1992
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
1993
|
-
},
|
|
1994
|
-
"test-projects/flask-app/ai/modules.json": {
|
|
1995
|
-
"path": "test-projects/flask-app/ai/modules.json",
|
|
1996
|
-
"hash": "38c0bc646d910f72304c2f0c0a7dc547",
|
|
1997
|
-
"mtime": 1773854832384.2986,
|
|
1998
|
-
"size": 442,
|
|
1999
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2000
|
-
},
|
|
2001
|
-
"test-projects/flask-app/ai/project.json": {
|
|
2002
|
-
"path": "test-projects/flask-app/ai/project.json",
|
|
2003
|
-
"hash": "cef4e1e0702fd7503ab8c8e1461a5eed",
|
|
2004
|
-
"mtime": 1773848536629.0347,
|
|
2005
|
-
"size": 211,
|
|
2006
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2007
|
-
},
|
|
2008
|
-
"test-projects/flask-app/ai/repo-map.json": {
|
|
2009
|
-
"path": "test-projects/flask-app/ai/repo-map.json",
|
|
2010
|
-
"hash": "3fa4e569753bb24a62a351af4e536168",
|
|
2011
|
-
"mtime": 1773848544247.182,
|
|
2012
|
-
"size": 7103,
|
|
2013
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2014
|
-
},
|
|
2015
|
-
"test-projects/flask-app/ai/repo_map.json": {
|
|
2016
|
-
"path": "test-projects/flask-app/ai/repo_map.json",
|
|
2017
|
-
"hash": "b1e8e7df6742fdc1b4856421917a1aea",
|
|
2018
|
-
"mtime": 1773848536620.0344,
|
|
2019
|
-
"size": 3310,
|
|
2020
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2021
|
-
},
|
|
2022
|
-
"test-projects/flask-app/ai/repo_map.md": {
|
|
2023
|
-
"path": "test-projects/flask-app/ai/repo_map.md",
|
|
2024
|
-
"hash": "00b39c99697e3a192ac9582c29acbd0c",
|
|
2025
|
-
"mtime": 1773848536620.0344,
|
|
2026
|
-
"size": 816,
|
|
2027
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2028
|
-
},
|
|
2029
|
-
"test-projects/flask-app/ai/schema.json": {
|
|
2030
|
-
"path": "test-projects/flask-app/ai/schema.json",
|
|
2031
|
-
"hash": "b242479cd54da3a1069f9a72d4087693",
|
|
2032
|
-
"mtime": 1773848536629.0347,
|
|
2033
|
-
"size": 102,
|
|
2034
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2035
|
-
},
|
|
2036
|
-
"test-projects/flask-app/ai/summary.md": {
|
|
2037
|
-
"path": "test-projects/flask-app/ai/summary.md",
|
|
2038
|
-
"hash": "6e8e4144d042cab6e79a4263a02e8c8e",
|
|
2039
|
-
"mtime": 1773848536620.0344,
|
|
2040
|
-
"size": 158,
|
|
2041
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2042
|
-
},
|
|
2043
|
-
"test-projects/flask-app/ai/symbols.json": {
|
|
2044
|
-
"path": "test-projects/flask-app/ai/symbols.json",
|
|
2045
|
-
"hash": "303ff8a7e834966302a3ef8665c10efa",
|
|
2046
|
-
"mtime": 1773848536625.0344,
|
|
2047
|
-
"size": 44420,
|
|
2048
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2049
|
-
},
|
|
2050
|
-
"test-projects/flask-app/ai/tech_stack.md": {
|
|
2051
|
-
"path": "test-projects/flask-app/ai/tech_stack.md",
|
|
2052
|
-
"hash": "f5d7720e17390f42b9f81c4b3c0d1bdf",
|
|
2053
|
-
"mtime": 1773848536622.0344,
|
|
2054
|
-
"size": 342,
|
|
2055
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2056
|
-
},
|
|
2057
|
-
"test-projects/flask-app/ai/tools.json": {
|
|
2058
|
-
"path": "test-projects/flask-app/ai/tools.json",
|
|
2059
|
-
"hash": "b1356e52c74e9b3b6a0d397b790a4968",
|
|
2060
|
-
"mtime": 1773848536629.0347,
|
|
2061
|
-
"size": 138,
|
|
2062
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2063
|
-
},
|
|
2064
|
-
"test-projects/flask-app/app/__init__.py": {
|
|
2065
|
-
"path": "test-projects/flask-app/app/__init__.py",
|
|
2066
|
-
"hash": "135b544eb6253b213ebe2931693d7e81",
|
|
2067
|
-
"mtime": 1773848317056.531,
|
|
2068
|
-
"size": 1071,
|
|
2069
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2070
|
-
},
|
|
2071
|
-
"test-projects/flask-app/app/api/__init__.py": {
|
|
2072
|
-
"path": "test-projects/flask-app/app/api/__init__.py",
|
|
2073
|
-
"hash": "9ef74422b71d8e4eb23da44a55746762",
|
|
2074
|
-
"mtime": 1773848498343.286,
|
|
2075
|
-
"size": 111,
|
|
2076
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2077
|
-
},
|
|
2078
|
-
"test-projects/flask-app/app/api/routes.py": {
|
|
2079
|
-
"path": "test-projects/flask-app/app/api/routes.py",
|
|
2080
|
-
"hash": "5b5e6a14a1d593e67abd927391313750",
|
|
2081
|
-
"mtime": 1773848496063.241,
|
|
2082
|
-
"size": 3490,
|
|
2083
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2084
|
-
},
|
|
2085
|
-
"test-projects/flask-app/app/auth/__init__.py": {
|
|
2086
|
-
"path": "test-projects/flask-app/app/auth/__init__.py",
|
|
2087
|
-
"hash": "abf9b359f664fe1d79755ece5091a5da",
|
|
2088
|
-
"mtime": 1773848426716.8467,
|
|
2089
|
-
"size": 131,
|
|
2090
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2091
|
-
},
|
|
2092
|
-
"test-projects/flask-app/app/auth/forms.py": {
|
|
2093
|
-
"path": "test-projects/flask-app/app/auth/forms.py",
|
|
2094
|
-
"hash": "89d621d726eb0aab9e5395e5d5785b5e",
|
|
2095
|
-
"mtime": 1773848423372.7783,
|
|
2096
|
-
"size": 1731,
|
|
2097
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2098
|
-
},
|
|
2099
|
-
"test-projects/flask-app/app/auth/routes.py": {
|
|
2100
|
-
"path": "test-projects/flask-app/app/auth/routes.py",
|
|
2101
|
-
"hash": "786f87aafcd30ab8c036f77c1f28a994",
|
|
2102
|
-
"mtime": 1773848412451.5537,
|
|
2103
|
-
"size": 2117,
|
|
2104
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2105
|
-
},
|
|
2106
|
-
"test-projects/flask-app/app/blog/__init__.py": {
|
|
2107
|
-
"path": "test-projects/flask-app/app/blog/__init__.py",
|
|
2108
|
-
"hash": "3aadb4a0fa81a23f19574d14d8f7b0b6",
|
|
2109
|
-
"mtime": 1773848463715.5967,
|
|
2110
|
-
"size": 121,
|
|
2111
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2112
|
-
},
|
|
2113
|
-
"test-projects/flask-app/app/blog/forms.py": {
|
|
2114
|
-
"path": "test-projects/flask-app/app/blog/forms.py",
|
|
2115
|
-
"hash": "f5bb29b358afcf2c49a9e43f6a4cade0",
|
|
2116
|
-
"mtime": 1773848462522.5728,
|
|
2117
|
-
"size": 1195,
|
|
2118
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2119
|
-
},
|
|
2120
|
-
"test-projects/flask-app/app/blog/routes.py": {
|
|
2121
|
-
"path": "test-projects/flask-app/app/blog/routes.py",
|
|
2122
|
-
"hash": "e5c182cbc60aa3b179790f48608340a7",
|
|
2123
|
-
"mtime": 1773848455560.4326,
|
|
2124
|
-
"size": 4196,
|
|
2125
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2126
|
-
},
|
|
2127
|
-
"test-projects/flask-app/app/main/__init__.py": {
|
|
2128
|
-
"path": "test-projects/flask-app/app/main/__init__.py",
|
|
2129
|
-
"hash": "2ec8b9aaec26dc4cadc268b03d26644a",
|
|
2130
|
-
"mtime": 1773848389471.0767,
|
|
2131
|
-
"size": 114,
|
|
2132
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2133
|
-
},
|
|
2134
|
-
"test-projects/flask-app/app/main/routes.py": {
|
|
2135
|
-
"path": "test-projects/flask-app/app/main/routes.py",
|
|
2136
|
-
"hash": "11851d841b8f782e855c201064be0932",
|
|
2137
|
-
"mtime": 1773848388172.0493,
|
|
2138
|
-
"size": 2509,
|
|
2139
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2140
|
-
},
|
|
2141
|
-
"test-projects/flask-app/app/models.py": {
|
|
2142
|
-
"path": "test-projects/flask-app/app/models.py",
|
|
2143
|
-
"hash": "80684c0f3c472100220ebf3265dbdd2a",
|
|
2144
|
-
"mtime": 1773848367634.6174,
|
|
2145
|
-
"size": 5539,
|
|
2146
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2147
|
-
},
|
|
2148
|
-
"test-projects/flask-app/config.py": {
|
|
2149
|
-
"path": "test-projects/flask-app/config.py",
|
|
2150
|
-
"hash": "f955d56ff51f4f024d586ba42f1c6320",
|
|
2151
|
-
"mtime": 1773848326297.732,
|
|
2152
|
-
"size": 1439,
|
|
2153
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2154
|
-
},
|
|
2155
|
-
"test-projects/laravel-app/README.md": {
|
|
2156
|
-
"path": "test-projects/laravel-app/README.md",
|
|
2157
|
-
"hash": "63be1b116847a4eacdb95be2aeab72c2",
|
|
2158
|
-
"mtime": 1773847786371.1416,
|
|
2159
|
-
"size": 2642,
|
|
2160
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2161
|
-
},
|
|
2162
|
-
"test-projects/laravel-app/ai/ai_context.md": {
|
|
2163
|
-
"path": "test-projects/laravel-app/ai/ai_context.md",
|
|
2164
|
-
"hash": "15ab5feae2638cabf3a2685cfe7f8ee4",
|
|
2165
|
-
"mtime": 1773854736818.5432,
|
|
2166
|
-
"size": 1623,
|
|
2167
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2168
|
-
},
|
|
2169
|
-
"test-projects/laravel-app/ai/ai_rules.md": {
|
|
2170
|
-
"path": "test-projects/laravel-app/ai/ai_rules.md",
|
|
2171
|
-
"hash": "2e09780ab0f6bb945f7401219fe243d4",
|
|
2172
|
-
"mtime": 1773854736818.5432,
|
|
2173
|
-
"size": 804,
|
|
2174
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2175
|
-
},
|
|
2176
|
-
"test-projects/laravel-app/ai/architecture.md": {
|
|
2177
|
-
"path": "test-projects/laravel-app/ai/architecture.md",
|
|
2178
|
-
"hash": "6c860fc433c730671d752ddf9f58cbca",
|
|
2179
|
-
"mtime": 1773854736813.5432,
|
|
2180
|
-
"size": 1003,
|
|
2181
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2182
|
-
},
|
|
2183
|
-
"test-projects/laravel-app/ai/cache.json": {
|
|
2184
|
-
"path": "test-projects/laravel-app/ai/cache.json",
|
|
2185
|
-
"hash": "b753a30235e999795838c0d5cb154c66",
|
|
2186
|
-
"mtime": 1773854929730.0337,
|
|
2187
|
-
"size": 4204,
|
|
2188
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2189
|
-
},
|
|
2190
|
-
"test-projects/laravel-app/ai/context/features/app.json": {
|
|
2191
|
-
"path": "test-projects/laravel-app/ai/context/features/app.json",
|
|
2192
|
-
"hash": "48ed0274a6a81b1c50955d402b3c2695",
|
|
2193
|
-
"mtime": 1773854736911.5452,
|
|
2194
|
-
"size": 619,
|
|
2195
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2196
|
-
},
|
|
2197
|
-
"test-projects/laravel-app/ai/context/flows/category.json": {
|
|
2198
|
-
"path": "test-projects/laravel-app/ai/context/flows/category.json",
|
|
2199
|
-
"hash": "437bcbd406d6d1288bd16213b6be4767",
|
|
2200
|
-
"mtime": 1773854736911.5452,
|
|
2201
|
-
"size": 237,
|
|
2202
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2203
|
-
},
|
|
2204
|
-
"test-projects/laravel-app/ai/context/flows/comment.json": {
|
|
2205
|
-
"path": "test-projects/laravel-app/ai/context/flows/comment.json",
|
|
2206
|
-
"hash": "c2ebad5e63035bae2fde39e9f863e9cb",
|
|
2207
|
-
"mtime": 1773854736911.5452,
|
|
2208
|
-
"size": 233,
|
|
2209
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2210
|
-
},
|
|
2211
|
-
"test-projects/laravel-app/ai/context/flows/post.json": {
|
|
2212
|
-
"path": "test-projects/laravel-app/ai/context/flows/post.json",
|
|
2213
|
-
"hash": "f704d1cdb7823ec237964b578e9935b7",
|
|
2214
|
-
"mtime": 1773854736911.5452,
|
|
2215
|
-
"size": 221,
|
|
2216
|
-
"indexedAt": "2026-03-18T19:21:24.575Z"
|
|
2217
|
-
},
|
|
2218
|
-
"test-projects/laravel-app/ai/context/flows/unnamed.json": {
|
|
2219
|
-
"path": "test-projects/laravel-app/ai/context/flows/unnamed.json",
|
|
2220
|
-
"hash": "0d3ba6968f125bdddd28f7b908d4c9e0",
|
|
2221
|
-
"mtime": 1773854736911.5452,
|
|
2222
|
-
"size": 161,
|
|
2223
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2224
|
-
},
|
|
2225
|
-
"test-projects/laravel-app/ai/conventions.md": {
|
|
2226
|
-
"path": "test-projects/laravel-app/ai/conventions.md",
|
|
2227
|
-
"hash": "d11ac646a8916e3c6cc376f610368317",
|
|
2228
|
-
"mtime": 1773854736815.5432,
|
|
2229
|
-
"size": 813,
|
|
2230
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2231
|
-
},
|
|
2232
|
-
"test-projects/laravel-app/ai/dependencies.json": {
|
|
2233
|
-
"path": "test-projects/laravel-app/ai/dependencies.json",
|
|
2234
|
-
"hash": "038f80a99cbcc45991786b645398758e",
|
|
2235
|
-
"mtime": 1773854736817.5432,
|
|
2236
|
-
"size": 87,
|
|
2237
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2238
|
-
},
|
|
2239
|
-
"test-projects/laravel-app/ai/entrypoints.md": {
|
|
2240
|
-
"path": "test-projects/laravel-app/ai/entrypoints.md",
|
|
2241
|
-
"hash": "34c8965a66697d9f1d428bb0904f5d8d",
|
|
2242
|
-
"mtime": 1773854736814.5432,
|
|
2243
|
-
"size": 43,
|
|
2244
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2245
|
-
},
|
|
2246
|
-
"test-projects/laravel-app/ai/files.json": {
|
|
2247
|
-
"path": "test-projects/laravel-app/ai/files.json",
|
|
2248
|
-
"hash": "17c7ffe15934f3eb665046045dd500da",
|
|
2249
|
-
"mtime": 1773854929730.0337,
|
|
2250
|
-
"size": 3791,
|
|
2251
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2252
|
-
},
|
|
2253
|
-
"test-projects/laravel-app/ai/graph/module-graph.json": {
|
|
2254
|
-
"path": "test-projects/laravel-app/ai/graph/module-graph.json",
|
|
2255
|
-
"hash": "08886f9cf775a3e58668f9c166b6f1ae",
|
|
2256
|
-
"mtime": 1773854736900.545,
|
|
2257
|
-
"size": 631,
|
|
2258
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2259
|
-
},
|
|
2260
|
-
"test-projects/laravel-app/ai/graph/symbol-graph.json": {
|
|
2261
|
-
"path": "test-projects/laravel-app/ai/graph/symbol-graph.json",
|
|
2262
|
-
"hash": "79a11e66d1c9ebdbec716c31b9eb11db",
|
|
2263
|
-
"mtime": 1773854929730.0337,
|
|
2264
|
-
"size": 60,
|
|
2265
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2266
|
-
},
|
|
2267
|
-
"test-projects/laravel-app/ai/graph/symbol-references.json": {
|
|
2268
|
-
"path": "test-projects/laravel-app/ai/graph/symbol-references.json",
|
|
2269
|
-
"hash": "99914b932bd37a50b983c5e7c90ae93b",
|
|
2270
|
-
"mtime": 1773854929730.0337,
|
|
2271
|
-
"size": 2,
|
|
2272
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2273
|
-
},
|
|
2274
|
-
"test-projects/laravel-app/ai/index-state.json": {
|
|
2275
|
-
"path": "test-projects/laravel-app/ai/index-state.json",
|
|
2276
|
-
"hash": "e7da95c458fbcbf04c7d84fc58575b42",
|
|
2277
|
-
"mtime": 1773854929730.0337,
|
|
2278
|
-
"size": 8513,
|
|
2279
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2280
|
-
},
|
|
2281
|
-
"test-projects/laravel-app/ai/modules.json": {
|
|
2282
|
-
"path": "test-projects/laravel-app/ai/modules.json",
|
|
2283
|
-
"hash": "2a7554702c3a5bcd823e4c634f012bb7",
|
|
2284
|
-
"mtime": 1773854832519.301,
|
|
2285
|
-
"size": 639,
|
|
2286
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2287
|
-
},
|
|
2288
|
-
"test-projects/laravel-app/ai/project.json": {
|
|
2289
|
-
"path": "test-projects/laravel-app/ai/project.json",
|
|
2290
|
-
"hash": "4f84fe1080f4b75b4285e8c8e1bcca0a",
|
|
2291
|
-
"mtime": 1773854929730.0337,
|
|
2292
|
-
"size": 252,
|
|
2293
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2294
|
-
},
|
|
2295
|
-
"test-projects/laravel-app/ai/repo-map.json": {
|
|
2296
|
-
"path": "test-projects/laravel-app/ai/repo-map.json",
|
|
2297
|
-
"hash": "e3eef6b0e39948ede51b992e3fd98afb",
|
|
2298
|
-
"mtime": 1773854929730.0337,
|
|
2299
|
-
"size": 7717,
|
|
2300
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2301
|
-
},
|
|
2302
|
-
"test-projects/laravel-app/ai/repo_map.json": {
|
|
2303
|
-
"path": "test-projects/laravel-app/ai/repo_map.json",
|
|
2304
|
-
"hash": "fbfd40643cc587d96742b7d25f11a4e8",
|
|
2305
|
-
"mtime": 1773854929730.0337,
|
|
2306
|
-
"size": 3445,
|
|
2307
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2308
|
-
},
|
|
2309
|
-
"test-projects/laravel-app/ai/repo_map.md": {
|
|
2310
|
-
"path": "test-projects/laravel-app/ai/repo_map.md",
|
|
2311
|
-
"hash": "9ee5fd15680ac4effd4398914d3b698c",
|
|
2312
|
-
"mtime": 1773854736809.5432,
|
|
2313
|
-
"size": 911,
|
|
2314
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2315
|
-
},
|
|
2316
|
-
"test-projects/laravel-app/ai/schema.json": {
|
|
2317
|
-
"path": "test-projects/laravel-app/ai/schema.json",
|
|
2318
|
-
"hash": "827bc0de2e5f071098e8ec8a65b30211",
|
|
2319
|
-
"mtime": 1773854929730.0337,
|
|
2320
|
-
"size": 102,
|
|
2321
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2322
|
-
},
|
|
2323
|
-
"test-projects/laravel-app/ai/summary.md": {
|
|
2324
|
-
"path": "test-projects/laravel-app/ai/summary.md",
|
|
2325
|
-
"hash": "9dbbf46bbf4b35c92e5294250b50a54b",
|
|
2326
|
-
"mtime": 1773854736812.5432,
|
|
2327
|
-
"size": 206,
|
|
2328
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2329
|
-
},
|
|
2330
|
-
"test-projects/laravel-app/ai/symbols.json": {
|
|
2331
|
-
"path": "test-projects/laravel-app/ai/symbols.json",
|
|
2332
|
-
"hash": "6edde050dc3089a9e15bf3934226a7c4",
|
|
2333
|
-
"mtime": 1773854929731.0337,
|
|
2334
|
-
"size": 83,
|
|
2335
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2336
|
-
},
|
|
2337
|
-
"test-projects/laravel-app/ai/tech_stack.md": {
|
|
2338
|
-
"path": "test-projects/laravel-app/ai/tech_stack.md",
|
|
2339
|
-
"hash": "fd84b9bddb9a4ced339df8f8eec6abe1",
|
|
2340
|
-
"mtime": 1773854736814.5432,
|
|
2341
|
-
"size": 376,
|
|
2342
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2343
|
-
},
|
|
2344
|
-
"test-projects/laravel-app/ai/tools.json": {
|
|
2345
|
-
"path": "test-projects/laravel-app/ai/tools.json",
|
|
2346
|
-
"hash": "b1356e52c74e9b3b6a0d397b790a4968",
|
|
2347
|
-
"mtime": 1773854736821.5435,
|
|
2348
|
-
"size": 138,
|
|
2349
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2350
|
-
},
|
|
2351
|
-
"test-projects/laravel-app/app/Http/Controllers/Api/CategoryController.php": {
|
|
2352
|
-
"path": "test-projects/laravel-app/app/Http/Controllers/Api/CategoryController.php",
|
|
2353
|
-
"hash": "eae63919c19317d673da75fae862ac1b",
|
|
2354
|
-
"mtime": 1773847799280.3206,
|
|
2355
|
-
"size": 2278,
|
|
2356
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2357
|
-
},
|
|
2358
|
-
"test-projects/laravel-app/app/Http/Controllers/Api/CommentController.php": {
|
|
2359
|
-
"path": "test-projects/laravel-app/app/Http/Controllers/Api/CommentController.php",
|
|
2360
|
-
"hash": "6dac8cef07f04ac0b0f20d76f4ca8348",
|
|
2361
|
-
"mtime": 1773847807128.4294,
|
|
2362
|
-
"size": 1414,
|
|
2363
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2364
|
-
},
|
|
2365
|
-
"test-projects/laravel-app/app/Http/Controllers/Api/PostController.php": {
|
|
2366
|
-
"path": "test-projects/laravel-app/app/Http/Controllers/Api/PostController.php",
|
|
2367
|
-
"hash": "105dfc4a6f054cd19e4e1b14453c02ac",
|
|
2368
|
-
"mtime": 1773847736086.444,
|
|
2369
|
-
"size": 4713,
|
|
2370
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2371
|
-
},
|
|
2372
|
-
"test-projects/laravel-app/app/Http/Controllers/Controller.php": {
|
|
2373
|
-
"path": "test-projects/laravel-app/app/Http/Controllers/Controller.php",
|
|
2374
|
-
"hash": "42517d7dc7e3d0d3045b06ed842b565e",
|
|
2375
|
-
"mtime": 1773847748755.6199,
|
|
2376
|
-
"size": 299,
|
|
2377
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2378
|
-
},
|
|
2379
|
-
"test-projects/laravel-app/app/Models/Category.php": {
|
|
2380
|
-
"path": "test-projects/laravel-app/app/Models/Category.php",
|
|
2381
|
-
"hash": "8982d52ddaad742bd03abfe7ee89cf5c",
|
|
2382
|
-
"mtime": 1773847700804.955,
|
|
2383
|
-
"size": 614,
|
|
2384
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2385
|
-
},
|
|
2386
|
-
"test-projects/laravel-app/app/Models/Comment.php": {
|
|
2387
|
-
"path": "test-projects/laravel-app/app/Models/Comment.php",
|
|
2388
|
-
"hash": "9efa05310b8bc1ca407c4db0aaf191f5",
|
|
2389
|
-
"mtime": 1773847664829.4568,
|
|
2390
|
-
"size": 1009,
|
|
2391
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2392
|
-
},
|
|
2393
|
-
"test-projects/laravel-app/app/Models/Post.php": {
|
|
2394
|
-
"path": "test-projects/laravel-app/app/Models/Post.php",
|
|
2395
|
-
"hash": "235a49b0fb8acb6d27ad0a76f9e67e46",
|
|
2396
|
-
"mtime": 1773847648272.2275,
|
|
2397
|
-
"size": 2170,
|
|
2398
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2399
|
-
},
|
|
2400
|
-
"test-projects/laravel-app/app/Models/User.php": {
|
|
2401
|
-
"path": "test-projects/laravel-app/app/Models/User.php",
|
|
2402
|
-
"hash": "20cc08b187ba186031da18582a03c9a9",
|
|
2403
|
-
"mtime": 1773847685326.7407,
|
|
2404
|
-
"size": 1703,
|
|
2405
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2406
|
-
},
|
|
2407
|
-
"test-projects/laravel-app/bootstrap/app.php": {
|
|
2408
|
-
"path": "test-projects/laravel-app/bootstrap/app.php",
|
|
2409
|
-
"hash": "9ce9c023ef044aa0246244f18202bd9e",
|
|
2410
|
-
"mtime": 1773847620203.8389,
|
|
2411
|
-
"size": 824,
|
|
2412
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2413
|
-
},
|
|
2414
|
-
"test-projects/laravel-app/composer.json": {
|
|
2415
|
-
"path": "test-projects/laravel-app/composer.json",
|
|
2416
|
-
"hash": "1fd162ecf419a1aa7a24e660429335ee",
|
|
2417
|
-
"mtime": 1773847763470.8237,
|
|
2418
|
-
"size": 885,
|
|
2419
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2420
|
-
},
|
|
2421
|
-
"test-projects/laravel-app/routes/api.php": {
|
|
2422
|
-
"path": "test-projects/laravel-app/routes/api.php",
|
|
2423
|
-
"hash": "2ce87617f3fee458e3e5fda64a536495",
|
|
2424
|
-
"mtime": 1773847757081.7354,
|
|
2425
|
-
"size": 1557,
|
|
2426
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2427
|
-
},
|
|
2428
|
-
"test-projects/nestjs-backend/ai/ai_context.md": {
|
|
2429
|
-
"path": "test-projects/nestjs-backend/ai/ai_context.md",
|
|
2430
|
-
"hash": "01e94675a8faa5d598f2782c09e3d5ad",
|
|
2431
|
-
"mtime": 1773854807532.8474,
|
|
2432
|
-
"size": 1892,
|
|
2433
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2434
|
-
},
|
|
2435
|
-
"test-projects/nestjs-backend/ai/ai_rules.md": {
|
|
2436
|
-
"path": "test-projects/nestjs-backend/ai/ai_rules.md",
|
|
2437
|
-
"hash": "0056c2b3f1d212bd870734924f577d09",
|
|
2438
|
-
"mtime": 1773854807531.8474,
|
|
2439
|
-
"size": 972,
|
|
2440
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2441
|
-
},
|
|
2442
|
-
"test-projects/nestjs-backend/ai/architecture.md": {
|
|
2443
|
-
"path": "test-projects/nestjs-backend/ai/architecture.md",
|
|
2444
|
-
"hash": "b763c79531f89caf3a6731d8c6b4f157",
|
|
2445
|
-
"mtime": 1773854807525.8474,
|
|
2446
|
-
"size": 787,
|
|
2447
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2448
|
-
},
|
|
2449
|
-
"test-projects/nestjs-backend/ai/cache.json": {
|
|
2450
|
-
"path": "test-projects/nestjs-backend/ai/cache.json",
|
|
2451
|
-
"hash": "26c8ef59478d363a106dfd15b861e043",
|
|
2452
|
-
"mtime": 1773854929731.0337,
|
|
2453
|
-
"size": 4308,
|
|
2454
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2455
|
-
},
|
|
2456
|
-
"test-projects/nestjs-backend/ai/context/features/src.json": {
|
|
2457
|
-
"path": "test-projects/nestjs-backend/ai/context/features/src.json",
|
|
2458
|
-
"hash": "e62d7f714439c64f0a0051436687b023",
|
|
2459
|
-
"mtime": 1773854807614.8489,
|
|
2460
|
-
"size": 558,
|
|
2461
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2462
|
-
},
|
|
2463
|
-
"test-projects/nestjs-backend/ai/context/flows/auth..json": {
|
|
2464
|
-
"path": "test-projects/nestjs-backend/ai/context/flows/auth..json",
|
|
2465
|
-
"hash": "064519d0be7978f42c408cf2f99edaf9",
|
|
2466
|
-
"mtime": 1773854929731.0337,
|
|
2467
|
-
"size": 182,
|
|
2468
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2469
|
-
},
|
|
2470
|
-
"test-projects/nestjs-backend/ai/context/flows/auth.controller.json": {
|
|
2471
|
-
"path": "test-projects/nestjs-backend/ai/context/flows/auth.controller.json",
|
|
2472
|
-
"hash": "a61ee04c482158f50919e84978222248",
|
|
2473
|
-
"mtime": 1773854929731.0337,
|
|
2474
|
-
"size": 248,
|
|
2475
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2476
|
-
},
|
|
2477
|
-
"test-projects/nestjs-backend/ai/context/flows/auth.json": {
|
|
2478
|
-
"path": "test-projects/nestjs-backend/ai/context/flows/auth.json",
|
|
2479
|
-
"hash": "064519d0be7978f42c408cf2f99edaf9",
|
|
2480
|
-
"mtime": 1773854807615.8489,
|
|
2481
|
-
"size": 182,
|
|
2482
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2483
|
-
},
|
|
2484
|
-
"test-projects/nestjs-backend/ai/context/flows/users..json": {
|
|
2485
|
-
"path": "test-projects/nestjs-backend/ai/context/flows/users..json",
|
|
2486
|
-
"hash": "743cdda74793f8b1d4fac2656267c24b",
|
|
2487
|
-
"mtime": 1773854929731.0337,
|
|
2488
|
-
"size": 189,
|
|
2489
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2490
|
-
},
|
|
2491
|
-
"test-projects/nestjs-backend/ai/context/flows/users.controller.json": {
|
|
2492
|
-
"path": "test-projects/nestjs-backend/ai/context/flows/users.controller.json",
|
|
2493
|
-
"hash": "a797f6c268b0619dc79a49e34ed9dc0f",
|
|
2494
|
-
"mtime": 1773854929731.0337,
|
|
2495
|
-
"size": 255,
|
|
2496
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2497
|
-
},
|
|
2498
|
-
"test-projects/nestjs-backend/ai/context/flows/users.json": {
|
|
2499
|
-
"path": "test-projects/nestjs-backend/ai/context/flows/users.json",
|
|
2500
|
-
"hash": "743cdda74793f8b1d4fac2656267c24b",
|
|
2501
|
-
"mtime": 1773854807615.8489,
|
|
2502
|
-
"size": 189,
|
|
2503
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2504
|
-
},
|
|
2505
|
-
"test-projects/nestjs-backend/ai/conventions.md": {
|
|
2506
|
-
"path": "test-projects/nestjs-backend/ai/conventions.md",
|
|
2507
|
-
"hash": "9924468f87cfd5d2328fa48737aac075",
|
|
2508
|
-
"mtime": 1773854807528.8474,
|
|
2509
|
-
"size": 824,
|
|
2510
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2511
|
-
},
|
|
2512
|
-
"test-projects/nestjs-backend/ai/dependencies.json": {
|
|
2513
|
-
"path": "test-projects/nestjs-backend/ai/dependencies.json",
|
|
2514
|
-
"hash": "02d90ce28c41920d2591c9a29255813d",
|
|
2515
|
-
"mtime": 1773854929731.0337,
|
|
2516
|
-
"size": 7521,
|
|
2517
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2518
|
-
},
|
|
2519
|
-
"test-projects/nestjs-backend/ai/entrypoints.md": {
|
|
2520
|
-
"path": "test-projects/nestjs-backend/ai/entrypoints.md",
|
|
2521
|
-
"hash": "31bc6c36186b7db7764086f994a34fcf",
|
|
2522
|
-
"mtime": 1773854807527.8474,
|
|
2523
|
-
"size": 383,
|
|
2524
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2525
|
-
},
|
|
2526
|
-
"test-projects/nestjs-backend/ai/files.json": {
|
|
2527
|
-
"path": "test-projects/nestjs-backend/ai/files.json",
|
|
2528
|
-
"hash": "6fc0e5f9f769544e4d28bbd29197b2f5",
|
|
2529
|
-
"mtime": 1773854929731.0337,
|
|
2530
|
-
"size": 1499,
|
|
2531
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2532
|
-
},
|
|
2533
|
-
"test-projects/nestjs-backend/ai/graph/module-graph.json": {
|
|
2534
|
-
"path": "test-projects/nestjs-backend/ai/graph/module-graph.json",
|
|
2535
|
-
"hash": "0e4d69958d08b9aaf402549b2cfe2b3a",
|
|
2536
|
-
"mtime": 1773854807603.8489,
|
|
2537
|
-
"size": 582,
|
|
2538
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2539
|
-
},
|
|
2540
|
-
"test-projects/nestjs-backend/ai/graph/symbol-graph.json": {
|
|
2541
|
-
"path": "test-projects/nestjs-backend/ai/graph/symbol-graph.json",
|
|
2542
|
-
"hash": "0b661a46325dfe546710ef24eab5bd4f",
|
|
2543
|
-
"mtime": 1773854929731.0337,
|
|
2544
|
-
"size": 15358,
|
|
2545
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2546
|
-
},
|
|
2547
|
-
"test-projects/nestjs-backend/ai/graph/symbol-references.json": {
|
|
2548
|
-
"path": "test-projects/nestjs-backend/ai/graph/symbol-references.json",
|
|
2549
|
-
"hash": "afadcb8711e7e5322742b99da7ec3e50",
|
|
2550
|
-
"mtime": 1773854929731.0337,
|
|
2551
|
-
"size": 367,
|
|
2552
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2553
|
-
},
|
|
2554
|
-
"test-projects/nestjs-backend/ai/index-state.json": {
|
|
2555
|
-
"path": "test-projects/nestjs-backend/ai/index-state.json",
|
|
2556
|
-
"hash": "0a1cb9edc3311943232bc10889d43ba0",
|
|
2557
|
-
"mtime": 1773854832725.3047,
|
|
2558
|
-
"size": 8182,
|
|
2559
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2560
|
-
},
|
|
2561
|
-
"test-projects/nestjs-backend/ai/modules.json": {
|
|
2562
|
-
"path": "test-projects/nestjs-backend/ai/modules.json",
|
|
2563
|
-
"hash": "11513775b7ba2c22e59f9bd915ea33fa",
|
|
2564
|
-
"mtime": 1773854832659.3035,
|
|
2565
|
-
"size": 448,
|
|
2566
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2567
|
-
},
|
|
2568
|
-
"test-projects/nestjs-backend/ai/project.json": {
|
|
2569
|
-
"path": "test-projects/nestjs-backend/ai/project.json",
|
|
2570
|
-
"hash": "c6b3d408145afd2fd35063120fd6d922",
|
|
2571
|
-
"mtime": 1773854929731.0337,
|
|
2572
|
-
"size": 281,
|
|
2573
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2574
|
-
},
|
|
2575
|
-
"test-projects/nestjs-backend/ai/repo-map.json": {
|
|
2576
|
-
"path": "test-projects/nestjs-backend/ai/repo-map.json",
|
|
2577
|
-
"hash": "3b95375593b57740d1511afecbc9ec06",
|
|
2578
|
-
"mtime": 1773854929731.0337,
|
|
2579
|
-
"size": 7729,
|
|
2580
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2581
|
-
},
|
|
2582
|
-
"test-projects/nestjs-backend/ai/repo_map.json": {
|
|
2583
|
-
"path": "test-projects/nestjs-backend/ai/repo_map.json",
|
|
2584
|
-
"hash": "5286055a82f31ff2a9e6091b4299928b",
|
|
2585
|
-
"mtime": 1773854929731.0337,
|
|
2586
|
-
"size": 3168,
|
|
2587
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2588
|
-
},
|
|
2589
|
-
"test-projects/nestjs-backend/ai/repo_map.md": {
|
|
2590
|
-
"path": "test-projects/nestjs-backend/ai/repo_map.md",
|
|
2591
|
-
"hash": "d3b93db63ba7b92c1bcba98b7682b487",
|
|
2592
|
-
"mtime": 1773854807523.8474,
|
|
2593
|
-
"size": 868,
|
|
2594
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2595
|
-
},
|
|
2596
|
-
"test-projects/nestjs-backend/ai/schema.json": {
|
|
2597
|
-
"path": "test-projects/nestjs-backend/ai/schema.json",
|
|
2598
|
-
"hash": "f39eaae38116c54da7659e845e463132",
|
|
2599
|
-
"mtime": 1773854929731.0337,
|
|
2600
|
-
"size": 102,
|
|
2601
|
-
"indexedAt": "2026-03-18T19:21:24.576Z"
|
|
2602
|
-
},
|
|
2603
|
-
"test-projects/nestjs-backend/ai/summary.md": {
|
|
2604
|
-
"path": "test-projects/nestjs-backend/ai/summary.md",
|
|
2605
|
-
"hash": "c97180815314cb04e69623f705703641",
|
|
2606
|
-
"mtime": 1773854807524.8474,
|
|
2607
|
-
"size": 167,
|
|
2608
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2609
|
-
},
|
|
2610
|
-
"test-projects/nestjs-backend/ai/symbols.json": {
|
|
2611
|
-
"path": "test-projects/nestjs-backend/ai/symbols.json",
|
|
2612
|
-
"hash": "86f0962de99584aca04f8773850703ba",
|
|
2613
|
-
"mtime": 1773854807529.8474,
|
|
2614
|
-
"size": 13180,
|
|
2615
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2616
|
-
},
|
|
2617
|
-
"test-projects/nestjs-backend/ai/tech_stack.md": {
|
|
2618
|
-
"path": "test-projects/nestjs-backend/ai/tech_stack.md",
|
|
2619
|
-
"hash": "a84eb022eb8e5959365181abc81e5f9d",
|
|
2620
|
-
"mtime": 1773854807526.8474,
|
|
2621
|
-
"size": 410,
|
|
2622
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2623
|
-
},
|
|
2624
|
-
"test-projects/nestjs-backend/ai/tools.json": {
|
|
2625
|
-
"path": "test-projects/nestjs-backend/ai/tools.json",
|
|
2626
|
-
"hash": "b1356e52c74e9b3b6a0d397b790a4968",
|
|
2627
|
-
"mtime": 1773854807534.8474,
|
|
2628
|
-
"size": 138,
|
|
2629
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2630
|
-
},
|
|
2631
|
-
"test-projects/nestjs-backend/package.json": {
|
|
2632
|
-
"path": "test-projects/nestjs-backend/package.json",
|
|
2633
|
-
"hash": "54188023d3f4898db4ed5ecb0963ad7c",
|
|
2634
|
-
"mtime": 1773776957019.264,
|
|
2635
|
-
"size": 504,
|
|
2636
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2637
|
-
},
|
|
2638
|
-
"test-projects/nestjs-backend/src/app.module.ts": {
|
|
2639
|
-
"path": "test-projects/nestjs-backend/src/app.module.ts",
|
|
2640
|
-
"hash": "340f55f1f816bff231e0d7cceb640a6a",
|
|
2641
|
-
"mtime": 1773777098469.8062,
|
|
2642
|
-
"size": 220,
|
|
2643
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2644
|
-
},
|
|
2645
|
-
"test-projects/nestjs-backend/src/auth/auth.controller.ts": {
|
|
2646
|
-
"path": "test-projects/nestjs-backend/src/auth/auth.controller.ts",
|
|
2647
|
-
"hash": "042f9828f736d2cd17f81a9f38e92902",
|
|
2648
|
-
"mtime": 1773776992110.6333,
|
|
2649
|
-
"size": 724,
|
|
2650
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2651
|
-
},
|
|
2652
|
-
"test-projects/nestjs-backend/src/auth/auth.module.ts": {
|
|
2653
|
-
"path": "test-projects/nestjs-backend/src/auth/auth.module.ts",
|
|
2654
|
-
"hash": "d77f0da16ab8259e61017e585aa84ba1",
|
|
2655
|
-
"mtime": 1773776981771.5234,
|
|
2656
|
-
"size": 337,
|
|
2657
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2658
|
-
},
|
|
2659
|
-
"test-projects/nestjs-backend/src/auth/auth.service.ts": {
|
|
2660
|
-
"path": "test-projects/nestjs-backend/src/auth/auth.service.ts",
|
|
2661
|
-
"hash": "82d1c6ef4273438c42f5ec7a6d11af7e",
|
|
2662
|
-
"mtime": 1773777003294.753,
|
|
2663
|
-
"size": 781,
|
|
2664
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2665
|
-
},
|
|
2666
|
-
"test-projects/nestjs-backend/src/auth/dto/login.dto.ts": {
|
|
2667
|
-
"path": "test-projects/nestjs-backend/src/auth/dto/login.dto.ts",
|
|
2668
|
-
"hash": "ea30ef087078e1172bffc80a370ebff3",
|
|
2669
|
-
"mtime": 1773777024191.979,
|
|
2670
|
-
"size": 63,
|
|
2671
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2672
|
-
},
|
|
2673
|
-
"test-projects/nestjs-backend/src/auth/strategies/jwt.strategy.ts": {
|
|
2674
|
-
"path": "test-projects/nestjs-backend/src/auth/strategies/jwt.strategy.ts",
|
|
2675
|
-
"hash": "0f76815e6d72c4b1d3324713b6c09853",
|
|
2676
|
-
"mtime": 1773777033163.077,
|
|
2677
|
-
"size": 512,
|
|
2678
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2679
|
-
},
|
|
2680
|
-
"test-projects/nestjs-backend/src/main.ts": {
|
|
2681
|
-
"path": "test-projects/nestjs-backend/src/main.ts",
|
|
2682
|
-
"hash": "37685b56941c1e865638bae7fd76d81c",
|
|
2683
|
-
"mtime": 1773777107555.9097,
|
|
2684
|
-
"size": 275,
|
|
2685
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2686
|
-
},
|
|
2687
|
-
"test-projects/nestjs-backend/src/users/users.controller.ts": {
|
|
2688
|
-
"path": "test-projects/nestjs-backend/src/users/users.controller.ts",
|
|
2689
|
-
"hash": "41b4cfa3872766fb0578a901abd294fa",
|
|
2690
|
-
"mtime": 1773777065483.4343,
|
|
2691
|
-
"size": 749,
|
|
2692
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2693
|
-
},
|
|
2694
|
-
"test-projects/nestjs-backend/src/users/users.module.ts": {
|
|
2695
|
-
"path": "test-projects/nestjs-backend/src/users/users.module.ts",
|
|
2696
|
-
"hash": "f3eb2901994d3dcf77b5bb6766f937aa",
|
|
2697
|
-
"mtime": 1773777054886.3164,
|
|
2698
|
-
"size": 275,
|
|
2699
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2700
|
-
},
|
|
2701
|
-
"test-projects/nestjs-backend/src/users/users.service.ts": {
|
|
2702
|
-
"path": "test-projects/nestjs-backend/src/users/users.service.ts",
|
|
2703
|
-
"hash": "34c037f935826f26a9f72d53774a3223",
|
|
2704
|
-
"mtime": 1773777078186.5767,
|
|
2705
|
-
"size": 1068,
|
|
2706
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2707
|
-
},
|
|
2708
|
-
"test-projects/nestjs-backend/tsconfig.json": {
|
|
2709
|
-
"path": "test-projects/nestjs-backend/tsconfig.json",
|
|
2710
|
-
"hash": "f0902e207501d022c8048ac457251ecc",
|
|
2711
|
-
"mtime": 1773777131755.1877,
|
|
2712
|
-
"size": 546,
|
|
2713
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2714
|
-
},
|
|
2715
|
-
"test-projects/python-cli/__init__.py": {
|
|
2716
|
-
"path": "test-projects/python-cli/__init__.py",
|
|
2717
|
-
"hash": "b8e919564af9b6e38c79d449bb77a7b5",
|
|
2718
|
-
"mtime": 1773777152897.4336,
|
|
2719
|
-
"size": 27,
|
|
2720
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2721
|
-
},
|
|
2722
|
-
"test-projects/python-cli/ai/ai_context.md": {
|
|
2723
|
-
"path": "test-projects/python-cli/ai/ai_context.md",
|
|
2724
|
-
"hash": "ed58b5050b4b428a2dc5ddde0d8f0784",
|
|
2725
|
-
"mtime": 1773796492511.405,
|
|
2726
|
-
"size": 1568,
|
|
2727
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2728
|
-
},
|
|
2729
|
-
"test-projects/python-cli/ai/ai_rules.md": {
|
|
2730
|
-
"path": "test-projects/python-cli/ai/ai_rules.md",
|
|
2731
|
-
"hash": "497d2aaa36fc25e1a1d43ad93a5e3631",
|
|
2732
|
-
"mtime": 1773796492510.405,
|
|
2733
|
-
"size": 809,
|
|
2734
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2735
|
-
},
|
|
2736
|
-
"test-projects/python-cli/ai/architecture.md": {
|
|
2737
|
-
"path": "test-projects/python-cli/ai/architecture.md",
|
|
2738
|
-
"hash": "96f6c50d3d91f5ac670473220a4aa87e",
|
|
2739
|
-
"mtime": 1773796492506.4048,
|
|
2740
|
-
"size": 887,
|
|
2741
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2742
|
-
},
|
|
2743
|
-
"test-projects/python-cli/ai/cache.json": {
|
|
2744
|
-
"path": "test-projects/python-cli/ai/cache.json",
|
|
2745
|
-
"hash": "fa069f54b96796535e6acc9b3238696b",
|
|
2746
|
-
"mtime": 1773854929732.0337,
|
|
2747
|
-
"size": 1593,
|
|
2748
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2749
|
-
},
|
|
2750
|
-
"test-projects/python-cli/ai/context/features/cli.json": {
|
|
2751
|
-
"path": "test-projects/python-cli/ai/context/features/cli.json",
|
|
2752
|
-
"hash": "db233eedf90a4de1cbb42f260b4ec159",
|
|
2753
|
-
"mtime": 1773796517557.7957,
|
|
2754
|
-
"size": 285,
|
|
2755
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2756
|
-
},
|
|
2757
|
-
"test-projects/python-cli/ai/context/flows/add_.json": {
|
|
2758
|
-
"path": "test-projects/python-cli/ai/context/flows/add_.json",
|
|
2759
|
-
"hash": "8fd1b0ccd628661384b1982917527e10",
|
|
2760
|
-
"mtime": 1773796517557.7957,
|
|
2761
|
-
"size": 131,
|
|
2762
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2763
|
-
},
|
|
2764
|
-
"test-projects/python-cli/ai/context/flows/list_.json": {
|
|
2765
|
-
"path": "test-projects/python-cli/ai/context/flows/list_.json",
|
|
2766
|
-
"hash": "2307454625174d3b69e727acf6e10261",
|
|
2767
|
-
"mtime": 1773796517557.7957,
|
|
2768
|
-
"size": 134,
|
|
2769
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2770
|
-
},
|
|
2771
|
-
"test-projects/python-cli/ai/context/flows/remove_.json": {
|
|
2772
|
-
"path": "test-projects/python-cli/ai/context/flows/remove_.json",
|
|
2773
|
-
"hash": "12bece7cdabce999d2430fee0b316b3b",
|
|
2774
|
-
"mtime": 1773796517557.7957,
|
|
2775
|
-
"size": 140,
|
|
2776
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2777
|
-
},
|
|
2778
|
-
"test-projects/python-cli/ai/conventions.md": {
|
|
2779
|
-
"path": "test-projects/python-cli/ai/conventions.md",
|
|
2780
|
-
"hash": "9c37d280c1cab6899447a58aa03b0f44",
|
|
2781
|
-
"mtime": 1773796492508.4048,
|
|
2782
|
-
"size": 841,
|
|
2783
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2784
|
-
},
|
|
2785
|
-
"test-projects/python-cli/ai/dependencies.json": {
|
|
2786
|
-
"path": "test-projects/python-cli/ai/dependencies.json",
|
|
2787
|
-
"hash": "b1333fe58b2dddfa6ecb8c53292f442f",
|
|
2788
|
-
"mtime": 1773796492509.405,
|
|
2789
|
-
"size": 1239,
|
|
2790
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2791
|
-
},
|
|
2792
|
-
"test-projects/python-cli/ai/entrypoints.md": {
|
|
2793
|
-
"path": "test-projects/python-cli/ai/entrypoints.md",
|
|
2794
|
-
"hash": "34c8965a66697d9f1d428bb0904f5d8d",
|
|
2795
|
-
"mtime": 1773796492507.4048,
|
|
2796
|
-
"size": 43,
|
|
2797
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2798
|
-
},
|
|
2799
|
-
"test-projects/python-cli/ai/files.json": {
|
|
2800
|
-
"path": "test-projects/python-cli/ai/files.json",
|
|
2801
|
-
"hash": "c82d9d1331bd255fc43be845aa368725",
|
|
2802
|
-
"mtime": 1773854929732.0337,
|
|
2803
|
-
"size": 990,
|
|
2804
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2805
|
-
},
|
|
2806
|
-
"test-projects/python-cli/ai/graph/knowledge-graph.json": {
|
|
2807
|
-
"path": "test-projects/python-cli/ai/graph/knowledge-graph.json",
|
|
2808
|
-
"hash": "9641492007f1599955e6db2b90705b53",
|
|
2809
|
-
"mtime": 1773796549477.293,
|
|
2810
|
-
"size": 1457,
|
|
2811
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2812
|
-
},
|
|
2813
|
-
"test-projects/python-cli/ai/graph/module-graph.json": {
|
|
2814
|
-
"path": "test-projects/python-cli/ai/graph/module-graph.json",
|
|
2815
|
-
"hash": "54539a6536c57542d107b5e587852d21",
|
|
2816
|
-
"mtime": 1773796517549.7954,
|
|
2817
|
-
"size": 501,
|
|
2818
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2819
|
-
},
|
|
2820
|
-
"test-projects/python-cli/ai/graph/symbol-graph.json": {
|
|
2821
|
-
"path": "test-projects/python-cli/ai/graph/symbol-graph.json",
|
|
2822
|
-
"hash": "d142e1a1a55b23200fe02b7aee7472df",
|
|
2823
|
-
"mtime": 1773796517553.7954,
|
|
2824
|
-
"size": 9226,
|
|
2825
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2826
|
-
},
|
|
2827
|
-
"test-projects/python-cli/ai/graph/symbol-references.json": {
|
|
2828
|
-
"path": "test-projects/python-cli/ai/graph/symbol-references.json",
|
|
2829
|
-
"hash": "de6f7fd1e3fb7cc19d8ec0efd2ac8d57",
|
|
2830
|
-
"mtime": 1773796517554.7957,
|
|
2831
|
-
"size": 329,
|
|
2832
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2833
|
-
},
|
|
2834
|
-
"test-projects/python-cli/ai/index-state.json": {
|
|
2835
|
-
"path": "test-projects/python-cli/ai/index-state.json",
|
|
2836
|
-
"hash": "853666bdf0060524fb4bebdc2afae5b0",
|
|
2837
|
-
"mtime": 1773854832868.3074,
|
|
2838
|
-
"size": 8094,
|
|
2839
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2840
|
-
},
|
|
2841
|
-
"test-projects/python-cli/ai/modules.json": {
|
|
2842
|
-
"path": "test-projects/python-cli/ai/modules.json",
|
|
2843
|
-
"hash": "366ccb4be2fcb4b7098548e68cee7a06",
|
|
2844
|
-
"mtime": 1773854832804.3062,
|
|
2845
|
-
"size": 371,
|
|
2846
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2847
|
-
},
|
|
2848
|
-
"test-projects/python-cli/ai/project.json": {
|
|
2849
|
-
"path": "test-projects/python-cli/ai/project.json",
|
|
2850
|
-
"hash": "0511f31fdb8944b75813100c96738f88",
|
|
2851
|
-
"mtime": 1773796492513.405,
|
|
2852
|
-
"size": 239,
|
|
2853
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2854
|
-
},
|
|
2855
|
-
"test-projects/python-cli/ai/repo-map.json": {
|
|
2856
|
-
"path": "test-projects/python-cli/ai/repo-map.json",
|
|
2857
|
-
"hash": "d69f73250cea151ebef88e78f50ae286",
|
|
2858
|
-
"mtime": 1773854929732.0337,
|
|
2859
|
-
"size": 1959,
|
|
2860
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2861
|
-
},
|
|
2862
|
-
"test-projects/python-cli/ai/repo_map.json": {
|
|
2863
|
-
"path": "test-projects/python-cli/ai/repo_map.json",
|
|
2864
|
-
"hash": "aa9b5cffb4fea856e640d50ae2f843be",
|
|
2865
|
-
"mtime": 1773796492505.4048,
|
|
2866
|
-
"size": 1959,
|
|
2867
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2868
|
-
},
|
|
2869
|
-
"test-projects/python-cli/ai/repo_map.md": {
|
|
2870
|
-
"path": "test-projects/python-cli/ai/repo_map.md",
|
|
2871
|
-
"hash": "ef0d7f67520571d71a944a89aed09b85",
|
|
2872
|
-
"mtime": 1773796492504.4048,
|
|
2873
|
-
"size": 542,
|
|
2874
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2875
|
-
},
|
|
2876
|
-
"test-projects/python-cli/ai/schema.json": {
|
|
2877
|
-
"path": "test-projects/python-cli/ai/schema.json",
|
|
2878
|
-
"hash": "5f906385bbf15f468465b9b3b4e4cabb",
|
|
2879
|
-
"mtime": 1773796492512.405,
|
|
2880
|
-
"size": 102,
|
|
2881
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2882
|
-
},
|
|
2883
|
-
"test-projects/python-cli/ai/summary.md": {
|
|
2884
|
-
"path": "test-projects/python-cli/ai/summary.md",
|
|
2885
|
-
"hash": "ce45f19fa9b88934464c679faa8bb5e1",
|
|
2886
|
-
"mtime": 1773796492505.4048,
|
|
2887
|
-
"size": 158,
|
|
2888
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2889
|
-
},
|
|
2890
|
-
"test-projects/python-cli/ai/symbols.json": {
|
|
2891
|
-
"path": "test-projects/python-cli/ai/symbols.json",
|
|
2892
|
-
"hash": "cd04c4c359d5fdffb6f49d080ee81749",
|
|
2893
|
-
"mtime": 1773796492509.405,
|
|
2894
|
-
"size": 11325,
|
|
2895
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2896
|
-
},
|
|
2897
|
-
"test-projects/python-cli/ai/tech_stack.md": {
|
|
2898
|
-
"path": "test-projects/python-cli/ai/tech_stack.md",
|
|
2899
|
-
"hash": "549e166f1ac035b5c54f522a1962321e",
|
|
2900
|
-
"mtime": 1773796492507.4048,
|
|
2901
|
-
"size": 321,
|
|
2902
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2903
|
-
},
|
|
2904
|
-
"test-projects/python-cli/ai/tools.json": {
|
|
2905
|
-
"path": "test-projects/python-cli/ai/tools.json",
|
|
2906
|
-
"hash": "b1356e52c74e9b3b6a0d397b790a4968",
|
|
2907
|
-
"mtime": 1773796492513.405,
|
|
2908
|
-
"size": 138,
|
|
2909
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2910
|
-
},
|
|
2911
|
-
"test-projects/python-cli/cli/__init__.py": {
|
|
2912
|
-
"path": "test-projects/python-cli/cli/__init__.py",
|
|
2913
|
-
"hash": "a3b6d5054e9628836636cf4d6927e33a",
|
|
2914
|
-
"mtime": 1773777227193.3157,
|
|
2915
|
-
"size": 56,
|
|
2916
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2917
|
-
},
|
|
2918
|
-
"test-projects/python-cli/cli/add_command.py": {
|
|
2919
|
-
"path": "test-projects/python-cli/cli/add_command.py",
|
|
2920
|
-
"hash": "d9b48d790c714aebf7b29db0f8aa3464",
|
|
2921
|
-
"mtime": 1773777196493.9478,
|
|
2922
|
-
"size": 218,
|
|
2923
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2924
|
-
},
|
|
2925
|
-
"test-projects/python-cli/cli/list_command.py": {
|
|
2926
|
-
"path": "test-projects/python-cli/cli/list_command.py",
|
|
2927
|
-
"hash": "fd7ca8830013f013e16afd191e6c5c75",
|
|
2928
|
-
"mtime": 1773777202889.024,
|
|
2929
|
-
"size": 247,
|
|
2930
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2931
|
-
},
|
|
2932
|
-
"test-projects/python-cli/cli/remove_command.py": {
|
|
2933
|
-
"path": "test-projects/python-cli/cli/remove_command.py",
|
|
2934
|
-
"hash": "1209f465970ad86ef87ed6c0409cef50",
|
|
2935
|
-
"mtime": 1773777208836.0952,
|
|
2936
|
-
"size": 167,
|
|
2937
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2938
|
-
},
|
|
2939
|
-
"test-projects/python-cli/main.py": {
|
|
2940
|
-
"path": "test-projects/python-cli/main.py",
|
|
2941
|
-
"hash": "8e7d98c3b644a2b27f760c017100e886",
|
|
2942
|
-
"mtime": 1773777186036.8235,
|
|
2943
|
-
"size": 1117,
|
|
2944
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2945
|
-
},
|
|
2946
|
-
"test-projects/python-cli/models/__init__.py": {
|
|
2947
|
-
"path": "test-projects/python-cli/models/__init__.py",
|
|
2948
|
-
"hash": "a99db8f336d72b5c5700545705baf7de",
|
|
2949
|
-
"mtime": 1773777266541.7935,
|
|
2950
|
-
"size": 67,
|
|
2951
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2952
|
-
},
|
|
2953
|
-
"test-projects/python-cli/models/task.py": {
|
|
2954
|
-
"path": "test-projects/python-cli/models/task.py",
|
|
2955
|
-
"hash": "95274739cbb686a2f8c661836623c692",
|
|
2956
|
-
"mtime": 1773777234068.3987,
|
|
2957
|
-
"size": 544,
|
|
2958
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2959
|
-
},
|
|
2960
|
-
"test-projects/python-cli/models/task_repository.py": {
|
|
2961
|
-
"path": "test-projects/python-cli/models/task_repository.py",
|
|
2962
|
-
"hash": "68215671f3b74e5dbd6fdc06671b08b1",
|
|
2963
|
-
"mtime": 1773777261367.7302,
|
|
2964
|
-
"size": 1318,
|
|
2965
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2966
|
-
},
|
|
2967
|
-
"test-projects/rails-app/README.md": {
|
|
2968
|
-
"path": "test-projects/rails-app/README.md",
|
|
2969
|
-
"hash": "3ef44ec9e999fbbf4cc8576bd9996e24",
|
|
2970
|
-
"mtime": 1773853678950.926,
|
|
2971
|
-
"size": 3820,
|
|
2972
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2973
|
-
},
|
|
2974
|
-
"test-projects/rails-app/ai/ai_context.md": {
|
|
2975
|
-
"path": "test-projects/rails-app/ai/ai_context.md",
|
|
2976
|
-
"hash": "2b88de40fafdef3feb62eb1bdc9d1450",
|
|
2977
|
-
"mtime": 1773854723408.2922,
|
|
2978
|
-
"size": 1504,
|
|
2979
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2980
|
-
},
|
|
2981
|
-
"test-projects/rails-app/ai/ai_rules.md": {
|
|
2982
|
-
"path": "test-projects/rails-app/ai/ai_rules.md",
|
|
2983
|
-
"hash": "b34350fb34dabf766cc8425b6a5c32cb",
|
|
2984
|
-
"mtime": 1773854723408.2922,
|
|
2985
|
-
"size": 808,
|
|
2986
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2987
|
-
},
|
|
2988
|
-
"test-projects/rails-app/ai/architecture.md": {
|
|
2989
|
-
"path": "test-projects/rails-app/ai/architecture.md",
|
|
2990
|
-
"hash": "c2692ffcacf44f02742598328eaa2329",
|
|
2991
|
-
"mtime": 1773854723402.2922,
|
|
2992
|
-
"size": 755,
|
|
2993
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
2994
|
-
},
|
|
2995
|
-
"test-projects/rails-app/ai/cache.json": {
|
|
2996
|
-
"path": "test-projects/rails-app/ai/cache.json",
|
|
2997
|
-
"hash": "e4d6d1eda920d24846bd61736d855d14",
|
|
2998
|
-
"mtime": 1773854929732.0337,
|
|
2999
|
-
"size": 4733,
|
|
3000
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
3001
|
-
},
|
|
3002
|
-
"test-projects/rails-app/ai/context/features/app.json": {
|
|
3003
|
-
"path": "test-projects/rails-app/ai/context/features/app.json",
|
|
3004
|
-
"hash": "3bf2bb6ca87e997141474e32fa2986fa",
|
|
3005
|
-
"mtime": 1773854723495.294,
|
|
3006
|
-
"size": 709,
|
|
3007
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
3008
|
-
},
|
|
3009
|
-
"test-projects/rails-app/ai/context/features/config.json": {
|
|
3010
|
-
"path": "test-projects/rails-app/ai/context/features/config.json",
|
|
3011
|
-
"hash": "db2ab595087aba40287ee15c6d79552c",
|
|
3012
|
-
"mtime": 1773854723495.294,
|
|
3013
|
-
"size": 210,
|
|
3014
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
3015
|
-
},
|
|
3016
|
-
"test-projects/rails-app/ai/context/flows/application.json": {
|
|
3017
|
-
"path": "test-projects/rails-app/ai/context/flows/application.json",
|
|
3018
|
-
"hash": "b796ad3fa8bca08e15dcbade1439944c",
|
|
3019
|
-
"mtime": 1773854723495.294,
|
|
3020
|
-
"size": 185,
|
|
3021
|
-
"indexedAt": "2026-03-18T19:21:24.577Z"
|
|
3022
|
-
},
|
|
3023
|
-
"test-projects/rails-app/ai/context/flows/application_.json": {
|
|
3024
|
-
"path": "test-projects/rails-app/ai/context/flows/application_.json",
|
|
3025
|
-
"hash": "b796ad3fa8bca08e15dcbade1439944c",
|
|
3026
|
-
"mtime": 1773854929732.0337,
|
|
3027
|
-
"size": 185,
|
|
3028
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3029
|
-
},
|
|
3030
|
-
"test-projects/rails-app/ai/context/flows/comments.json": {
|
|
3031
|
-
"path": "test-projects/rails-app/ai/context/flows/comments.json",
|
|
3032
|
-
"hash": "d90ee6034c82ea59410cc3da7471901d",
|
|
3033
|
-
"mtime": 1773854723495.294,
|
|
3034
|
-
"size": 197,
|
|
3035
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3036
|
-
},
|
|
3037
|
-
"test-projects/rails-app/ai/context/flows/comments_.json": {
|
|
3038
|
-
"path": "test-projects/rails-app/ai/context/flows/comments_.json",
|
|
3039
|
-
"hash": "d90ee6034c82ea59410cc3da7471901d",
|
|
3040
|
-
"mtime": 1773854929732.0337,
|
|
3041
|
-
"size": 197,
|
|
3042
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3043
|
-
},
|
|
3044
|
-
"test-projects/rails-app/ai/context/flows/posts.json": {
|
|
3045
|
-
"path": "test-projects/rails-app/ai/context/flows/posts.json",
|
|
3046
|
-
"hash": "a4142ffe2c2908069728bfd86d73d8a3",
|
|
3047
|
-
"mtime": 1773854723495.294,
|
|
3048
|
-
"size": 188,
|
|
3049
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3050
|
-
},
|
|
3051
|
-
"test-projects/rails-app/ai/context/flows/posts_.json": {
|
|
3052
|
-
"path": "test-projects/rails-app/ai/context/flows/posts_.json",
|
|
3053
|
-
"hash": "a4142ffe2c2908069728bfd86d73d8a3",
|
|
3054
|
-
"mtime": 1773854929732.0337,
|
|
3055
|
-
"size": 188,
|
|
3056
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3057
|
-
},
|
|
3058
|
-
"test-projects/rails-app/ai/context/flows/routes.json": {
|
|
3059
|
-
"path": "test-projects/rails-app/ai/context/flows/routes.json",
|
|
3060
|
-
"hash": "c63b4ddeccd3090f084d1e090cdc2cad",
|
|
3061
|
-
"mtime": 1773854723495.294,
|
|
3062
|
-
"size": 129,
|
|
3063
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3064
|
-
},
|
|
3065
|
-
"test-projects/rails-app/ai/context/flows/users.json": {
|
|
3066
|
-
"path": "test-projects/rails-app/ai/context/flows/users.json",
|
|
3067
|
-
"hash": "6ec4411b509c8d1d063bd0228a9fc186",
|
|
3068
|
-
"mtime": 1773854723495.294,
|
|
3069
|
-
"size": 188,
|
|
3070
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3071
|
-
},
|
|
3072
|
-
"test-projects/rails-app/ai/context/flows/users_.json": {
|
|
3073
|
-
"path": "test-projects/rails-app/ai/context/flows/users_.json",
|
|
3074
|
-
"hash": "6ec4411b509c8d1d063bd0228a9fc186",
|
|
3075
|
-
"mtime": 1773854929732.0337,
|
|
3076
|
-
"size": 188,
|
|
3077
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3078
|
-
},
|
|
3079
|
-
"test-projects/rails-app/ai/conventions.md": {
|
|
3080
|
-
"path": "test-projects/rails-app/ai/conventions.md",
|
|
3081
|
-
"hash": "271252881dc9d70018eda35db35449ef",
|
|
3082
|
-
"mtime": 1773854723405.2922,
|
|
3083
|
-
"size": 813,
|
|
3084
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3085
|
-
},
|
|
3086
|
-
"test-projects/rails-app/ai/dependencies.json": {
|
|
3087
|
-
"path": "test-projects/rails-app/ai/dependencies.json",
|
|
3088
|
-
"hash": "038f80a99cbcc45991786b645398758e",
|
|
3089
|
-
"mtime": 1773854723407.2922,
|
|
3090
|
-
"size": 87,
|
|
3091
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3092
|
-
},
|
|
3093
|
-
"test-projects/rails-app/ai/entrypoints.md": {
|
|
3094
|
-
"path": "test-projects/rails-app/ai/entrypoints.md",
|
|
3095
|
-
"hash": "34c8965a66697d9f1d428bb0904f5d8d",
|
|
3096
|
-
"mtime": 1773854723404.2922,
|
|
3097
|
-
"size": 43,
|
|
3098
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3099
|
-
},
|
|
3100
|
-
"test-projects/rails-app/ai/files.json": {
|
|
3101
|
-
"path": "test-projects/rails-app/ai/files.json",
|
|
3102
|
-
"hash": "8b503e51fdc90b73d0c02e481e65ab3f",
|
|
3103
|
-
"mtime": 1773854929732.0337,
|
|
3104
|
-
"size": 4258,
|
|
3105
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3106
|
-
},
|
|
3107
|
-
"test-projects/rails-app/ai/graph/knowledge-graph.json": {
|
|
3108
|
-
"path": "test-projects/rails-app/ai/graph/knowledge-graph.json",
|
|
3109
|
-
"hash": "69c2e2b44738fe82fa46d5c6da082634",
|
|
3110
|
-
"mtime": 1773854929732.0337,
|
|
3111
|
-
"size": 2545,
|
|
3112
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3113
|
-
},
|
|
3114
|
-
"test-projects/rails-app/ai/graph/module-graph.json": {
|
|
3115
|
-
"path": "test-projects/rails-app/ai/graph/module-graph.json",
|
|
3116
|
-
"hash": "1ec6b5cded4704395df625458db3360e",
|
|
3117
|
-
"mtime": 1773854723485.2937,
|
|
3118
|
-
"size": 638,
|
|
3119
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3120
|
-
},
|
|
3121
|
-
"test-projects/rails-app/ai/graph/symbol-graph.json": {
|
|
3122
|
-
"path": "test-projects/rails-app/ai/graph/symbol-graph.json",
|
|
3123
|
-
"hash": "79a11e66d1c9ebdbec716c31b9eb11db",
|
|
3124
|
-
"mtime": 1773854929732.0337,
|
|
3125
|
-
"size": 60,
|
|
3126
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3127
|
-
},
|
|
3128
|
-
"test-projects/rails-app/ai/graph/symbol-references.json": {
|
|
3129
|
-
"path": "test-projects/rails-app/ai/graph/symbol-references.json",
|
|
3130
|
-
"hash": "99914b932bd37a50b983c5e7c90ae93b",
|
|
3131
|
-
"mtime": 1773854723491.294,
|
|
3132
|
-
"size": 2,
|
|
3133
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3134
|
-
},
|
|
3135
|
-
"test-projects/rails-app/ai/index-state.json": {
|
|
3136
|
-
"path": "test-projects/rails-app/ai/index-state.json",
|
|
3137
|
-
"hash": "7ec666d7977235df3b8f143c2877d1ca",
|
|
3138
|
-
"mtime": 1773854929733.0337,
|
|
3139
|
-
"size": 9495,
|
|
3140
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3141
|
-
},
|
|
3142
|
-
"test-projects/rails-app/ai/modules.json": {
|
|
3143
|
-
"path": "test-projects/rails-app/ai/modules.json",
|
|
3144
|
-
"hash": "b86162ee33ceced7d087170aeb03bae5",
|
|
3145
|
-
"mtime": 1773854832947.3088,
|
|
3146
|
-
"size": 633,
|
|
3147
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3148
|
-
},
|
|
3149
|
-
"test-projects/rails-app/ai/project.json": {
|
|
3150
|
-
"path": "test-projects/rails-app/ai/project.json",
|
|
3151
|
-
"hash": "8320f4be11fc7ac2d8a77f01e2fb1bf1",
|
|
3152
|
-
"mtime": 1773854929733.0337,
|
|
3153
|
-
"size": 290,
|
|
3154
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3155
|
-
},
|
|
3156
|
-
"test-projects/rails-app/ai/repo-map.json": {
|
|
3157
|
-
"path": "test-projects/rails-app/ai/repo-map.json",
|
|
3158
|
-
"hash": "a02197cb10fa510fc230f7f0f480028e",
|
|
3159
|
-
"mtime": 1773854929733.0337,
|
|
3160
|
-
"size": 8542,
|
|
3161
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3162
|
-
},
|
|
3163
|
-
"test-projects/rails-app/ai/repo_map.json": {
|
|
3164
|
-
"path": "test-projects/rails-app/ai/repo_map.json",
|
|
3165
|
-
"hash": "e1a4828e985e97f765bc36bd71b14323",
|
|
3166
|
-
"mtime": 1773854929733.0337,
|
|
3167
|
-
"size": 3529,
|
|
3168
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3169
|
-
},
|
|
3170
|
-
"test-projects/rails-app/ai/repo_map.md": {
|
|
3171
|
-
"path": "test-projects/rails-app/ai/repo_map.md",
|
|
3172
|
-
"hash": "6be292d9062029469958f996ab4b05cc",
|
|
3173
|
-
"mtime": 1773854723400.2922,
|
|
3174
|
-
"size": 944,
|
|
3175
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3176
|
-
},
|
|
3177
|
-
"test-projects/rails-app/ai/schema.json": {
|
|
3178
|
-
"path": "test-projects/rails-app/ai/schema.json",
|
|
3179
|
-
"hash": "aa050d62e0686ae90b5f60ed7969e3b9",
|
|
3180
|
-
"mtime": 1773854929733.0337,
|
|
3181
|
-
"size": 102,
|
|
3182
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3183
|
-
},
|
|
3184
|
-
"test-projects/rails-app/ai/summary.md": {
|
|
3185
|
-
"path": "test-projects/rails-app/ai/summary.md",
|
|
3186
|
-
"hash": "87c1c31c6bc816e49363f4406c287ed5",
|
|
3187
|
-
"mtime": 1773854723401.2922,
|
|
3188
|
-
"size": 154,
|
|
3189
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3190
|
-
},
|
|
3191
|
-
"test-projects/rails-app/ai/symbols.json": {
|
|
3192
|
-
"path": "test-projects/rails-app/ai/symbols.json",
|
|
3193
|
-
"hash": "6edde050dc3089a9e15bf3934226a7c4",
|
|
3194
|
-
"mtime": 1773854929733.0337,
|
|
3195
|
-
"size": 83,
|
|
3196
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3197
|
-
},
|
|
3198
|
-
"test-projects/rails-app/ai/tech_stack.md": {
|
|
3199
|
-
"path": "test-projects/rails-app/ai/tech_stack.md",
|
|
3200
|
-
"hash": "eaaa6e1eb439a6bd2f1b510ca4f72f32",
|
|
3201
|
-
"mtime": 1773854723403.2922,
|
|
3202
|
-
"size": 338,
|
|
3203
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3204
|
-
},
|
|
3205
|
-
"test-projects/rails-app/ai/tools.json": {
|
|
3206
|
-
"path": "test-projects/rails-app/ai/tools.json",
|
|
3207
|
-
"hash": "b1356e52c74e9b3b6a0d397b790a4968",
|
|
3208
|
-
"mtime": 1773854723411.2925,
|
|
3209
|
-
"size": 138,
|
|
3210
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3211
|
-
},
|
|
3212
|
-
"test-projects/rails-app/app/controllers/api/comments_controller.rb": {
|
|
3213
|
-
"path": "test-projects/rails-app/app/controllers/api/comments_controller.rb",
|
|
3214
|
-
"hash": "e3b584186544ce602aad545c965bc2a2",
|
|
3215
|
-
"mtime": 1773853631697.262,
|
|
3216
|
-
"size": 1899,
|
|
3217
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3218
|
-
},
|
|
3219
|
-
"test-projects/rails-app/app/controllers/api/posts_controller.rb": {
|
|
3220
|
-
"path": "test-projects/rails-app/app/controllers/api/posts_controller.rb",
|
|
3221
|
-
"hash": "b1de2ba0bc7c211e7d9835e6774c679b",
|
|
3222
|
-
"mtime": 1773853614445.0198,
|
|
3223
|
-
"size": 1586,
|
|
3224
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3225
|
-
},
|
|
3226
|
-
"test-projects/rails-app/app/controllers/api/users_controller.rb": {
|
|
3227
|
-
"path": "test-projects/rails-app/app/controllers/api/users_controller.rb",
|
|
3228
|
-
"hash": "af3c6c69f25f83ba384a677b2f1509ff",
|
|
3229
|
-
"mtime": 1773853603625.8682,
|
|
3230
|
-
"size": 1101,
|
|
3231
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3232
|
-
},
|
|
3233
|
-
"test-projects/rails-app/app/controllers/application_controller.rb": {
|
|
3234
|
-
"path": "test-projects/rails-app/app/controllers/application_controller.rb",
|
|
3235
|
-
"hash": "6b9ad7e9ab66ff26949ecd46168804fa",
|
|
3236
|
-
"mtime": 1773853593748.7297,
|
|
3237
|
-
"size": 997,
|
|
3238
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3239
|
-
},
|
|
3240
|
-
"test-projects/rails-app/app/models/comment.rb": {
|
|
3241
|
-
"path": "test-projects/rails-app/app/models/comment.rb",
|
|
3242
|
-
"hash": "a4948b0d232cea2dec83a7bea2e94c75",
|
|
3243
|
-
"mtime": 1773853587660.6445,
|
|
3244
|
-
"size": 694,
|
|
3245
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3246
|
-
},
|
|
3247
|
-
"test-projects/rails-app/app/models/post.rb": {
|
|
3248
|
-
"path": "test-projects/rails-app/app/models/post.rb",
|
|
3249
|
-
"hash": "1a970d5c75d2ffcf23b797d8da78018a",
|
|
3250
|
-
"mtime": 1773853581771.5623,
|
|
3251
|
-
"size": 812,
|
|
3252
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3253
|
-
},
|
|
3254
|
-
"test-projects/rails-app/app/models/user.rb": {
|
|
3255
|
-
"path": "test-projects/rails-app/app/models/user.rb",
|
|
3256
|
-
"hash": "c31306e81cef27073eabae95167c2fe9",
|
|
3257
|
-
"mtime": 1773853574668.463,
|
|
3258
|
-
"size": 609,
|
|
3259
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3260
|
-
},
|
|
3261
|
-
"test-projects/rails-app/app/services/post_service.rb": {
|
|
3262
|
-
"path": "test-projects/rails-app/app/services/post_service.rb",
|
|
3263
|
-
"hash": "8b168ea13fd7490330796c9427513d88",
|
|
3264
|
-
"mtime": 1773853657349.6223,
|
|
3265
|
-
"size": 2145,
|
|
3266
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3267
|
-
},
|
|
3268
|
-
"test-projects/rails-app/app/services/user_service.rb": {
|
|
3269
|
-
"path": "test-projects/rails-app/app/services/user_service.rb",
|
|
3270
|
-
"hash": "ad982de5fd4fb6d6bf56ae11786085eb",
|
|
3271
|
-
"mtime": 1773853643398.4263,
|
|
3272
|
-
"size": 1649,
|
|
3273
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3274
|
-
},
|
|
3275
|
-
"test-projects/rails-app/config/application.rb": {
|
|
3276
|
-
"path": "test-projects/rails-app/config/application.rb",
|
|
3277
|
-
"hash": "6f483e86399f29d8459f5395025fa916",
|
|
3278
|
-
"mtime": 1773853559786.255,
|
|
3279
|
-
"size": 844,
|
|
3280
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3281
|
-
},
|
|
3282
|
-
"test-projects/rails-app/config/environment.rb": {
|
|
3283
|
-
"path": "test-projects/rails-app/config/environment.rb",
|
|
3284
|
-
"hash": "591ba809105639f0e8706132656ae120",
|
|
3285
|
-
"mtime": 1773853561174.2742,
|
|
3286
|
-
"size": 158,
|
|
3287
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3288
|
-
},
|
|
3289
|
-
"test-projects/rails-app/config/routes.rb": {
|
|
3290
|
-
"path": "test-projects/rails-app/config/routes.rb",
|
|
3291
|
-
"hash": "3b60545df1ace195b9ce879b79b6638f",
|
|
3292
|
-
"mtime": 1773853565362.3328,
|
|
3293
|
-
"size": 409,
|
|
3294
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3295
|
-
},
|
|
3296
|
-
"test-projects/react-app/ai/ai_context.md": {
|
|
3297
|
-
"path": "test-projects/react-app/ai/ai_context.md",
|
|
3298
|
-
"hash": "4866a92297737fd2e34fabcd82b4974f",
|
|
3299
|
-
"mtime": 1773796492594.4062,
|
|
3300
|
-
"size": 1647,
|
|
3301
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3302
|
-
},
|
|
3303
|
-
"test-projects/react-app/ai/ai_rules.md": {
|
|
3304
|
-
"path": "test-projects/react-app/ai/ai_rules.md",
|
|
3305
|
-
"hash": "187ea54135fe8b42b7d38acb8c45ace3",
|
|
3306
|
-
"mtime": 1773796492594.4062,
|
|
3307
|
-
"size": 906,
|
|
3308
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3309
|
-
},
|
|
3310
|
-
"test-projects/react-app/ai/architecture.md": {
|
|
3311
|
-
"path": "test-projects/react-app/ai/architecture.md",
|
|
3312
|
-
"hash": "e8662d770fe3c6360a9fc9b20c341266",
|
|
3313
|
-
"mtime": 1773796492588.4062,
|
|
3314
|
-
"size": 595,
|
|
3315
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3316
|
-
},
|
|
3317
|
-
"test-projects/react-app/ai/cache.json": {
|
|
3318
|
-
"path": "test-projects/react-app/ai/cache.json",
|
|
3319
|
-
"hash": "c6773221d9b92c5e78a50d2f87b8f19c",
|
|
3320
|
-
"mtime": 1773854929733.0337,
|
|
3321
|
-
"size": 3892,
|
|
3322
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3323
|
-
},
|
|
3324
|
-
"test-projects/react-app/ai/context/features/src.json": {
|
|
3325
|
-
"path": "test-projects/react-app/ai/context/features/src.json",
|
|
3326
|
-
"hash": "2d248c2486297a3db63103469fcb4d7b",
|
|
3327
|
-
"mtime": 1773796517636.7969,
|
|
3328
|
-
"size": 367,
|
|
3329
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3330
|
-
},
|
|
3331
|
-
"test-projects/react-app/ai/context/flows/UsersPage.json": {
|
|
3332
|
-
"path": "test-projects/react-app/ai/context/flows/UsersPage.json",
|
|
3333
|
-
"hash": "9c80be1645cd69f5ad66d24ba46e8b85",
|
|
3334
|
-
"mtime": 1773854929733.0337,
|
|
3335
|
-
"size": 223,
|
|
3336
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3337
|
-
},
|
|
3338
|
-
"test-projects/react-app/ai/context/flows/dashboard.json": {
|
|
3339
|
-
"path": "test-projects/react-app/ai/context/flows/dashboard.json",
|
|
3340
|
-
"hash": "0fbc56b67033373bb6157659552c82d9",
|
|
3341
|
-
"mtime": 1773796517636.7969,
|
|
3342
|
-
"size": 154,
|
|
3343
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3344
|
-
},
|
|
3345
|
-
"test-projects/react-app/ai/context/flows/login.json": {
|
|
3346
|
-
"path": "test-projects/react-app/ai/context/flows/login.json",
|
|
3347
|
-
"hash": "9311af687ac6a30df3de225f1e18f879",
|
|
3348
|
-
"mtime": 1773796517636.7969,
|
|
3349
|
-
"size": 142,
|
|
3350
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3351
|
-
},
|
|
3352
|
-
"test-projects/react-app/ai/context/flows/users.json": {
|
|
3353
|
-
"path": "test-projects/react-app/ai/context/flows/users.json",
|
|
3354
|
-
"hash": "b5ee48090ea670d1afe36d1fa13500b7",
|
|
3355
|
-
"mtime": 1773796517636.7969,
|
|
3356
|
-
"size": 142,
|
|
3357
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3358
|
-
},
|
|
3359
|
-
"test-projects/react-app/ai/conventions.md": {
|
|
3360
|
-
"path": "test-projects/react-app/ai/conventions.md",
|
|
3361
|
-
"hash": "cf36cf015f6c293ebf89ec2c7756bb57",
|
|
3362
|
-
"mtime": 1773796492590.4062,
|
|
3363
|
-
"size": 826,
|
|
3364
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3365
|
-
},
|
|
3366
|
-
"test-projects/react-app/ai/dependencies.json": {
|
|
3367
|
-
"path": "test-projects/react-app/ai/dependencies.json",
|
|
3368
|
-
"hash": "93a2fe3aec79aca7e1253533cae99f12",
|
|
3369
|
-
"mtime": 1773854929733.0337,
|
|
3370
|
-
"size": 4851,
|
|
3371
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3372
|
-
},
|
|
3373
|
-
"test-projects/react-app/ai/entrypoints.md": {
|
|
3374
|
-
"path": "test-projects/react-app/ai/entrypoints.md",
|
|
3375
|
-
"hash": "34c8965a66697d9f1d428bb0904f5d8d",
|
|
3376
|
-
"mtime": 1773796492589.4062,
|
|
3377
|
-
"size": 43,
|
|
3378
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3379
|
-
},
|
|
3380
|
-
"test-projects/react-app/ai/files.json": {
|
|
3381
|
-
"path": "test-projects/react-app/ai/files.json",
|
|
3382
|
-
"hash": "48ab393f8b9df782ab081eeb57c5147d",
|
|
3383
|
-
"mtime": 1773854929733.0337,
|
|
3384
|
-
"size": 1793,
|
|
3385
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3386
|
-
},
|
|
3387
|
-
"test-projects/react-app/ai/graph/knowledge-graph.json": {
|
|
3388
|
-
"path": "test-projects/react-app/ai/graph/knowledge-graph.json",
|
|
3389
|
-
"hash": "fa879b4bb2bbdf4ade73108745039e7b",
|
|
3390
|
-
"mtime": 1773796549543.294,
|
|
3391
|
-
"size": 1499,
|
|
3392
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3393
|
-
},
|
|
3394
|
-
"test-projects/react-app/ai/graph/module-graph.json": {
|
|
3395
|
-
"path": "test-projects/react-app/ai/graph/module-graph.json",
|
|
3396
|
-
"hash": "3599338f9de3043664fde3c5ca8bc1ca",
|
|
3397
|
-
"mtime": 1773796517626.7966,
|
|
3398
|
-
"size": 546,
|
|
3399
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3400
|
-
},
|
|
3401
|
-
"test-projects/react-app/ai/graph/symbol-graph.json": {
|
|
3402
|
-
"path": "test-projects/react-app/ai/graph/symbol-graph.json",
|
|
3403
|
-
"hash": "cdd01d0b3bdb6f26648460fa8d33b069",
|
|
3404
|
-
"mtime": 1773796517632.7969,
|
|
3405
|
-
"size": 23781,
|
|
3406
|
-
"indexedAt": "2026-03-18T19:21:24.578Z"
|
|
3407
|
-
},
|
|
3408
|
-
"test-projects/react-app/ai/graph/symbol-references.json": {
|
|
3409
|
-
"path": "test-projects/react-app/ai/graph/symbol-references.json",
|
|
3410
|
-
"hash": "a2ec09612e8db86fc410fc8b4755c07b",
|
|
3411
|
-
"mtime": 1773796517632.7969,
|
|
3412
|
-
"size": 829,
|
|
3413
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3414
|
-
},
|
|
3415
|
-
"test-projects/react-app/ai/index-state.json": {
|
|
3416
|
-
"path": "test-projects/react-app/ai/index-state.json",
|
|
3417
|
-
"hash": "4c8940a512edb67a82dd9bd2aeafe1bb",
|
|
3418
|
-
"mtime": 1773854833164.3127,
|
|
3419
|
-
"size": 8174,
|
|
3420
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3421
|
-
},
|
|
3422
|
-
"test-projects/react-app/ai/modules.json": {
|
|
3423
|
-
"path": "test-projects/react-app/ai/modules.json",
|
|
3424
|
-
"hash": "c539e0624fa9a288ddfb14bd48b5587e",
|
|
3425
|
-
"mtime": 1773854833093.3113,
|
|
3426
|
-
"size": 352,
|
|
3427
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3428
|
-
},
|
|
3429
|
-
"test-projects/react-app/ai/project.json": {
|
|
3430
|
-
"path": "test-projects/react-app/ai/project.json",
|
|
3431
|
-
"hash": "e916a42c2cd97173f16f2f82189d5986",
|
|
3432
|
-
"mtime": 1773854929733.0337,
|
|
3433
|
-
"size": 257,
|
|
3434
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3435
|
-
},
|
|
3436
|
-
"test-projects/react-app/ai/repo-map.json": {
|
|
3437
|
-
"path": "test-projects/react-app/ai/repo-map.json",
|
|
3438
|
-
"hash": "b0821a6572790fc16e5270c4c5e9276e",
|
|
3439
|
-
"mtime": 1773854929733.0337,
|
|
3440
|
-
"size": 6949,
|
|
3441
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3442
|
-
},
|
|
3443
|
-
"test-projects/react-app/ai/repo_map.json": {
|
|
3444
|
-
"path": "test-projects/react-app/ai/repo_map.json",
|
|
3445
|
-
"hash": "7cd5df100b5acc9f5c96d3d51e55347e",
|
|
3446
|
-
"mtime": 1773854929733.0337,
|
|
3447
|
-
"size": 2429,
|
|
3448
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3449
|
-
},
|
|
3450
|
-
"test-projects/react-app/ai/repo_map.md": {
|
|
3451
|
-
"path": "test-projects/react-app/ai/repo_map.md",
|
|
3452
|
-
"hash": "f3361ccec5c3c9c2b4ead2c27b5fd571",
|
|
3453
|
-
"mtime": 1773796492586.406,
|
|
3454
|
-
"size": 637,
|
|
3455
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3456
|
-
},
|
|
3457
|
-
"test-projects/react-app/ai/schema.json": {
|
|
3458
|
-
"path": "test-projects/react-app/ai/schema.json",
|
|
3459
|
-
"hash": "96136c4559dbd4fb396d07196c0158ad",
|
|
3460
|
-
"mtime": 1773854929734.0337,
|
|
3461
|
-
"size": 102,
|
|
3462
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3463
|
-
},
|
|
3464
|
-
"test-projects/react-app/ai/summary.md": {
|
|
3465
|
-
"path": "test-projects/react-app/ai/summary.md",
|
|
3466
|
-
"hash": "6c7df62f23d13a49598c071057253eae",
|
|
3467
|
-
"mtime": 1773796492587.4062,
|
|
3468
|
-
"size": 155,
|
|
3469
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3470
|
-
},
|
|
3471
|
-
"test-projects/react-app/ai/symbols.json": {
|
|
3472
|
-
"path": "test-projects/react-app/ai/symbols.json",
|
|
3473
|
-
"hash": "ad94b9b17ac8aee49fe27f0113994ceb",
|
|
3474
|
-
"mtime": 1773796492592.4062,
|
|
3475
|
-
"size": 25371,
|
|
3476
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3477
|
-
},
|
|
3478
|
-
"test-projects/react-app/ai/tech_stack.md": {
|
|
3479
|
-
"path": "test-projects/react-app/ai/tech_stack.md",
|
|
3480
|
-
"hash": "d7e224852b6ec88de645453bfb065c40",
|
|
3481
|
-
"mtime": 1773796492589.4062,
|
|
3482
|
-
"size": 449,
|
|
3483
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3484
|
-
},
|
|
3485
|
-
"test-projects/react-app/ai/tools.json": {
|
|
3486
|
-
"path": "test-projects/react-app/ai/tools.json",
|
|
3487
|
-
"hash": "b1356e52c74e9b3b6a0d397b790a4968",
|
|
3488
|
-
"mtime": 1773796492596.4062,
|
|
3489
|
-
"size": 138,
|
|
3490
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3491
|
-
},
|
|
3492
|
-
"test-projects/react-app/package.json": {
|
|
3493
|
-
"path": "test-projects/react-app/package.json",
|
|
3494
|
-
"hash": "12744c74a0278dc2edfb68294b9b9125",
|
|
3495
|
-
"mtime": 1773777304827.265,
|
|
3496
|
-
"size": 321,
|
|
3497
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3498
|
-
},
|
|
3499
|
-
"test-projects/react-app/src/App.tsx": {
|
|
3500
|
-
"path": "test-projects/react-app/src/App.tsx",
|
|
3501
|
-
"hash": "1bd200aa3ea7b4e1175a07d0f26f8dc4",
|
|
3502
|
-
"mtime": 1773777339360.6953,
|
|
3503
|
-
"size": 614,
|
|
3504
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3505
|
-
},
|
|
3506
|
-
"test-projects/react-app/src/context/AuthContext.tsx": {
|
|
3507
|
-
"path": "test-projects/react-app/src/context/AuthContext.tsx",
|
|
3508
|
-
"hash": "4113336d7e2eb6ac2b78cebe8464276e",
|
|
3509
|
-
"mtime": 1773777350783.8386,
|
|
3510
|
-
"size": 1070,
|
|
3511
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3512
|
-
},
|
|
3513
|
-
"test-projects/react-app/src/hooks/useAuth.ts": {
|
|
3514
|
-
"path": "test-projects/react-app/src/hooks/useAuth.ts",
|
|
3515
|
-
"hash": "036b7295855cbd8214eb4653954f10cc",
|
|
3516
|
-
"mtime": 1773777417490.685,
|
|
3517
|
-
"size": 269,
|
|
3518
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3519
|
-
},
|
|
3520
|
-
"test-projects/react-app/src/main.tsx": {
|
|
3521
|
-
"path": "test-projects/react-app/src/main.tsx",
|
|
3522
|
-
"hash": "283000b4b4218c8dc8b4e634a70bbbe3",
|
|
3523
|
-
"mtime": 1773777310472.335,
|
|
3524
|
-
"size": 247,
|
|
3525
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3526
|
-
},
|
|
3527
|
-
"test-projects/react-app/src/pages/DashboardPage.tsx": {
|
|
3528
|
-
"path": "test-projects/react-app/src/pages/DashboardPage.tsx",
|
|
3529
|
-
"hash": "4c9a9c8fc6a53db6bdbb4d0de6561baf",
|
|
3530
|
-
"mtime": 1773777385566.278,
|
|
3531
|
-
"size": 358,
|
|
3532
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3533
|
-
},
|
|
3534
|
-
"test-projects/react-app/src/pages/LoginPage.tsx": {
|
|
3535
|
-
"path": "test-projects/react-app/src/pages/LoginPage.tsx",
|
|
3536
|
-
"hash": "16a9451aafa3dd13e3c62b8816ab98d6",
|
|
3537
|
-
"mtime": 1773777377789.1794,
|
|
3538
|
-
"size": 1063,
|
|
3539
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3540
|
-
},
|
|
3541
|
-
"test-projects/react-app/src/pages/UsersPage.tsx": {
|
|
3542
|
-
"path": "test-projects/react-app/src/pages/UsersPage.tsx",
|
|
3543
|
-
"hash": "e24caa3c7d598228c36600eb1ca95b30",
|
|
3544
|
-
"mtime": 1773777394130.387,
|
|
3545
|
-
"size": 821,
|
|
3546
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3547
|
-
},
|
|
3548
|
-
"test-projects/react-app/src/services/userService.ts": {
|
|
3549
|
-
"path": "test-projects/react-app/src/services/userService.ts",
|
|
3550
|
-
"hash": "78df2c3240cd630cedb2095347616301",
|
|
3551
|
-
"mtime": 1773777428144.8215,
|
|
3552
|
-
"size": 997,
|
|
3553
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3554
|
-
},
|
|
3555
|
-
"test-projects/salesforce-cli/ai/ai_context.md": {
|
|
3556
|
-
"path": "test-projects/salesforce-cli/ai/ai_context.md",
|
|
3557
|
-
"hash": "f038c6e81ed1afc0b5582c214b42fe69",
|
|
3558
|
-
"mtime": 1773796492673.4075,
|
|
3559
|
-
"size": 1399,
|
|
3560
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3561
|
-
},
|
|
3562
|
-
"test-projects/salesforce-cli/ai/ai_rules.md": {
|
|
3563
|
-
"path": "test-projects/salesforce-cli/ai/ai_rules.md",
|
|
3564
|
-
"hash": "d6864e4c14fb24f5b12fc0dbc5fe50f7",
|
|
3565
|
-
"mtime": 1773796492673.4075,
|
|
3566
|
-
"size": 763,
|
|
3567
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3568
|
-
},
|
|
3569
|
-
"test-projects/salesforce-cli/ai/architecture.md": {
|
|
3570
|
-
"path": "test-projects/salesforce-cli/ai/architecture.md",
|
|
3571
|
-
"hash": "587f3de6d1623a0fc13d924503ab2ad9",
|
|
3572
|
-
"mtime": 1773796492669.4075,
|
|
3573
|
-
"size": 628,
|
|
3574
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3575
|
-
},
|
|
3576
|
-
"test-projects/salesforce-cli/ai/cache.json": {
|
|
3577
|
-
"path": "test-projects/salesforce-cli/ai/cache.json",
|
|
3578
|
-
"hash": "057d536d2dcfcff14ee37d655336948a",
|
|
3579
|
-
"mtime": 1773854929734.0337,
|
|
3580
|
-
"size": 3147,
|
|
3581
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3582
|
-
},
|
|
3583
|
-
"test-projects/salesforce-cli/ai/context/features/force-app.json": {
|
|
3584
|
-
"path": "test-projects/salesforce-cli/ai/context/features/force-app.json",
|
|
3585
|
-
"hash": "05a59b12f59343ac6550313514d26378",
|
|
3586
|
-
"mtime": 1773796517714.798,
|
|
3587
|
-
"size": 420,
|
|
3588
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3589
|
-
},
|
|
3590
|
-
"test-projects/salesforce-cli/ai/context/flows/account.json": {
|
|
3591
|
-
"path": "test-projects/salesforce-cli/ai/context/flows/account.json",
|
|
3592
|
-
"hash": "b598b9ea1bc7ba8e8220ce3861cd9a6b",
|
|
3593
|
-
"mtime": 1773796517714.798,
|
|
3594
|
-
"size": 202,
|
|
3595
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3596
|
-
},
|
|
3597
|
-
"test-projects/salesforce-cli/ai/context/flows/opportunity.json": {
|
|
3598
|
-
"path": "test-projects/salesforce-cli/ai/context/flows/opportunity.json",
|
|
3599
|
-
"hash": "ac8e6a6f053bb84d99784bd2e4556e90",
|
|
3600
|
-
"mtime": 1773796517715.798,
|
|
3601
|
-
"size": 214,
|
|
3602
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3603
|
-
},
|
|
3604
|
-
"test-projects/salesforce-cli/ai/conventions.md": {
|
|
3605
|
-
"path": "test-projects/salesforce-cli/ai/conventions.md",
|
|
3606
|
-
"hash": "d11ac646a8916e3c6cc376f610368317",
|
|
3607
|
-
"mtime": 1773796492671.4075,
|
|
3608
|
-
"size": 813,
|
|
3609
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3610
|
-
},
|
|
3611
|
-
"test-projects/salesforce-cli/ai/dependencies.json": {
|
|
3612
|
-
"path": "test-projects/salesforce-cli/ai/dependencies.json",
|
|
3613
|
-
"hash": "038f80a99cbcc45991786b645398758e",
|
|
3614
|
-
"mtime": 1773796492672.4075,
|
|
3615
|
-
"size": 87,
|
|
3616
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3617
|
-
},
|
|
3618
|
-
"test-projects/salesforce-cli/ai/entrypoints.md": {
|
|
3619
|
-
"path": "test-projects/salesforce-cli/ai/entrypoints.md",
|
|
3620
|
-
"hash": "34c8965a66697d9f1d428bb0904f5d8d",
|
|
3621
|
-
"mtime": 1773796492670.4075,
|
|
3622
|
-
"size": 43,
|
|
3623
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3624
|
-
},
|
|
3625
|
-
"test-projects/salesforce-cli/ai/files.json": {
|
|
3626
|
-
"path": "test-projects/salesforce-cli/ai/files.json",
|
|
3627
|
-
"hash": "d69a645e7a5ac643dfc30df33cd9b267",
|
|
3628
|
-
"mtime": 1773854929734.0337,
|
|
3629
|
-
"size": 916,
|
|
3630
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3631
|
-
},
|
|
3632
|
-
"test-projects/salesforce-cli/ai/graph/knowledge-graph.json": {
|
|
3633
|
-
"path": "test-projects/salesforce-cli/ai/graph/knowledge-graph.json",
|
|
3634
|
-
"hash": "70dfef7b797d97d5df2254beabc335c3",
|
|
3635
|
-
"mtime": 1773796549609.295,
|
|
3636
|
-
"size": 1299,
|
|
3637
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3638
|
-
},
|
|
3639
|
-
"test-projects/salesforce-cli/ai/graph/module-graph.json": {
|
|
3640
|
-
"path": "test-projects/salesforce-cli/ai/graph/module-graph.json",
|
|
3641
|
-
"hash": "6848d665199d24a321d36d4e96e9dd90",
|
|
3642
|
-
"mtime": 1773796517707.7979,
|
|
3643
|
-
"size": 305,
|
|
3644
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3645
|
-
},
|
|
3646
|
-
"test-projects/salesforce-cli/ai/graph/symbol-graph.json": {
|
|
3647
|
-
"path": "test-projects/salesforce-cli/ai/graph/symbol-graph.json",
|
|
3648
|
-
"hash": "fbd7cdd87c277789096aeeb23182dd5e",
|
|
3649
|
-
"mtime": 1773796517711.798,
|
|
3650
|
-
"size": 5748,
|
|
3651
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3652
|
-
},
|
|
3653
|
-
"test-projects/salesforce-cli/ai/graph/symbol-references.json": {
|
|
3654
|
-
"path": "test-projects/salesforce-cli/ai/graph/symbol-references.json",
|
|
3655
|
-
"hash": "99914b932bd37a50b983c5e7c90ae93b",
|
|
3656
|
-
"mtime": 1773796517711.798,
|
|
3657
|
-
"size": 2,
|
|
3658
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3659
|
-
},
|
|
3660
|
-
"test-projects/salesforce-cli/ai/index-state.json": {
|
|
3661
|
-
"path": "test-projects/salesforce-cli/ai/index-state.json",
|
|
3662
|
-
"hash": "fe92312c4252ec320829438b42b88265",
|
|
3663
|
-
"mtime": 1773854833297.3152,
|
|
3664
|
-
"size": 7012,
|
|
3665
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3666
|
-
},
|
|
3667
|
-
"test-projects/salesforce-cli/ai/modules.json": {
|
|
3668
|
-
"path": "test-projects/salesforce-cli/ai/modules.json",
|
|
3669
|
-
"hash": "1d0ec72acc3fc6e1c8c1c28b1ad87252",
|
|
3670
|
-
"mtime": 1773854833246.3142,
|
|
3671
|
-
"size": 296,
|
|
3672
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3673
|
-
},
|
|
3674
|
-
"test-projects/salesforce-cli/ai/project.json": {
|
|
3675
|
-
"path": "test-projects/salesforce-cli/ai/project.json",
|
|
3676
|
-
"hash": "0909e7d9b9c9496dce2bf848e992bf06",
|
|
3677
|
-
"mtime": 1773854929734.0337,
|
|
3678
|
-
"size": 247,
|
|
3679
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3680
|
-
},
|
|
3681
|
-
"test-projects/salesforce-cli/ai/repo-map.json": {
|
|
3682
|
-
"path": "test-projects/salesforce-cli/ai/repo-map.json",
|
|
3683
|
-
"hash": "f0a8d30c722f69eaaf0d928d1e242e7e",
|
|
3684
|
-
"mtime": 1773854929734.0337,
|
|
3685
|
-
"size": 5843,
|
|
3686
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3687
|
-
},
|
|
3688
|
-
"test-projects/salesforce-cli/ai/repo_map.json": {
|
|
3689
|
-
"path": "test-projects/salesforce-cli/ai/repo_map.json",
|
|
3690
|
-
"hash": "3db22c2c179a0e59abb01cc8620dc944",
|
|
3691
|
-
"mtime": 1773854929734.0337,
|
|
3692
|
-
"size": 1775,
|
|
3693
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3694
|
-
},
|
|
3695
|
-
"test-projects/salesforce-cli/ai/repo_map.md": {
|
|
3696
|
-
"path": "test-projects/salesforce-cli/ai/repo_map.md",
|
|
3697
|
-
"hash": "612c1b7f776ec7f0e02e6a2a80bafe3b",
|
|
3698
|
-
"mtime": 1773796492667.4075,
|
|
3699
|
-
"size": 521,
|
|
3700
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3701
|
-
},
|
|
3702
|
-
"test-projects/salesforce-cli/ai/schema.json": {
|
|
3703
|
-
"path": "test-projects/salesforce-cli/ai/schema.json",
|
|
3704
|
-
"hash": "69181f30c0d2916ef84a893c5b50ba83",
|
|
3705
|
-
"mtime": 1773854929734.0337,
|
|
3706
|
-
"size": 102,
|
|
3707
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3708
|
-
},
|
|
3709
|
-
"test-projects/salesforce-cli/ai/summary.md": {
|
|
3710
|
-
"path": "test-projects/salesforce-cli/ai/summary.md",
|
|
3711
|
-
"hash": "52c99c74210210438e7bf314915ef872",
|
|
3712
|
-
"mtime": 1773796492668.4075,
|
|
3713
|
-
"size": 171,
|
|
3714
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3715
|
-
},
|
|
3716
|
-
"test-projects/salesforce-cli/ai/symbols.json": {
|
|
3717
|
-
"path": "test-projects/salesforce-cli/ai/symbols.json",
|
|
3718
|
-
"hash": "e3c31bde2bfd56e085f689eb750aa93e",
|
|
3719
|
-
"mtime": 1773796492672.4075,
|
|
3720
|
-
"size": 8233,
|
|
3721
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3722
|
-
},
|
|
3723
|
-
"test-projects/salesforce-cli/ai/tech_stack.md": {
|
|
3724
|
-
"path": "test-projects/salesforce-cli/ai/tech_stack.md",
|
|
3725
|
-
"hash": "4f67b75666a8dab1f2f82196130ab030",
|
|
3726
|
-
"mtime": 1773796492670.4075,
|
|
3727
|
-
"size": 317,
|
|
3728
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3729
|
-
},
|
|
3730
|
-
"test-projects/salesforce-cli/ai/tools.json": {
|
|
3731
|
-
"path": "test-projects/salesforce-cli/ai/tools.json",
|
|
3732
|
-
"hash": "b1356e52c74e9b3b6a0d397b790a4968",
|
|
3733
|
-
"mtime": 1773796492675.4075,
|
|
3734
|
-
"size": 138,
|
|
3735
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3736
|
-
},
|
|
3737
|
-
"test-projects/salesforce-cli/force-app/main/default/classes/AccountController.cls": {
|
|
3738
|
-
"path": "test-projects/salesforce-cli/force-app/main/default/classes/AccountController.cls",
|
|
3739
|
-
"hash": "f42a5c32b2194cf4c6227503ba00f6fe",
|
|
3740
|
-
"mtime": 1773777904495.204,
|
|
3741
|
-
"size": 719,
|
|
3742
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3743
|
-
},
|
|
3744
|
-
"test-projects/salesforce-cli/force-app/main/default/classes/OpportunityController.cls": {
|
|
3745
|
-
"path": "test-projects/salesforce-cli/force-app/main/default/classes/OpportunityController.cls",
|
|
3746
|
-
"hash": "27984b63f77bef40953426e0a6b0c685",
|
|
3747
|
-
"mtime": 1773777913625.33,
|
|
3748
|
-
"size": 872,
|
|
3749
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3750
|
-
},
|
|
3751
|
-
"test-projects/salesforce-cli/force-app/main/default/triggers/AccountTrigger.trigger": {
|
|
3752
|
-
"path": "test-projects/salesforce-cli/force-app/main/default/triggers/AccountTrigger.trigger",
|
|
3753
|
-
"hash": "84c54cb056848e844af710a70c5ef243",
|
|
3754
|
-
"mtime": 1773777952108.863,
|
|
3755
|
-
"size": 1058,
|
|
3756
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3757
|
-
},
|
|
3758
|
-
"test-projects/salesforce-cli/sfdx-project.json": {
|
|
3759
|
-
"path": "test-projects/salesforce-cli/sfdx-project.json",
|
|
3760
|
-
"hash": "d2a50cc298ee84931caa1b54ae8b18ed",
|
|
3761
|
-
"mtime": 1773777895732.083,
|
|
3762
|
-
"size": 194,
|
|
3763
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3764
|
-
},
|
|
3765
|
-
"test-projects/spring-boot-app/README.md": {
|
|
3766
|
-
"path": "test-projects/spring-boot-app/README.md",
|
|
3767
|
-
"hash": "ee92d7e508c3afd9aed6198088189034",
|
|
3768
|
-
"mtime": 1773853695476.1587,
|
|
3769
|
-
"size": 3702,
|
|
3770
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3771
|
-
},
|
|
3772
|
-
"test-projects/spring-boot-app/ai/ai_context.md": {
|
|
3773
|
-
"path": "test-projects/spring-boot-app/ai/ai_context.md",
|
|
3774
|
-
"hash": "805894557ce87043443bf9a93a34fd4d",
|
|
3775
|
-
"mtime": 1773853770800.222,
|
|
3776
|
-
"size": 1461,
|
|
3777
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3778
|
-
},
|
|
3779
|
-
"test-projects/spring-boot-app/ai/ai_rules.md": {
|
|
3780
|
-
"path": "test-projects/spring-boot-app/ai/ai_rules.md",
|
|
3781
|
-
"hash": "dd94e2e76a4b44d39e6094e0d9d2f59b",
|
|
3782
|
-
"mtime": 1773853770799.222,
|
|
3783
|
-
"size": 808,
|
|
3784
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3785
|
-
},
|
|
3786
|
-
"test-projects/spring-boot-app/ai/architecture.md": {
|
|
3787
|
-
"path": "test-projects/spring-boot-app/ai/architecture.md",
|
|
3788
|
-
"hash": "b39463d4712f6ea781823c9a5165b0c4",
|
|
3789
|
-
"mtime": 1773853770794.222,
|
|
3790
|
-
"size": 588,
|
|
3791
|
-
"indexedAt": "2026-03-18T19:21:24.579Z"
|
|
3792
|
-
},
|
|
3793
|
-
"test-projects/spring-boot-app/ai/cache.json": {
|
|
3794
|
-
"path": "test-projects/spring-boot-app/ai/cache.json",
|
|
3795
|
-
"hash": "cbd7f7b4ef78c0be59cec53e1fc5eb96",
|
|
3796
|
-
"mtime": 1773853776316.2998,
|
|
3797
|
-
"size": 4947,
|
|
3798
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3799
|
-
},
|
|
3800
|
-
"test-projects/spring-boot-app/ai/context/features/src.json": {
|
|
3801
|
-
"path": "test-projects/spring-boot-app/ai/context/features/src.json",
|
|
3802
|
-
"hash": "42a60c161a5bf54c5d33ef364591c4f7",
|
|
3803
|
-
"mtime": 1773853776318.3,
|
|
3804
|
-
"size": 1223,
|
|
3805
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3806
|
-
},
|
|
3807
|
-
"test-projects/spring-boot-app/ai/context/flows/PostController.json": {
|
|
3808
|
-
"path": "test-projects/spring-boot-app/ai/context/flows/PostController.json",
|
|
3809
|
-
"hash": "2f5e73a2ec99953c3b007452cc7bdba9",
|
|
3810
|
-
"mtime": 1773853770802.222,
|
|
3811
|
-
"size": 594,
|
|
3812
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3813
|
-
},
|
|
3814
|
-
"test-projects/spring-boot-app/ai/context/flows/UserController.json": {
|
|
3815
|
-
"path": "test-projects/spring-boot-app/ai/context/flows/UserController.json",
|
|
3816
|
-
"hash": "3edb3f6c856c098b62f7375a3b9780fa",
|
|
3817
|
-
"mtime": 1773853770802.222,
|
|
3818
|
-
"size": 592,
|
|
3819
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3820
|
-
},
|
|
3821
|
-
"test-projects/spring-boot-app/ai/context/flows/comment.json": {
|
|
3822
|
-
"path": "test-projects/spring-boot-app/ai/context/flows/comment.json",
|
|
3823
|
-
"hash": "913f7e2f07c4a16cdf4fd01cfb8b433a",
|
|
3824
|
-
"mtime": 1773853776318.3,
|
|
3825
|
-
"size": 360,
|
|
3826
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3827
|
-
},
|
|
3828
|
-
"test-projects/spring-boot-app/ai/context/flows/post.json": {
|
|
3829
|
-
"path": "test-projects/spring-boot-app/ai/context/flows/post.json",
|
|
3830
|
-
"hash": "0aedae49606deeece03d0356244cac8a",
|
|
3831
|
-
"mtime": 1773853776319.3,
|
|
3832
|
-
"size": 426,
|
|
3833
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3834
|
-
},
|
|
3835
|
-
"test-projects/spring-boot-app/ai/context/flows/user.json": {
|
|
3836
|
-
"path": "test-projects/spring-boot-app/ai/context/flows/user.json",
|
|
3837
|
-
"hash": "e5a3d93f3de0265263bcf0de1d02bb44",
|
|
3838
|
-
"mtime": 1773853776319.3,
|
|
3839
|
-
"size": 426,
|
|
3840
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3841
|
-
},
|
|
3842
|
-
"test-projects/spring-boot-app/ai/conventions.md": {
|
|
3843
|
-
"path": "test-projects/spring-boot-app/ai/conventions.md",
|
|
3844
|
-
"hash": "cf36cf015f6c293ebf89ec2c7756bb57",
|
|
3845
|
-
"mtime": 1773853770796.222,
|
|
3846
|
-
"size": 826,
|
|
3847
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3848
|
-
},
|
|
3849
|
-
"test-projects/spring-boot-app/ai/dependencies.json": {
|
|
3850
|
-
"path": "test-projects/spring-boot-app/ai/dependencies.json",
|
|
3851
|
-
"hash": "231ca459d245c614550189bfdfc8aa31",
|
|
3852
|
-
"mtime": 1773853770798.222,
|
|
3853
|
-
"size": 12317,
|
|
3854
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3855
|
-
},
|
|
3856
|
-
"test-projects/spring-boot-app/ai/entrypoints.md": {
|
|
3857
|
-
"path": "test-projects/spring-boot-app/ai/entrypoints.md",
|
|
3858
|
-
"hash": "34c8965a66697d9f1d428bb0904f5d8d",
|
|
3859
|
-
"mtime": 1773853770795.222,
|
|
3860
|
-
"size": 43,
|
|
3861
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3862
|
-
},
|
|
3863
|
-
"test-projects/spring-boot-app/ai/files.json": {
|
|
3864
|
-
"path": "test-projects/spring-boot-app/ai/files.json",
|
|
3865
|
-
"hash": "b038e97b87e805d6554aa6bcdd5541c8",
|
|
3866
|
-
"mtime": 1773854929734.0337,
|
|
3867
|
-
"size": 4561,
|
|
3868
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3869
|
-
},
|
|
3870
|
-
"test-projects/spring-boot-app/ai/graph/knowledge-graph.json": {
|
|
3871
|
-
"path": "test-projects/spring-boot-app/ai/graph/knowledge-graph.json",
|
|
3872
|
-
"hash": "63bcb889e49a8816c395d915d0812490",
|
|
3873
|
-
"mtime": 1773853807662.7434,
|
|
3874
|
-
"size": 5531,
|
|
3875
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3876
|
-
},
|
|
3877
|
-
"test-projects/spring-boot-app/ai/graph/module-graph.json": {
|
|
3878
|
-
"path": "test-projects/spring-boot-app/ai/graph/module-graph.json",
|
|
3879
|
-
"hash": "bcdee278b7c197c3fdd8cc05e248bd69",
|
|
3880
|
-
"mtime": 1773853776307.2998,
|
|
3881
|
-
"size": 933,
|
|
3882
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3883
|
-
},
|
|
3884
|
-
"test-projects/spring-boot-app/ai/graph/symbol-graph.json": {
|
|
3885
|
-
"path": "test-projects/spring-boot-app/ai/graph/symbol-graph.json",
|
|
3886
|
-
"hash": "af3b7eee071f51f7751d2e9c06c34ca4",
|
|
3887
|
-
"mtime": 1773853776314.2998,
|
|
3888
|
-
"size": 32701,
|
|
3889
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3890
|
-
},
|
|
3891
|
-
"test-projects/spring-boot-app/ai/graph/symbol-references.json": {
|
|
3892
|
-
"path": "test-projects/spring-boot-app/ai/graph/symbol-references.json",
|
|
3893
|
-
"hash": "d2b999dd64f0a7f70cc7fcb11a1d0450",
|
|
3894
|
-
"mtime": 1773853776314.2998,
|
|
3895
|
-
"size": 4794,
|
|
3896
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3897
|
-
},
|
|
3898
|
-
"test-projects/spring-boot-app/ai/index-state.json": {
|
|
3899
|
-
"path": "test-projects/spring-boot-app/ai/index-state.json",
|
|
3900
|
-
"hash": "f712e4ee8204fa320a6b98185daa9cf3",
|
|
3901
|
-
"mtime": 1773854929734.0337,
|
|
3902
|
-
"size": 9967,
|
|
3903
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3904
|
-
},
|
|
3905
|
-
"test-projects/spring-boot-app/ai/modules.json": {
|
|
3906
|
-
"path": "test-projects/spring-boot-app/ai/modules.json",
|
|
3907
|
-
"hash": "8822d383d8a69f12aac8593ec2382889",
|
|
3908
|
-
"mtime": 1773854833383.3167,
|
|
3909
|
-
"size": 918,
|
|
3910
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3911
|
-
},
|
|
3912
|
-
"test-projects/spring-boot-app/ai/project.json": {
|
|
3913
|
-
"path": "test-projects/spring-boot-app/ai/project.json",
|
|
3914
|
-
"hash": "1690f6494c5f4774a4b9f9937c5c94ce",
|
|
3915
|
-
"mtime": 1773853770802.222,
|
|
3916
|
-
"size": 292,
|
|
3917
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3918
|
-
},
|
|
3919
|
-
"test-projects/spring-boot-app/ai/repo-map.json": {
|
|
3920
|
-
"path": "test-projects/spring-boot-app/ai/repo-map.json",
|
|
3921
|
-
"hash": "b23ef3b9d1a9158da820bb92f19c40ef",
|
|
3922
|
-
"mtime": 1773853776306.2998,
|
|
3923
|
-
"size": 10702,
|
|
3924
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3925
|
-
},
|
|
3926
|
-
"test-projects/spring-boot-app/ai/repo_map.json": {
|
|
3927
|
-
"path": "test-projects/spring-boot-app/ai/repo_map.json",
|
|
3928
|
-
"hash": "357e0755e2fc4ae9a135b0a786fedc44",
|
|
3929
|
-
"mtime": 1773853770793.2217,
|
|
3930
|
-
"size": 5918,
|
|
3931
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3932
|
-
},
|
|
3933
|
-
"test-projects/spring-boot-app/ai/repo_map.md": {
|
|
3934
|
-
"path": "test-projects/spring-boot-app/ai/repo_map.md",
|
|
3935
|
-
"hash": "81ca0a8d506c9bbd24021116386e18c1",
|
|
3936
|
-
"mtime": 1773853770792.2217,
|
|
3937
|
-
"size": 1440,
|
|
3938
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3939
|
-
},
|
|
3940
|
-
"test-projects/spring-boot-app/ai/schema.json": {
|
|
3941
|
-
"path": "test-projects/spring-boot-app/ai/schema.json",
|
|
3942
|
-
"hash": "cd1991ee7fb126511c11bd77a822164f",
|
|
3943
|
-
"mtime": 1773853770802.222,
|
|
3944
|
-
"size": 102,
|
|
3945
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3946
|
-
},
|
|
3947
|
-
"test-projects/spring-boot-app/ai/summary.md": {
|
|
3948
|
-
"path": "test-projects/spring-boot-app/ai/summary.md",
|
|
3949
|
-
"hash": "b0b1433dd60af9373e118e7c6b018601",
|
|
3950
|
-
"mtime": 1773853770793.2217,
|
|
3951
|
-
"size": 143,
|
|
3952
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3953
|
-
},
|
|
3954
|
-
"test-projects/spring-boot-app/ai/symbols.json": {
|
|
3955
|
-
"path": "test-projects/spring-boot-app/ai/symbols.json",
|
|
3956
|
-
"hash": "b2578a94b3c80dfdfc14b3ea4d083b90",
|
|
3957
|
-
"mtime": 1773853770797.222,
|
|
3958
|
-
"size": 25556,
|
|
3959
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3960
|
-
},
|
|
3961
|
-
"test-projects/spring-boot-app/ai/tech_stack.md": {
|
|
3962
|
-
"path": "test-projects/spring-boot-app/ai/tech_stack.md",
|
|
3963
|
-
"hash": "5c79ac677f9fab6c1558ed3e32f1bd85",
|
|
3964
|
-
"mtime": 1773853770795.222,
|
|
3965
|
-
"size": 338,
|
|
3966
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3967
|
-
},
|
|
3968
|
-
"test-projects/spring-boot-app/ai/tools.json": {
|
|
3969
|
-
"path": "test-projects/spring-boot-app/ai/tools.json",
|
|
3970
|
-
"hash": "b1356e52c74e9b3b6a0d397b790a4968",
|
|
3971
|
-
"mtime": 1773853770803.222,
|
|
3972
|
-
"size": 138,
|
|
3973
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3974
|
-
},
|
|
3975
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/DemoApplication.java": {
|
|
3976
|
-
"path": "test-projects/spring-boot-app/src/main/java/com/example/demo/DemoApplication.java",
|
|
3977
|
-
"hash": "2d75ac141d2c8033430f3380b665baa2",
|
|
3978
|
-
"mtime": 1773853571729.4216,
|
|
3979
|
-
"size": 315,
|
|
3980
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3981
|
-
},
|
|
3982
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/CommentController.java": {
|
|
3983
|
-
"path": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/CommentController.java",
|
|
3984
|
-
"hash": "5b6b97f35e3c2776a8beb278db3fb9aa",
|
|
3985
|
-
"mtime": 1773853662865.6997,
|
|
3986
|
-
"size": 3158,
|
|
3987
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3988
|
-
},
|
|
3989
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/PostController.java": {
|
|
3990
|
-
"path": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/PostController.java",
|
|
3991
|
-
"hash": "17440d8fbbd9b6ac6f72df6f8549beae",
|
|
3992
|
-
"mtime": 1773853649501.512,
|
|
3993
|
-
"size": 2944,
|
|
3994
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
3995
|
-
},
|
|
3996
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/UserController.java": {
|
|
3997
|
-
"path": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/UserController.java",
|
|
3998
|
-
"hash": "f6250869c401aa8a10575ed850358ff3",
|
|
3999
|
-
"mtime": 1773853637492.3433,
|
|
4000
|
-
"size": 2725,
|
|
4001
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
4002
|
-
},
|
|
4003
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/models/Comment.java": {
|
|
4004
|
-
"path": "test-projects/spring-boot-app/src/main/java/com/example/demo/models/Comment.java",
|
|
4005
|
-
"hash": "a9a5d05a4b9d9f84ab9f414f44b35e87",
|
|
4006
|
-
"mtime": 1773853589658.6726,
|
|
4007
|
-
"size": 793,
|
|
4008
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
4009
|
-
},
|
|
4010
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/models/Post.java": {
|
|
4011
|
-
"path": "test-projects/spring-boot-app/src/main/java/com/example/demo/models/Post.java",
|
|
4012
|
-
"hash": "88f4abb8eeed067c6de4ee4d2771d607",
|
|
4013
|
-
"mtime": 1773853585054.6082,
|
|
4014
|
-
"size": 1234,
|
|
4015
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
4016
|
-
},
|
|
4017
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/models/User.java": {
|
|
4018
|
-
"path": "test-projects/spring-boot-app/src/main/java/com/example/demo/models/User.java",
|
|
4019
|
-
"hash": "b2dfa90af2b99d773e509ff41b449377",
|
|
4020
|
-
"mtime": 1773853578068.5103,
|
|
4021
|
-
"size": 979,
|
|
4022
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
4023
|
-
},
|
|
4024
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/CommentRepository.java": {
|
|
4025
|
-
"path": "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/CommentRepository.java",
|
|
4026
|
-
"hash": "8f53f0b36acfeae6e976c59947225b0a",
|
|
4027
|
-
"mtime": 1773853599958.817,
|
|
4028
|
-
"size": 554,
|
|
4029
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
4030
|
-
},
|
|
4031
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/PostRepository.java": {
|
|
4032
|
-
"path": "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/PostRepository.java",
|
|
4033
|
-
"hash": "71da6b918547e00329c3417841fa1f1e",
|
|
4034
|
-
"mtime": 1773853597248.7788,
|
|
4035
|
-
"size": 480,
|
|
4036
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
4037
|
-
},
|
|
4038
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/UserRepository.java": {
|
|
4039
|
-
"path": "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/UserRepository.java",
|
|
4040
|
-
"hash": "e8578153133af2fec45af59a695abcb5",
|
|
4041
|
-
"mtime": 1773853592037.7058,
|
|
4042
|
-
"size": 388,
|
|
4043
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
4044
|
-
},
|
|
4045
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/services/PostService.java": {
|
|
4046
|
-
"path": "test-projects/spring-boot-app/src/main/java/com/example/demo/services/PostService.java",
|
|
4047
|
-
"hash": "cceae946c06807fb78b1a5427deb098e",
|
|
4048
|
-
"mtime": 1773853621141.1138,
|
|
4049
|
-
"size": 2535,
|
|
4050
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
4051
|
-
},
|
|
4052
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/services/UserService.java": {
|
|
4053
|
-
"path": "test-projects/spring-boot-app/src/main/java/com/example/demo/services/UserService.java",
|
|
4054
|
-
"hash": "fb164c2fa54b3195392774a0ca15d740",
|
|
4055
|
-
"mtime": 1773853608542.937,
|
|
4056
|
-
"size": 1907,
|
|
4057
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
4058
|
-
},
|
|
4059
|
-
"tests/adapters.test.ts": {
|
|
4060
|
-
"path": "tests/adapters.test.ts",
|
|
4061
|
-
"hash": "dd001e296fb4f6840c55cace91598fe3",
|
|
4062
|
-
"mtime": 1773189127885.884,
|
|
4063
|
-
"size": 5484,
|
|
4064
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
4065
|
-
},
|
|
4066
|
-
"tests/e2e/README.md": {
|
|
4067
|
-
"path": "tests/e2e/README.md",
|
|
4068
|
-
"hash": "7f999ef4a2cf0b3aead8e52722a81922",
|
|
4069
|
-
"mtime": 1773777663589.9187,
|
|
4070
|
-
"size": 2427,
|
|
4071
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
4072
|
-
},
|
|
4073
|
-
"tests/gitAnalyzer.test.ts": {
|
|
4074
|
-
"path": "tests/gitAnalyzer.test.ts",
|
|
4075
|
-
"hash": "ce622fbb549463aaae743c63a4893b19",
|
|
4076
|
-
"mtime": 1773238789169.5671,
|
|
4077
|
-
"size": 4818,
|
|
4078
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
4079
|
-
},
|
|
4080
|
-
"tests/incrementalAnalyzer.test.ts": {
|
|
4081
|
-
"path": "tests/incrementalAnalyzer.test.ts",
|
|
4082
|
-
"hash": "bc6176d6120da7f2ec3329c9fb6509a7",
|
|
4083
|
-
"mtime": 1773247021660.156,
|
|
4084
|
-
"size": 2860,
|
|
4085
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
4086
|
-
},
|
|
4087
|
-
"tests/knowledgeGraph.test.ts": {
|
|
4088
|
-
"path": "tests/knowledgeGraph.test.ts",
|
|
4089
|
-
"hash": "cf4ca144fef98d0bceb25faf2fc8ca3c",
|
|
4090
|
-
"mtime": 1773956823969.7012,
|
|
4091
|
-
"size": 4998,
|
|
4092
|
-
"indexedAt": "2026-03-19T21:47:18.435Z"
|
|
4093
|
-
},
|
|
4094
|
-
"tests/lazyAnalyzer.test.ts": {
|
|
4095
|
-
"path": "tests/lazyAnalyzer.test.ts",
|
|
4096
|
-
"hash": "6726ead95b81f122da2bfa47db63964f",
|
|
4097
|
-
"mtime": 1773258331083.3643,
|
|
4098
|
-
"size": 7239,
|
|
4099
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
4100
|
-
},
|
|
4101
|
-
"tests/schema.test.ts": {
|
|
4102
|
-
"path": "tests/schema.test.ts",
|
|
4103
|
-
"hash": "0e54cc7b18fdc335a08ad5cd021cc6f7",
|
|
4104
|
-
"mtime": 1773251240586.4749,
|
|
4105
|
-
"size": 6626,
|
|
4106
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
4107
|
-
},
|
|
4108
|
-
"tests/semanticContexts.test.ts": {
|
|
4109
|
-
"path": "tests/semanticContexts.test.ts",
|
|
4110
|
-
"hash": "52883ed5b704088e58cbbc0c505d2af2",
|
|
4111
|
-
"mtime": 1773780147914.5684,
|
|
4112
|
-
"size": 14187,
|
|
4113
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
4114
|
-
},
|
|
4115
|
-
"tsconfig.json": {
|
|
4116
|
-
"path": "tsconfig.json",
|
|
4117
|
-
"hash": "7f7a4bcb349bfbd33e1550e0b02d501b",
|
|
4118
|
-
"mtime": 1773004002782.7,
|
|
4119
|
-
"size": 475,
|
|
4120
|
-
"indexedAt": "2026-03-18T19:21:24.580Z"
|
|
4121
|
-
},
|
|
4122
|
-
"dist/analyzers/symbols.js": {
|
|
4123
|
-
"path": "dist/analyzers/symbols.js",
|
|
4124
|
-
"hash": "d328f27f40a9370b7d1678961429ecb7",
|
|
4125
|
-
"mtime": 1773956805200.4346,
|
|
4126
|
-
"size": 18216,
|
|
4127
|
-
"indexedAt": "2026-03-19T21:47:18.432Z"
|
|
4128
|
-
},
|
|
4129
|
-
"dist/analyzers/symbols.js.map": {
|
|
4130
|
-
"path": "dist/analyzers/symbols.js.map",
|
|
4131
|
-
"hash": "1ea7a879f39a600109ce98c922c86cf2",
|
|
4132
|
-
"mtime": 1773956805200.4346,
|
|
4133
|
-
"size": 17064,
|
|
4134
|
-
"indexedAt": "2026-03-19T21:47:18.432Z"
|
|
4135
|
-
},
|
|
4136
|
-
"node_modules/.package-lock.json": {
|
|
4137
|
-
"path": "node_modules/.package-lock.json",
|
|
4138
|
-
"hash": "51c5fbb03a3c6d42a7510fe50ec9f63b",
|
|
4139
|
-
"mtime": 1773949040754.7563,
|
|
4140
|
-
"size": 79250,
|
|
4141
|
-
"indexedAt": "2026-03-19T21:59:56.032Z"
|
|
4142
|
-
},
|
|
4143
|
-
"node_modules/estree-walker/README.md": {
|
|
4144
|
-
"path": "node_modules/estree-walker/README.md",
|
|
4145
|
-
"hash": "5f9f4c15b1e6b440b3aa4823ea00102b",
|
|
4146
|
-
"mtime": 1773949039529.2795,
|
|
4147
|
-
"size": 1591,
|
|
4148
|
-
"indexedAt": "2026-03-19T21:59:56.032Z"
|
|
4149
|
-
},
|
|
4150
|
-
"node_modules/estree-walker/package.json": {
|
|
4151
|
-
"path": "node_modules/estree-walker/package.json",
|
|
4152
|
-
"hash": "2aad9549ac50c68535376606fc432447",
|
|
4153
|
-
"mtime": 1773949039528.9124,
|
|
4154
|
-
"size": 720,
|
|
4155
|
-
"indexedAt": "2026-03-19T21:59:56.032Z"
|
|
4156
|
-
},
|
|
4157
|
-
"node_modules/estree-walker/src/async.js": {
|
|
4158
|
-
"path": "node_modules/estree-walker/src/async.js",
|
|
4159
|
-
"hash": "dc39d8d0ac14f7f715ed8d4fafdc0e8a",
|
|
4160
|
-
"mtime": 1773949039527.738,
|
|
4161
|
-
"size": 3474,
|
|
4162
|
-
"indexedAt": "2026-03-19T21:59:56.032Z"
|
|
4163
|
-
},
|
|
4164
|
-
"node_modules/estree-walker/src/index.js": {
|
|
4165
|
-
"path": "node_modules/estree-walker/src/index.js",
|
|
4166
|
-
"hash": "9b6f26f366d15e040471e3293d14d542",
|
|
4167
|
-
"mtime": 1773949039527.738,
|
|
4168
|
-
"size": 806,
|
|
4169
|
-
"indexedAt": "2026-03-19T21:59:56.032Z"
|
|
4170
|
-
},
|
|
4171
|
-
"node_modules/estree-walker/src/sync.js": {
|
|
4172
|
-
"path": "node_modules/estree-walker/src/sync.js",
|
|
4173
|
-
"hash": "962561751bf71b557617efa5a502a464",
|
|
4174
|
-
"mtime": 1773949039528.6272,
|
|
4175
|
-
"size": 3418,
|
|
4176
|
-
"indexedAt": "2026-03-19T21:59:56.032Z"
|
|
4177
|
-
},
|
|
4178
|
-
"node_modules/estree-walker/src/walker.js": {
|
|
4179
|
-
"path": "node_modules/estree-walker/src/walker.js",
|
|
4180
|
-
"hash": "e202e77221195e3c5ea9287ad2b1b77b",
|
|
4181
|
-
"mtime": 1773949039528.9124,
|
|
4182
|
-
"size": 1393,
|
|
4183
|
-
"indexedAt": "2026-03-19T21:59:56.032Z"
|
|
4184
|
-
},
|
|
4185
|
-
"node_modules/estree-walker/types/async.d.ts": {
|
|
4186
|
-
"path": "node_modules/estree-walker/types/async.d.ts",
|
|
4187
|
-
"hash": "651825d9064839c1fdeee83756536c0e",
|
|
4188
|
-
"mtime": 1773949039529.5999,
|
|
4189
|
-
"size": 1455,
|
|
4190
|
-
"indexedAt": "2026-03-19T21:59:56.032Z"
|
|
4191
|
-
},
|
|
4192
|
-
"node_modules/estree-walker/types/index.d.ts": {
|
|
4193
|
-
"path": "node_modules/estree-walker/types/index.d.ts",
|
|
4194
|
-
"hash": "68c13af0ee8ef9f0ac54d1655f402094",
|
|
4195
|
-
"mtime": 1773949039529.9907,
|
|
4196
|
-
"size": 858,
|
|
4197
|
-
"indexedAt": "2026-03-19T21:59:56.032Z"
|
|
4198
|
-
},
|
|
4199
|
-
"node_modules/estree-walker/types/sync.d.ts": {
|
|
4200
|
-
"path": "node_modules/estree-walker/types/sync.d.ts",
|
|
4201
|
-
"hash": "d293f438b8e9f975bda0a80f85ae0eff",
|
|
4202
|
-
"mtime": 1773949039530.3896,
|
|
4203
|
-
"size": 1408,
|
|
4204
|
-
"indexedAt": "2026-03-19T21:59:56.032Z"
|
|
4205
|
-
},
|
|
4206
|
-
"node_modules/estree-walker/types/walker.d.ts": {
|
|
4207
|
-
"path": "node_modules/estree-walker/types/walker.d.ts",
|
|
4208
|
-
"hash": "42a219a4529f7481d67fd48542b2985d",
|
|
4209
|
-
"mtime": 1773949039530.499,
|
|
4210
|
-
"size": 1350,
|
|
4211
|
-
"indexedAt": "2026-03-19T21:59:56.032Z"
|
|
4212
|
-
},
|
|
4213
|
-
"node_modules/vite/LICENSE.md": {
|
|
4214
|
-
"path": "node_modules/vite/LICENSE.md",
|
|
4215
|
-
"hash": "cfd14b1c6c896e15e64a3365156bcd19",
|
|
4216
|
-
"mtime": 1773949039640.7397,
|
|
4217
|
-
"size": 108487,
|
|
4218
|
-
"indexedAt": "2026-03-19T21:59:56.033Z"
|
|
4219
|
-
},
|
|
4220
|
-
"node_modules/vite/README.md": {
|
|
4221
|
-
"path": "node_modules/vite/README.md",
|
|
4222
|
-
"hash": "339be6242fa4d05afabd1d4093d7cf2a",
|
|
4223
|
-
"mtime": 1773949039640.7397,
|
|
4224
|
-
"size": 1154,
|
|
4225
|
-
"indexedAt": "2026-03-19T21:59:56.033Z"
|
|
4226
|
-
},
|
|
4227
|
-
"node_modules/vite/bin/vite.js": {
|
|
4228
|
-
"path": "node_modules/vite/bin/vite.js",
|
|
4229
|
-
"hash": "503ab1a1ada32bbd8efe83aa1066d06e",
|
|
4230
|
-
"mtime": 1773949039640.1526,
|
|
4231
|
-
"size": 2574,
|
|
4232
|
-
"indexedAt": "2026-03-19T21:59:56.033Z"
|
|
4233
|
-
},
|
|
4234
|
-
"node_modules/vite/client.d.ts": {
|
|
4235
|
-
"path": "node_modules/vite/client.d.ts",
|
|
4236
|
-
"hash": "d51e7d8f613c7f4cff6deaff73aea46e",
|
|
4237
|
-
"mtime": 1773949039641.7798,
|
|
4238
|
-
"size": 5109,
|
|
4239
|
-
"indexedAt": "2026-03-19T21:59:56.033Z"
|
|
4240
|
-
},
|
|
4241
|
-
"node_modules/vite/dist/client/client.mjs": {
|
|
4242
|
-
"path": "node_modules/vite/dist/client/client.mjs",
|
|
4243
|
-
"hash": "77bc81a28119d359086d7fbbe9b457e3",
|
|
4244
|
-
"mtime": 1773949039640.7397,
|
|
4245
|
-
"size": 38561,
|
|
4246
|
-
"indexedAt": "2026-03-19T21:59:56.033Z"
|
|
4247
|
-
},
|
|
4248
|
-
"node_modules/vite/dist/client/env.mjs": {
|
|
4249
|
-
"path": "node_modules/vite/dist/client/env.mjs",
|
|
4250
|
-
"hash": "4913c910f4a0f9bbf20ec229ce46ad0a",
|
|
4251
|
-
"mtime": 1773949039641.7798,
|
|
4252
|
-
"size": 612,
|
|
4253
|
-
"indexedAt": "2026-03-19T21:59:56.033Z"
|
|
4254
|
-
},
|
|
4255
|
-
"node_modules/vite/dist/node/cli.js": {
|
|
4256
|
-
"path": "node_modules/vite/dist/node/cli.js",
|
|
4257
|
-
"hash": "9a5d30a7d9e8284071fb8985a07cf74e",
|
|
4258
|
-
"mtime": 1773949039583.7388,
|
|
4259
|
-
"size": 29867,
|
|
4260
|
-
"indexedAt": "2026-03-19T21:59:56.033Z"
|
|
4261
|
-
},
|
|
4262
|
-
"node_modules/vite/dist/node/index.d.ts": {
|
|
4263
|
-
"path": "node_modules/vite/dist/node/index.d.ts",
|
|
4264
|
-
"hash": "f431de1714f423247a8a9945991aef5d",
|
|
4265
|
-
"mtime": 1773949039644.7397,
|
|
4266
|
-
"size": 156843,
|
|
4267
|
-
"indexedAt": "2026-03-19T21:59:56.033Z"
|
|
4268
|
-
},
|
|
4269
|
-
"node_modules/vite/dist/node/index.js": {
|
|
4270
|
-
"path": "node_modules/vite/dist/node/index.js",
|
|
4271
|
-
"hash": "b63fbbf3e4af552cd9d40677bd5b3f09",
|
|
4272
|
-
"mtime": 1773949039600.739,
|
|
4273
|
-
"size": 2726,
|
|
4274
|
-
"indexedAt": "2026-03-19T21:59:56.033Z"
|
|
4275
|
-
},
|
|
4276
|
-
"node_modules/vite/package.json": {
|
|
4277
|
-
"path": "node_modules/vite/package.json",
|
|
4278
|
-
"hash": "d6152cf61155b99f9cd7fb5d58776291",
|
|
4279
|
-
"mtime": 1773949039640.1526,
|
|
4280
|
-
"size": 5028,
|
|
4281
|
-
"indexedAt": "2026-03-19T21:59:56.033Z"
|
|
4282
|
-
},
|
|
4283
|
-
"node_modules/vite/types/customEvent.d.ts": {
|
|
4284
|
-
"path": "node_modules/vite/types/customEvent.d.ts",
|
|
4285
|
-
"hash": "5eb393ad7a7e6dad5016456a2c692d23",
|
|
4286
|
-
"mtime": 1773949039642.7354,
|
|
4287
|
-
"size": 1952,
|
|
4288
|
-
"indexedAt": "2026-03-19T21:59:56.033Z"
|
|
4289
|
-
},
|
|
4290
|
-
"node_modules/vite/types/hmrPayload.d.ts": {
|
|
4291
|
-
"path": "node_modules/vite/types/hmrPayload.d.ts",
|
|
4292
|
-
"hash": "4cff3839d124c5728c4098ada4760463",
|
|
4293
|
-
"mtime": 1773949039642.7397,
|
|
4294
|
-
"size": 1398,
|
|
4295
|
-
"indexedAt": "2026-03-19T21:59:56.033Z"
|
|
4296
|
-
},
|
|
4297
|
-
"node_modules/vite/types/hot.d.ts": {
|
|
4298
|
-
"path": "node_modules/vite/types/hot.d.ts",
|
|
4299
|
-
"hash": "03d827c44c73de98f1c8716e6846adc9",
|
|
4300
|
-
"mtime": 1773949039643.2336,
|
|
4301
|
-
"size": 1063,
|
|
4302
|
-
"indexedAt": "2026-03-19T21:59:56.033Z"
|
|
4303
|
-
},
|
|
4304
|
-
"node_modules/vite/types/importGlob.d.ts": {
|
|
4305
|
-
"path": "node_modules/vite/types/importGlob.d.ts",
|
|
4306
|
-
"hash": "60c4cc95ae71de9ed6d6a9fa003d32d0",
|
|
4307
|
-
"mtime": 1773949039643.4714,
|
|
4308
|
-
"size": 2291,
|
|
4309
|
-
"indexedAt": "2026-03-19T21:59:56.034Z"
|
|
4310
|
-
},
|
|
4311
|
-
"node_modules/vite/types/importMeta.d.ts": {
|
|
4312
|
-
"path": "node_modules/vite/types/importMeta.d.ts",
|
|
4313
|
-
"hash": "29a53ee848664f925fd1d8af2d0a1bbb",
|
|
4314
|
-
"mtime": 1773949039643.5847,
|
|
4315
|
-
"size": 884,
|
|
4316
|
-
"indexedAt": "2026-03-19T21:59:56.034Z"
|
|
4317
|
-
},
|
|
4318
|
-
"node_modules/vite/types/metadata.d.ts": {
|
|
4319
|
-
"path": "node_modules/vite/types/metadata.d.ts",
|
|
4320
|
-
"hash": "c416ad28a397df838e5af8ec9a238db3",
|
|
4321
|
-
"mtime": 1773949039644.7397,
|
|
4322
|
-
"size": 1133,
|
|
4323
|
-
"indexedAt": "2026-03-19T21:59:56.034Z"
|
|
4324
|
-
},
|
|
4325
|
-
"ai-context/index-state.json": {
|
|
4326
|
-
"path": "ai-context/index-state.json",
|
|
4327
|
-
"hash": "4900fa3e21bf3006a85c240380034d92",
|
|
4328
|
-
"mtime": 1773956838437.9072,
|
|
4329
|
-
"size": 164653,
|
|
4330
|
-
"indexedAt": "2026-03-19T21:59:56.032Z"
|
|
4331
|
-
},
|
|
4332
|
-
"tests/phase2-fixes.test.ts": {
|
|
4333
|
-
"path": "tests/phase2-fixes.test.ts",
|
|
4334
|
-
"hash": "fbd4deb49687f6282dd371914f0c173b",
|
|
4335
|
-
"mtime": 1773956792017.2476,
|
|
4336
|
-
"size": 6287,
|
|
4337
|
-
"indexedAt": "2026-03-19T21:47:18.435Z"
|
|
4338
|
-
}
|
|
4339
|
-
}
|
|
4340
|
-
}
|