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
package/ai-context/index.db
DELETED
|
Binary file
|
package/ai-context/modules.json
DELETED
|
@@ -1,532 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"modules": {
|
|
3
|
-
".netlify": {
|
|
4
|
-
"path": ".netlify",
|
|
5
|
-
"files": [
|
|
6
|
-
".netlify/state.json"
|
|
7
|
-
]
|
|
8
|
-
},
|
|
9
|
-
"docs": {
|
|
10
|
-
"path": "docs",
|
|
11
|
-
"files": [
|
|
12
|
-
"docs/.vitepress/config.ts",
|
|
13
|
-
"docs/.vitepress/theme/custom.css",
|
|
14
|
-
"docs/.vitepress/theme/index.ts",
|
|
15
|
-
"docs/es/guide/adapters.md",
|
|
16
|
-
"docs/es/guide/ai-repository-schema.md",
|
|
17
|
-
"docs/es/guide/features.md",
|
|
18
|
-
"docs/es/guide/flows.md",
|
|
19
|
-
"docs/es/guide/getting-started.md",
|
|
20
|
-
"docs/es/guide/git-intelligence.md",
|
|
21
|
-
"docs/es/guide/incremental-analysis.md",
|
|
22
|
-
"docs/es/guide/knowledge-graph.md",
|
|
23
|
-
"docs/es/guide/lazy-indexing.md",
|
|
24
|
-
"docs/es/guide/performance.md",
|
|
25
|
-
"docs/es/index.md",
|
|
26
|
-
"docs/examples/express-api.md",
|
|
27
|
-
"docs/examples/index.md",
|
|
28
|
-
"docs/examples/python-django.md",
|
|
29
|
-
"docs/examples/react-app.md",
|
|
30
|
-
"docs/guide/adapters.md",
|
|
31
|
-
"docs/guide/ai-repository-schema.md",
|
|
32
|
-
"docs/guide/architecture.md",
|
|
33
|
-
"docs/guide/flows.md",
|
|
34
|
-
"docs/guide/getting-started.md",
|
|
35
|
-
"docs/guide/git-intelligence.md",
|
|
36
|
-
"docs/guide/incremental-analysis.md",
|
|
37
|
-
"docs/guide/installation.md",
|
|
38
|
-
"docs/guide/knowledge-graph.md",
|
|
39
|
-
"docs/guide/lazy-indexing.md",
|
|
40
|
-
"docs/guide/performance.md",
|
|
41
|
-
"docs/guide/quick-start.md",
|
|
42
|
-
"docs/index.md",
|
|
43
|
-
"docs/reference/commands.md"
|
|
44
|
-
]
|
|
45
|
-
},
|
|
46
|
-
"examples": {
|
|
47
|
-
"path": "examples",
|
|
48
|
-
"files": [
|
|
49
|
-
"examples/01-express-api.md",
|
|
50
|
-
"examples/02-react-app.md",
|
|
51
|
-
"examples/03-python-django.md",
|
|
52
|
-
"examples/README.md"
|
|
53
|
-
]
|
|
54
|
-
},
|
|
55
|
-
"src": {
|
|
56
|
-
"path": "src",
|
|
57
|
-
"files": [
|
|
58
|
-
"src/analyzers/aiRules.ts",
|
|
59
|
-
"src/analyzers/androidResources.ts",
|
|
60
|
-
"src/analyzers/architecture.ts",
|
|
61
|
-
"src/analyzers/conventions.ts",
|
|
62
|
-
"src/analyzers/dependencies.ts",
|
|
63
|
-
"src/analyzers/entrypoints.ts",
|
|
64
|
-
"src/analyzers/gradleModules.ts",
|
|
65
|
-
"src/analyzers/symbols.ts",
|
|
66
|
-
"src/analyzers/techStack.ts",
|
|
67
|
-
"src/commands/ai-first.ts",
|
|
68
|
-
"src/commands/doctor.ts",
|
|
69
|
-
"src/commands/explore.ts",
|
|
70
|
-
"src/core/adapters/adapterRegistry.ts",
|
|
71
|
-
"src/core/adapters/baseAdapter.ts",
|
|
72
|
-
"src/core/adapters/community/fastapiAdapter.ts",
|
|
73
|
-
"src/core/adapters/community/index.ts",
|
|
74
|
-
"src/core/adapters/community/laravelAdapter.ts",
|
|
75
|
-
"src/core/adapters/community/nestjsAdapter.ts",
|
|
76
|
-
"src/core/adapters/community/phoenixAdapter.ts",
|
|
77
|
-
"src/core/adapters/community/springBootAdapter.ts",
|
|
78
|
-
"src/core/adapters/dotnetAdapter.ts",
|
|
79
|
-
"src/core/adapters/index.ts",
|
|
80
|
-
"src/core/adapters/javascriptAdapter.ts",
|
|
81
|
-
"src/core/adapters/pythonAdapter.ts",
|
|
82
|
-
"src/core/adapters/railsAdapter.ts",
|
|
83
|
-
"src/core/adapters/salesforceAdapter.ts",
|
|
84
|
-
"src/core/adapters/sdk.ts",
|
|
85
|
-
"src/core/aiContextGenerator.ts",
|
|
86
|
-
"src/core/ccp.ts",
|
|
87
|
-
"src/core/chunker.ts",
|
|
88
|
-
"src/core/contextGenerator.ts",
|
|
89
|
-
"src/core/contextPacket.ts",
|
|
90
|
-
"src/core/embeddings.ts",
|
|
91
|
-
"src/core/gitAnalyzer.ts",
|
|
92
|
-
"src/core/hierarchyGenerator.ts",
|
|
93
|
-
"src/core/incrementalAnalyzer.ts",
|
|
94
|
-
"src/core/indexState.ts",
|
|
95
|
-
"src/core/indexer.ts",
|
|
96
|
-
"src/core/knowledgeGraphBuilder.ts",
|
|
97
|
-
"src/core/lazyAnalyzer.ts",
|
|
98
|
-
"src/core/moduleGraph.ts",
|
|
99
|
-
"src/core/repoMapper.ts",
|
|
100
|
-
"src/core/repoScanner.ts",
|
|
101
|
-
"src/core/schema.ts",
|
|
102
|
-
"src/core/semanticContexts.ts",
|
|
103
|
-
"src/core/symbolGraph.ts",
|
|
104
|
-
"src/index.ts",
|
|
105
|
-
"src/types/sql.js.d.ts",
|
|
106
|
-
"src/utils/fileUtils.ts"
|
|
107
|
-
]
|
|
108
|
-
},
|
|
109
|
-
"test-projects": {
|
|
110
|
-
"path": "test-projects",
|
|
111
|
-
"files": [
|
|
112
|
-
"test-projects/django-app/README.md",
|
|
113
|
-
"test-projects/django-app/ai/ai_context.md",
|
|
114
|
-
"test-projects/django-app/ai/ai_rules.md",
|
|
115
|
-
"test-projects/django-app/ai/architecture.md",
|
|
116
|
-
"test-projects/django-app/ai/cache.json",
|
|
117
|
-
"test-projects/django-app/ai/context/flows/views.json",
|
|
118
|
-
"test-projects/django-app/ai/conventions.md",
|
|
119
|
-
"test-projects/django-app/ai/dependencies.json",
|
|
120
|
-
"test-projects/django-app/ai/entrypoints.md",
|
|
121
|
-
"test-projects/django-app/ai/files.json",
|
|
122
|
-
"test-projects/django-app/ai/graph/knowledge-graph.json",
|
|
123
|
-
"test-projects/django-app/ai/graph/module-graph.json",
|
|
124
|
-
"test-projects/django-app/ai/graph/symbol-graph.json",
|
|
125
|
-
"test-projects/django-app/ai/graph/symbol-references.json",
|
|
126
|
-
"test-projects/django-app/ai/index-state.json",
|
|
127
|
-
"test-projects/django-app/ai/modules.json",
|
|
128
|
-
"test-projects/django-app/ai/project.json",
|
|
129
|
-
"test-projects/django-app/ai/repo_map.json",
|
|
130
|
-
"test-projects/django-app/ai/repo_map.md",
|
|
131
|
-
"test-projects/django-app/ai/schema.json",
|
|
132
|
-
"test-projects/django-app/ai/summary.md",
|
|
133
|
-
"test-projects/django-app/ai/symbols.json",
|
|
134
|
-
"test-projects/django-app/ai/tech_stack.md",
|
|
135
|
-
"test-projects/django-app/ai/tools.json",
|
|
136
|
-
"test-projects/django-app/blog/__init__.py",
|
|
137
|
-
"test-projects/django-app/blog/admin.py",
|
|
138
|
-
"test-projects/django-app/blog/models.py",
|
|
139
|
-
"test-projects/django-app/blog/serializers.py",
|
|
140
|
-
"test-projects/django-app/blog/urls.py",
|
|
141
|
-
"test-projects/django-app/blog/views.py",
|
|
142
|
-
"test-projects/django-app/django_app/__init__.py",
|
|
143
|
-
"test-projects/django-app/django_app/settings.py",
|
|
144
|
-
"test-projects/django-app/django_app/urls.py",
|
|
145
|
-
"test-projects/django-app/django_app/wsgi.py",
|
|
146
|
-
"test-projects/django-app/manage.py",
|
|
147
|
-
"test-projects/django-app/users/__init__.py",
|
|
148
|
-
"test-projects/django-app/users/admin.py",
|
|
149
|
-
"test-projects/django-app/users/models.py",
|
|
150
|
-
"test-projects/django-app/users/serializers.py",
|
|
151
|
-
"test-projects/django-app/users/urls.py",
|
|
152
|
-
"test-projects/django-app/users/views.py",
|
|
153
|
-
"test-projects/express-api/ai/ai_context.md",
|
|
154
|
-
"test-projects/express-api/ai/ai_rules.md",
|
|
155
|
-
"test-projects/express-api/ai/architecture.md",
|
|
156
|
-
"test-projects/express-api/ai/context/features/controllers.json",
|
|
157
|
-
"test-projects/express-api/ai/context/features/services.json",
|
|
158
|
-
"test-projects/express-api/ai/context/flows/auth.json",
|
|
159
|
-
"test-projects/express-api/ai/context/flows/user.json",
|
|
160
|
-
"test-projects/express-api/ai/conventions.md",
|
|
161
|
-
"test-projects/express-api/ai/dependencies.json",
|
|
162
|
-
"test-projects/express-api/ai/entrypoints.md",
|
|
163
|
-
"test-projects/express-api/ai/files.json",
|
|
164
|
-
"test-projects/express-api/ai/graph/knowledge-graph.json",
|
|
165
|
-
"test-projects/express-api/ai/index-state.json",
|
|
166
|
-
"test-projects/express-api/ai/modules.json",
|
|
167
|
-
"test-projects/express-api/ai/project.json",
|
|
168
|
-
"test-projects/express-api/ai/repo_map.json",
|
|
169
|
-
"test-projects/express-api/ai/repo_map.md",
|
|
170
|
-
"test-projects/express-api/ai/schema.json",
|
|
171
|
-
"test-projects/express-api/ai/summary.md",
|
|
172
|
-
"test-projects/express-api/ai/symbols.json",
|
|
173
|
-
"test-projects/express-api/ai/tech_stack.md",
|
|
174
|
-
"test-projects/express-api/ai/tools.json",
|
|
175
|
-
"test-projects/express-api/controllers/authController.js",
|
|
176
|
-
"test-projects/express-api/controllers/userController.js",
|
|
177
|
-
"test-projects/express-api/index.js",
|
|
178
|
-
"test-projects/express-api/middleware/authMiddleware.js",
|
|
179
|
-
"test-projects/express-api/models/userRepository.js",
|
|
180
|
-
"test-projects/express-api/package.json",
|
|
181
|
-
"test-projects/express-api/services/authService.js",
|
|
182
|
-
"test-projects/express-api/services/userService.js",
|
|
183
|
-
"test-projects/fastapi-app/README.md",
|
|
184
|
-
"test-projects/fastapi-app/ai/ai_context.md",
|
|
185
|
-
"test-projects/fastapi-app/ai/ai_rules.md",
|
|
186
|
-
"test-projects/fastapi-app/ai/architecture.md",
|
|
187
|
-
"test-projects/fastapi-app/ai/cache.json",
|
|
188
|
-
"test-projects/fastapi-app/ai/conventions.md",
|
|
189
|
-
"test-projects/fastapi-app/ai/dependencies.json",
|
|
190
|
-
"test-projects/fastapi-app/ai/entrypoints.md",
|
|
191
|
-
"test-projects/fastapi-app/ai/files.json",
|
|
192
|
-
"test-projects/fastapi-app/ai/graph/knowledge-graph.json",
|
|
193
|
-
"test-projects/fastapi-app/ai/graph/module-graph.json",
|
|
194
|
-
"test-projects/fastapi-app/ai/graph/symbol-graph.json",
|
|
195
|
-
"test-projects/fastapi-app/ai/graph/symbol-references.json",
|
|
196
|
-
"test-projects/fastapi-app/ai/index-state.json",
|
|
197
|
-
"test-projects/fastapi-app/ai/modules.json",
|
|
198
|
-
"test-projects/fastapi-app/ai/project.json",
|
|
199
|
-
"test-projects/fastapi-app/ai/repo_map.json",
|
|
200
|
-
"test-projects/fastapi-app/ai/repo_map.md",
|
|
201
|
-
"test-projects/fastapi-app/ai/schema.json",
|
|
202
|
-
"test-projects/fastapi-app/ai/summary.md",
|
|
203
|
-
"test-projects/fastapi-app/ai/symbols.json",
|
|
204
|
-
"test-projects/fastapi-app/ai/tech_stack.md",
|
|
205
|
-
"test-projects/fastapi-app/ai/tools.json",
|
|
206
|
-
"test-projects/fastapi-app/app/database.py",
|
|
207
|
-
"test-projects/fastapi-app/app/dependencies.py",
|
|
208
|
-
"test-projects/fastapi-app/app/main.py",
|
|
209
|
-
"test-projects/fastapi-app/app/models.py",
|
|
210
|
-
"test-projects/fastapi-app/app/routers/auth.py",
|
|
211
|
-
"test-projects/fastapi-app/app/routers/posts.py",
|
|
212
|
-
"test-projects/fastapi-app/app/schemas.py",
|
|
213
|
-
"test-projects/flask-app/README.md",
|
|
214
|
-
"test-projects/flask-app/ai/ai_context.md",
|
|
215
|
-
"test-projects/flask-app/ai/ai_rules.md",
|
|
216
|
-
"test-projects/flask-app/ai/architecture.md",
|
|
217
|
-
"test-projects/flask-app/ai/cache.json",
|
|
218
|
-
"test-projects/flask-app/ai/context/features/app.json",
|
|
219
|
-
"test-projects/flask-app/ai/context/flows/routes.json",
|
|
220
|
-
"test-projects/flask-app/ai/conventions.md",
|
|
221
|
-
"test-projects/flask-app/ai/dependencies.json",
|
|
222
|
-
"test-projects/flask-app/ai/entrypoints.md",
|
|
223
|
-
"test-projects/flask-app/ai/files.json",
|
|
224
|
-
"test-projects/flask-app/ai/graph/knowledge-graph.json",
|
|
225
|
-
"test-projects/flask-app/ai/graph/module-graph.json",
|
|
226
|
-
"test-projects/flask-app/ai/graph/symbol-graph.json",
|
|
227
|
-
"test-projects/flask-app/ai/graph/symbol-references.json",
|
|
228
|
-
"test-projects/flask-app/ai/index-state.json",
|
|
229
|
-
"test-projects/flask-app/ai/modules.json",
|
|
230
|
-
"test-projects/flask-app/ai/project.json",
|
|
231
|
-
"test-projects/flask-app/ai/repo_map.json",
|
|
232
|
-
"test-projects/flask-app/ai/repo_map.md",
|
|
233
|
-
"test-projects/flask-app/ai/schema.json",
|
|
234
|
-
"test-projects/flask-app/ai/summary.md",
|
|
235
|
-
"test-projects/flask-app/ai/symbols.json",
|
|
236
|
-
"test-projects/flask-app/ai/tech_stack.md",
|
|
237
|
-
"test-projects/flask-app/ai/tools.json",
|
|
238
|
-
"test-projects/flask-app/app/__init__.py",
|
|
239
|
-
"test-projects/flask-app/app/api/__init__.py",
|
|
240
|
-
"test-projects/flask-app/app/api/routes.py",
|
|
241
|
-
"test-projects/flask-app/app/auth/__init__.py",
|
|
242
|
-
"test-projects/flask-app/app/auth/forms.py",
|
|
243
|
-
"test-projects/flask-app/app/auth/routes.py",
|
|
244
|
-
"test-projects/flask-app/app/blog/__init__.py",
|
|
245
|
-
"test-projects/flask-app/app/blog/forms.py",
|
|
246
|
-
"test-projects/flask-app/app/blog/routes.py",
|
|
247
|
-
"test-projects/flask-app/app/main/__init__.py",
|
|
248
|
-
"test-projects/flask-app/app/main/routes.py",
|
|
249
|
-
"test-projects/flask-app/app/models.py",
|
|
250
|
-
"test-projects/flask-app/config.py",
|
|
251
|
-
"test-projects/laravel-app/README.md",
|
|
252
|
-
"test-projects/laravel-app/ai/ai_context.md",
|
|
253
|
-
"test-projects/laravel-app/ai/ai_rules.md",
|
|
254
|
-
"test-projects/laravel-app/ai/architecture.md",
|
|
255
|
-
"test-projects/laravel-app/ai/cache.json",
|
|
256
|
-
"test-projects/laravel-app/ai/context/features/app.json",
|
|
257
|
-
"test-projects/laravel-app/ai/context/flows/category.json",
|
|
258
|
-
"test-projects/laravel-app/ai/context/flows/comment.json",
|
|
259
|
-
"test-projects/laravel-app/ai/context/flows/post.json",
|
|
260
|
-
"test-projects/laravel-app/ai/context/flows/unnamed.json",
|
|
261
|
-
"test-projects/laravel-app/ai/conventions.md",
|
|
262
|
-
"test-projects/laravel-app/ai/dependencies.json",
|
|
263
|
-
"test-projects/laravel-app/ai/entrypoints.md",
|
|
264
|
-
"test-projects/laravel-app/ai/files.json",
|
|
265
|
-
"test-projects/laravel-app/ai/graph/knowledge-graph.json",
|
|
266
|
-
"test-projects/laravel-app/ai/graph/module-graph.json",
|
|
267
|
-
"test-projects/laravel-app/ai/graph/symbol-graph.json",
|
|
268
|
-
"test-projects/laravel-app/ai/graph/symbol-references.json",
|
|
269
|
-
"test-projects/laravel-app/ai/index-state.json",
|
|
270
|
-
"test-projects/laravel-app/ai/modules.json",
|
|
271
|
-
"test-projects/laravel-app/ai/project.json",
|
|
272
|
-
"test-projects/laravel-app/ai/repo_map.json",
|
|
273
|
-
"test-projects/laravel-app/ai/repo_map.md",
|
|
274
|
-
"test-projects/laravel-app/ai/schema.json",
|
|
275
|
-
"test-projects/laravel-app/ai/summary.md",
|
|
276
|
-
"test-projects/laravel-app/ai/symbols.json",
|
|
277
|
-
"test-projects/laravel-app/ai/tech_stack.md",
|
|
278
|
-
"test-projects/laravel-app/ai/tools.json",
|
|
279
|
-
"test-projects/laravel-app/app/Http/Controllers/Api/CategoryController.php",
|
|
280
|
-
"test-projects/laravel-app/app/Http/Controllers/Api/CommentController.php",
|
|
281
|
-
"test-projects/laravel-app/app/Http/Controllers/Api/PostController.php",
|
|
282
|
-
"test-projects/laravel-app/app/Http/Controllers/Controller.php",
|
|
283
|
-
"test-projects/laravel-app/app/Models/Category.php",
|
|
284
|
-
"test-projects/laravel-app/app/Models/Comment.php",
|
|
285
|
-
"test-projects/laravel-app/app/Models/Post.php",
|
|
286
|
-
"test-projects/laravel-app/app/Models/User.php",
|
|
287
|
-
"test-projects/laravel-app/bootstrap/app.php",
|
|
288
|
-
"test-projects/laravel-app/composer.json",
|
|
289
|
-
"test-projects/laravel-app/routes/api.php",
|
|
290
|
-
"test-projects/nestjs-backend/ai/ai_context.md",
|
|
291
|
-
"test-projects/nestjs-backend/ai/ai_rules.md",
|
|
292
|
-
"test-projects/nestjs-backend/ai/architecture.md",
|
|
293
|
-
"test-projects/nestjs-backend/ai/cache.json",
|
|
294
|
-
"test-projects/nestjs-backend/ai/context/features/src.json",
|
|
295
|
-
"test-projects/nestjs-backend/ai/context/flows/auth.controller.json",
|
|
296
|
-
"test-projects/nestjs-backend/ai/context/flows/auth.json",
|
|
297
|
-
"test-projects/nestjs-backend/ai/context/flows/users..json",
|
|
298
|
-
"test-projects/nestjs-backend/ai/context/flows/users.controller.json",
|
|
299
|
-
"test-projects/nestjs-backend/ai/context/flows/users.json",
|
|
300
|
-
"test-projects/nestjs-backend/ai/conventions.md",
|
|
301
|
-
"test-projects/nestjs-backend/ai/dependencies.json",
|
|
302
|
-
"test-projects/nestjs-backend/ai/entrypoints.md",
|
|
303
|
-
"test-projects/nestjs-backend/ai/files.json",
|
|
304
|
-
"test-projects/nestjs-backend/ai/graph/knowledge-graph.json",
|
|
305
|
-
"test-projects/nestjs-backend/ai/graph/module-graph.json",
|
|
306
|
-
"test-projects/nestjs-backend/ai/graph/symbol-graph.json",
|
|
307
|
-
"test-projects/nestjs-backend/ai/graph/symbol-references.json",
|
|
308
|
-
"test-projects/nestjs-backend/ai/index-state.json",
|
|
309
|
-
"test-projects/nestjs-backend/ai/modules.json",
|
|
310
|
-
"test-projects/nestjs-backend/ai/project.json",
|
|
311
|
-
"test-projects/nestjs-backend/ai/repo_map.json",
|
|
312
|
-
"test-projects/nestjs-backend/ai/repo_map.md",
|
|
313
|
-
"test-projects/nestjs-backend/ai/schema.json",
|
|
314
|
-
"test-projects/nestjs-backend/ai/summary.md",
|
|
315
|
-
"test-projects/nestjs-backend/ai/symbols.json",
|
|
316
|
-
"test-projects/nestjs-backend/ai/tech_stack.md",
|
|
317
|
-
"test-projects/nestjs-backend/ai/tools.json",
|
|
318
|
-
"test-projects/nestjs-backend/package.json",
|
|
319
|
-
"test-projects/nestjs-backend/src/app.module.ts",
|
|
320
|
-
"test-projects/nestjs-backend/src/auth/auth.controller.ts",
|
|
321
|
-
"test-projects/nestjs-backend/src/auth/auth.module.ts",
|
|
322
|
-
"test-projects/nestjs-backend/src/auth/auth.service.ts",
|
|
323
|
-
"test-projects/nestjs-backend/src/auth/dto/login.dto.ts",
|
|
324
|
-
"test-projects/nestjs-backend/src/auth/strategies/jwt.strategy.ts",
|
|
325
|
-
"test-projects/nestjs-backend/src/main.ts",
|
|
326
|
-
"test-projects/nestjs-backend/src/users/users.controller.ts",
|
|
327
|
-
"test-projects/nestjs-backend/src/users/users.module.ts",
|
|
328
|
-
"test-projects/nestjs-backend/src/users/users.service.ts",
|
|
329
|
-
"test-projects/nestjs-backend/tsconfig.json",
|
|
330
|
-
"test-projects/python-cli/__init__.py",
|
|
331
|
-
"test-projects/python-cli/ai/ai_context.md",
|
|
332
|
-
"test-projects/python-cli/ai/ai_rules.md",
|
|
333
|
-
"test-projects/python-cli/ai/architecture.md",
|
|
334
|
-
"test-projects/python-cli/ai/cache.json",
|
|
335
|
-
"test-projects/python-cli/ai/context/features/cli.json",
|
|
336
|
-
"test-projects/python-cli/ai/context/flows/list_.json",
|
|
337
|
-
"test-projects/python-cli/ai/context/flows/remove_.json",
|
|
338
|
-
"test-projects/python-cli/ai/conventions.md",
|
|
339
|
-
"test-projects/python-cli/ai/dependencies.json",
|
|
340
|
-
"test-projects/python-cli/ai/entrypoints.md",
|
|
341
|
-
"test-projects/python-cli/ai/files.json",
|
|
342
|
-
"test-projects/python-cli/ai/graph/knowledge-graph.json",
|
|
343
|
-
"test-projects/python-cli/ai/graph/module-graph.json",
|
|
344
|
-
"test-projects/python-cli/ai/graph/symbol-graph.json",
|
|
345
|
-
"test-projects/python-cli/ai/graph/symbol-references.json",
|
|
346
|
-
"test-projects/python-cli/ai/index-state.json",
|
|
347
|
-
"test-projects/python-cli/ai/modules.json",
|
|
348
|
-
"test-projects/python-cli/ai/project.json",
|
|
349
|
-
"test-projects/python-cli/ai/repo_map.json",
|
|
350
|
-
"test-projects/python-cli/ai/repo_map.md",
|
|
351
|
-
"test-projects/python-cli/ai/schema.json",
|
|
352
|
-
"test-projects/python-cli/ai/summary.md",
|
|
353
|
-
"test-projects/python-cli/ai/symbols.json",
|
|
354
|
-
"test-projects/python-cli/ai/tech_stack.md",
|
|
355
|
-
"test-projects/python-cli/ai/tools.json",
|
|
356
|
-
"test-projects/python-cli/cli/__init__.py",
|
|
357
|
-
"test-projects/python-cli/cli/add_command.py",
|
|
358
|
-
"test-projects/python-cli/cli/list_command.py",
|
|
359
|
-
"test-projects/python-cli/cli/remove_command.py",
|
|
360
|
-
"test-projects/python-cli/main.py",
|
|
361
|
-
"test-projects/python-cli/models/__init__.py",
|
|
362
|
-
"test-projects/python-cli/models/task.py",
|
|
363
|
-
"test-projects/python-cli/models/task_repository.py",
|
|
364
|
-
"test-projects/rails-app/README.md",
|
|
365
|
-
"test-projects/rails-app/ai/ai_context.md",
|
|
366
|
-
"test-projects/rails-app/ai/ai_rules.md",
|
|
367
|
-
"test-projects/rails-app/ai/architecture.md",
|
|
368
|
-
"test-projects/rails-app/ai/cache.json",
|
|
369
|
-
"test-projects/rails-app/ai/context/features/app.json",
|
|
370
|
-
"test-projects/rails-app/ai/context/features/config.json",
|
|
371
|
-
"test-projects/rails-app/ai/context/flows/application.json",
|
|
372
|
-
"test-projects/rails-app/ai/context/flows/application_.json",
|
|
373
|
-
"test-projects/rails-app/ai/context/flows/comments.json",
|
|
374
|
-
"test-projects/rails-app/ai/context/flows/comments_.json",
|
|
375
|
-
"test-projects/rails-app/ai/context/flows/posts.json",
|
|
376
|
-
"test-projects/rails-app/ai/context/flows/posts_.json",
|
|
377
|
-
"test-projects/rails-app/ai/context/flows/routes.json",
|
|
378
|
-
"test-projects/rails-app/ai/context/flows/users.json",
|
|
379
|
-
"test-projects/rails-app/ai/context/flows/users_.json",
|
|
380
|
-
"test-projects/rails-app/ai/conventions.md",
|
|
381
|
-
"test-projects/rails-app/ai/dependencies.json",
|
|
382
|
-
"test-projects/rails-app/ai/entrypoints.md",
|
|
383
|
-
"test-projects/rails-app/ai/files.json",
|
|
384
|
-
"test-projects/rails-app/ai/graph/knowledge-graph.json",
|
|
385
|
-
"test-projects/rails-app/ai/graph/module-graph.json",
|
|
386
|
-
"test-projects/rails-app/ai/graph/symbol-graph.json",
|
|
387
|
-
"test-projects/rails-app/ai/graph/symbol-references.json",
|
|
388
|
-
"test-projects/rails-app/ai/index-state.json",
|
|
389
|
-
"test-projects/rails-app/ai/modules.json",
|
|
390
|
-
"test-projects/rails-app/ai/project.json",
|
|
391
|
-
"test-projects/rails-app/ai/repo_map.json",
|
|
392
|
-
"test-projects/rails-app/ai/repo_map.md",
|
|
393
|
-
"test-projects/rails-app/ai/schema.json",
|
|
394
|
-
"test-projects/rails-app/ai/summary.md",
|
|
395
|
-
"test-projects/rails-app/ai/symbols.json",
|
|
396
|
-
"test-projects/rails-app/ai/tech_stack.md",
|
|
397
|
-
"test-projects/rails-app/ai/tools.json",
|
|
398
|
-
"test-projects/rails-app/app/controllers/api/comments_controller.rb",
|
|
399
|
-
"test-projects/rails-app/app/controllers/api/posts_controller.rb",
|
|
400
|
-
"test-projects/rails-app/app/controllers/api/users_controller.rb",
|
|
401
|
-
"test-projects/rails-app/app/controllers/application_controller.rb",
|
|
402
|
-
"test-projects/rails-app/app/models/comment.rb",
|
|
403
|
-
"test-projects/rails-app/app/models/post.rb",
|
|
404
|
-
"test-projects/rails-app/app/models/user.rb",
|
|
405
|
-
"test-projects/rails-app/app/services/post_service.rb",
|
|
406
|
-
"test-projects/rails-app/app/services/user_service.rb",
|
|
407
|
-
"test-projects/rails-app/config/application.rb",
|
|
408
|
-
"test-projects/rails-app/config/environment.rb",
|
|
409
|
-
"test-projects/rails-app/config/routes.rb",
|
|
410
|
-
"test-projects/react-app/ai/ai_context.md",
|
|
411
|
-
"test-projects/react-app/ai/ai_rules.md",
|
|
412
|
-
"test-projects/react-app/ai/architecture.md",
|
|
413
|
-
"test-projects/react-app/ai/cache.json",
|
|
414
|
-
"test-projects/react-app/ai/context/features/src.json",
|
|
415
|
-
"test-projects/react-app/ai/context/flows/UsersPage.json",
|
|
416
|
-
"test-projects/react-app/ai/context/flows/dashboard.json",
|
|
417
|
-
"test-projects/react-app/ai/context/flows/login.json",
|
|
418
|
-
"test-projects/react-app/ai/context/flows/users.json",
|
|
419
|
-
"test-projects/react-app/ai/conventions.md",
|
|
420
|
-
"test-projects/react-app/ai/dependencies.json",
|
|
421
|
-
"test-projects/react-app/ai/entrypoints.md",
|
|
422
|
-
"test-projects/react-app/ai/files.json",
|
|
423
|
-
"test-projects/react-app/ai/graph/knowledge-graph.json",
|
|
424
|
-
"test-projects/react-app/ai/graph/module-graph.json",
|
|
425
|
-
"test-projects/react-app/ai/graph/symbol-graph.json",
|
|
426
|
-
"test-projects/react-app/ai/graph/symbol-references.json",
|
|
427
|
-
"test-projects/react-app/ai/index-state.json",
|
|
428
|
-
"test-projects/react-app/ai/modules.json",
|
|
429
|
-
"test-projects/react-app/ai/project.json",
|
|
430
|
-
"test-projects/react-app/ai/repo_map.json",
|
|
431
|
-
"test-projects/react-app/ai/repo_map.md",
|
|
432
|
-
"test-projects/react-app/ai/schema.json",
|
|
433
|
-
"test-projects/react-app/ai/summary.md",
|
|
434
|
-
"test-projects/react-app/ai/symbols.json",
|
|
435
|
-
"test-projects/react-app/ai/tech_stack.md",
|
|
436
|
-
"test-projects/react-app/ai/tools.json",
|
|
437
|
-
"test-projects/react-app/package.json",
|
|
438
|
-
"test-projects/react-app/src/App.tsx",
|
|
439
|
-
"test-projects/react-app/src/context/AuthContext.tsx",
|
|
440
|
-
"test-projects/react-app/src/hooks/useAuth.ts",
|
|
441
|
-
"test-projects/react-app/src/main.tsx",
|
|
442
|
-
"test-projects/react-app/src/pages/DashboardPage.tsx",
|
|
443
|
-
"test-projects/react-app/src/pages/LoginPage.tsx",
|
|
444
|
-
"test-projects/react-app/src/pages/UsersPage.tsx",
|
|
445
|
-
"test-projects/react-app/src/services/userService.ts",
|
|
446
|
-
"test-projects/salesforce-cli/ai/ai_context.md",
|
|
447
|
-
"test-projects/salesforce-cli/ai/ai_rules.md",
|
|
448
|
-
"test-projects/salesforce-cli/ai/architecture.md",
|
|
449
|
-
"test-projects/salesforce-cli/ai/cache.json",
|
|
450
|
-
"test-projects/salesforce-cli/ai/context/features/force-app.json",
|
|
451
|
-
"test-projects/salesforce-cli/ai/context/flows/account.json",
|
|
452
|
-
"test-projects/salesforce-cli/ai/context/flows/opportunity.json",
|
|
453
|
-
"test-projects/salesforce-cli/ai/conventions.md",
|
|
454
|
-
"test-projects/salesforce-cli/ai/dependencies.json",
|
|
455
|
-
"test-projects/salesforce-cli/ai/entrypoints.md",
|
|
456
|
-
"test-projects/salesforce-cli/ai/files.json",
|
|
457
|
-
"test-projects/salesforce-cli/ai/graph/knowledge-graph.json",
|
|
458
|
-
"test-projects/salesforce-cli/ai/graph/module-graph.json",
|
|
459
|
-
"test-projects/salesforce-cli/ai/graph/symbol-graph.json",
|
|
460
|
-
"test-projects/salesforce-cli/ai/graph/symbol-references.json",
|
|
461
|
-
"test-projects/salesforce-cli/ai/index-state.json",
|
|
462
|
-
"test-projects/salesforce-cli/ai/modules.json",
|
|
463
|
-
"test-projects/salesforce-cli/ai/project.json",
|
|
464
|
-
"test-projects/salesforce-cli/ai/repo_map.json",
|
|
465
|
-
"test-projects/salesforce-cli/ai/repo_map.md",
|
|
466
|
-
"test-projects/salesforce-cli/ai/schema.json",
|
|
467
|
-
"test-projects/salesforce-cli/ai/summary.md",
|
|
468
|
-
"test-projects/salesforce-cli/ai/symbols.json",
|
|
469
|
-
"test-projects/salesforce-cli/ai/tech_stack.md",
|
|
470
|
-
"test-projects/salesforce-cli/ai/tools.json",
|
|
471
|
-
"test-projects/salesforce-cli/force-app/main/default/classes/AccountController.cls",
|
|
472
|
-
"test-projects/salesforce-cli/force-app/main/default/classes/OpportunityController.cls",
|
|
473
|
-
"test-projects/salesforce-cli/force-app/main/default/triggers/AccountTrigger.trigger",
|
|
474
|
-
"test-projects/salesforce-cli/sfdx-project.json",
|
|
475
|
-
"test-projects/spring-boot-app/README.md",
|
|
476
|
-
"test-projects/spring-boot-app/ai/ai_context.md",
|
|
477
|
-
"test-projects/spring-boot-app/ai/ai_rules.md",
|
|
478
|
-
"test-projects/spring-boot-app/ai/architecture.md",
|
|
479
|
-
"test-projects/spring-boot-app/ai/cache.json",
|
|
480
|
-
"test-projects/spring-boot-app/ai/context/features/src.json",
|
|
481
|
-
"test-projects/spring-boot-app/ai/context/flows/PostController.json",
|
|
482
|
-
"test-projects/spring-boot-app/ai/context/flows/UserController.json",
|
|
483
|
-
"test-projects/spring-boot-app/ai/context/flows/comment.json",
|
|
484
|
-
"test-projects/spring-boot-app/ai/context/flows/post.json",
|
|
485
|
-
"test-projects/spring-boot-app/ai/context/flows/user.json",
|
|
486
|
-
"test-projects/spring-boot-app/ai/conventions.md",
|
|
487
|
-
"test-projects/spring-boot-app/ai/dependencies.json",
|
|
488
|
-
"test-projects/spring-boot-app/ai/entrypoints.md",
|
|
489
|
-
"test-projects/spring-boot-app/ai/files.json",
|
|
490
|
-
"test-projects/spring-boot-app/ai/graph/knowledge-graph.json",
|
|
491
|
-
"test-projects/spring-boot-app/ai/graph/module-graph.json",
|
|
492
|
-
"test-projects/spring-boot-app/ai/graph/symbol-graph.json",
|
|
493
|
-
"test-projects/spring-boot-app/ai/graph/symbol-references.json",
|
|
494
|
-
"test-projects/spring-boot-app/ai/index-state.json",
|
|
495
|
-
"test-projects/spring-boot-app/ai/modules.json",
|
|
496
|
-
"test-projects/spring-boot-app/ai/project.json",
|
|
497
|
-
"test-projects/spring-boot-app/ai/repo_map.json",
|
|
498
|
-
"test-projects/spring-boot-app/ai/repo_map.md",
|
|
499
|
-
"test-projects/spring-boot-app/ai/schema.json",
|
|
500
|
-
"test-projects/spring-boot-app/ai/summary.md",
|
|
501
|
-
"test-projects/spring-boot-app/ai/symbols.json",
|
|
502
|
-
"test-projects/spring-boot-app/ai/tech_stack.md",
|
|
503
|
-
"test-projects/spring-boot-app/ai/tools.json",
|
|
504
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/DemoApplication.java",
|
|
505
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/CommentController.java",
|
|
506
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/PostController.java",
|
|
507
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/UserController.java",
|
|
508
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/models/Comment.java",
|
|
509
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/models/Post.java",
|
|
510
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/models/User.java",
|
|
511
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/CommentRepository.java",
|
|
512
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/PostRepository.java",
|
|
513
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/UserRepository.java",
|
|
514
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/services/PostService.java",
|
|
515
|
-
"test-projects/spring-boot-app/src/main/java/com/example/demo/services/UserService.java"
|
|
516
|
-
]
|
|
517
|
-
},
|
|
518
|
-
"tests": {
|
|
519
|
-
"path": "tests",
|
|
520
|
-
"files": [
|
|
521
|
-
"tests/adapters.test.ts",
|
|
522
|
-
"tests/e2e/README.md",
|
|
523
|
-
"tests/gitAnalyzer.test.ts",
|
|
524
|
-
"tests/incrementalAnalyzer.test.ts",
|
|
525
|
-
"tests/knowledgeGraph.test.ts",
|
|
526
|
-
"tests/lazyAnalyzer.test.ts",
|
|
527
|
-
"tests/schema.test.ts",
|
|
528
|
-
"tests/semanticContexts.test.ts"
|
|
529
|
-
]
|
|
530
|
-
}
|
|
531
|
-
}
|
|
532
|
-
}
|
package/ai-context/project.json
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "opencode-ai-first",
|
|
3
|
-
"rootDir": "/mnt/m2/Código/opencode-ai-first",
|
|
4
|
-
"features": [
|
|
5
|
-
"commands",
|
|
6
|
-
"src",
|
|
7
|
-
"test-projects"
|
|
8
|
-
],
|
|
9
|
-
"flows": [
|
|
10
|
-
"account",
|
|
11
|
-
"ai-first",
|
|
12
|
-
"api",
|
|
13
|
-
"auth",
|
|
14
|
-
"category",
|
|
15
|
-
"comment",
|
|
16
|
-
"dashboard",
|
|
17
|
-
"doctor",
|
|
18
|
-
"explore",
|
|
19
|
-
"login",
|
|
20
|
-
"opportunity",
|
|
21
|
-
"post",
|
|
22
|
-
"routes",
|
|
23
|
-
"user",
|
|
24
|
-
"users",
|
|
25
|
-
"views"
|
|
26
|
-
],
|
|
27
|
-
"languages": [],
|
|
28
|
-
"frameworks": [],
|
|
29
|
-
"generatedAt": "2026-03-18T20:34:40.835Z"
|
|
30
|
-
}
|