README.md
pyproject.toml
cli/__init__.py
cli/main.py
cli/runtime_logging.py
cli/commands/__init__.py
cli/commands/api_keys.py
cli/commands/architecture.py
cli/commands/dead_code.py
cli/commands/delete.py
cli/commands/dependencies.py
cli/commands/doctor.py
cli/commands/explain.py
cli/commands/impact.py
cli/commands/index.py
cli/commands/init.py
cli/commands/mcp.py
cli/commands/metrics.py
cli/commands/onboard.py
cli/commands/projects.py
cli/commands/search.py
cli/commands/serve.py
cli/commands/status.py
cli/commands/trace.py
cli/output/__init__.py
cli/output/formatters.py
cli/output/themes.py
core/__init__.py
core/api_keys.py
core/projects.py
core/analysis/__init__.py
core/analysis/architecture_generator.py
core/analysis/base.py
core/analysis/coupling_analyser.py
core/analysis/dead_code_detector.py
core/analysis/flow_tracer.py
core/analysis/impact_analyser.py
core/analysis/onboard_engine.py
core/analysis/risk_scorer.py
core/engine/__init__.py
core/engine/intent.py
core/engine/orchestrator.py
core/git/__init__.py
core/git/cloner.py
core/graph/__init__.py
core/graph/builder.py
core/graph/client.py
core/graph/models.py
core/graph/schema.py
core/graph/queries/__init__.py
core/graph/queries/architecture.py
core/graph/queries/coupling.py
core/graph/queries/dead_code.py
core/graph/queries/dependencies.py
core/graph/queries/impact.py
core/graph/queries/ownership.py
core/graph/queries/trace.py
core/indexer/__init__.py
core/indexer/incremental.py
core/indexer/pipeline.py
core/indexer/worker.py
core/llm/__init__.py
core/llm/client.py
core/llm/context_assembler.py
core/llm/models.py
core/llm/prompts/__init__.py
core/llm/prompts/architecture.py
core/llm/prompts/explain.py
core/llm/prompts/onboard.py
core/llm/prompts/trace.py
core/parser/__init__.py
core/parser/base.py
core/parser/git_ingestor.py
core/parser/registry.py
core/parser/traversal.py
core/parser/extractors/__init__.py
core/parser/extractors/apis.py
core/parser/extractors/databases.py
core/parser/extractors/entities.py
core/parser/extractors/imports.py
core/parser/languages/__init__.py
core/parser/languages/dart.py
core/parser/languages/go.py
core/parser/languages/java.py
core/parser/languages/python.py
core/parser/languages/rust.py
core/parser/languages/typescript.py
core/runtime/__init__.py
core/runtime/capabilities.py
core/runtime/doctor.py
core/runtime/environment.py
core/runtime/local_indexer.py
core/runtime/resolver.py
core/search/__init__.py
core/search/client.py
core/search/embedder.py
core/search/indexer.py
core/search/reranker.py
core/search/searcher.py
core/services/__init__.py
core/services/architecture_service.py
core/services/dead_code_service.py
core/services/dependencies_service.py
core/services/explain_service.py
core/services/impact_service.py
core/services/metrics_service.py
core/services/onboard_service.py
core/services/search_service.py
core/services/trace_service.py
core/storage/__init__.py
core/storage/cache.py
core/storage/database.py
core/storage/registry.py
core/storage/interfaces/__init__.py
core/storage/interfaces/graph_store.py
core/storage/interfaces/metadata_store.py
core/storage/interfaces/vector_store.py
core/storage/migrations/env.py
core/storage/migrations/versions/4af1aa63d40d_add_project_id_to_api_keys.py
core/storage/migrations/versions/a1b2c3d4e5f6_add_git_fields_to_projects.py
core/storage/migrations/versions/abc123456789_add_embedding_cache_table.py
core/storage/migrations/versions/b7e18a4c9210_add_projects_table.py
core/storage/migrations/versions/f44d02da3caf_initial_schema.py
core/storage/migrations/versions/z9y8x7w6v5u4_add_api_keys_table.py
core/storage/models/__init__.py
core/storage/models/analysis_job.py
core/storage/models/api_key.py
core/storage/models/embedding_cache.py
core/storage/models/file_hash.py
core/storage/models/index_state.py
core/storage/models/project.py
core/storage/providers/__init__.py
core/storage/providers/local_paths.py
core/storage/providers/local_vector_provider.py
core/storage/providers/neo4j_provider.py
core/storage/providers/networkx_provider.py
core/storage/providers/postgres_provider.py
core/storage/providers/qdrant_provider.py
core/storage/providers/sqlite_provider.py
core/utils/__init__.py
core/utils/paths.py
gateway/debug_classifier.py
gateway/gateway/__init__.py
gateway/gateway/config.py
gateway/gateway/cli/__init__.py
gateway/gateway/cli/main.py
gateway/gateway/cli/commands/__init__.py
gateway/gateway/core/__init__.py
gateway/gateway/core/pipeline.py
gateway/gateway/core/cache/__init__.py
gateway/gateway/core/cache/redis_store.py
gateway/gateway/core/classifier/__init__.py
gateway/gateway/core/classifier/engine.py
gateway/gateway/core/classifier/models.py
gateway/gateway/core/classifier/patterns.py
gateway/gateway/core/classifier/rules.py
gateway/gateway/core/embeddings/__init__.py
gateway/gateway/core/executor/__init__.py
gateway/gateway/core/executor/circuit_breaker.py
gateway/gateway/core/executor/engine.py
gateway/gateway/core/executor/models.py
gateway/gateway/core/executor/retry.py
gateway/gateway/core/learning/__init__.py
gateway/gateway/core/learning/feedback.py
gateway/gateway/core/learning/llm_client.py
gateway/gateway/core/learning/scorer_weights.py
gateway/gateway/core/llm/__init__.py
gateway/gateway/core/llm/prompts/__init__.py
gateway/gateway/core/memory/__init__.py
gateway/gateway/core/memory/conflict_detector.py
gateway/gateway/core/memory/context_bridge.py
gateway/gateway/core/memory/models.py
gateway/gateway/core/memory/store.py
gateway/gateway/core/metrics/__init__.py
gateway/gateway/core/permissions/__init__.py
gateway/gateway/core/permissions/audit.py
gateway/gateway/core/permissions/engine.py
gateway/gateway/core/permissions/models.py
gateway/gateway/core/permissions/roles.py
gateway/gateway/core/planner/__init__.py
gateway/gateway/core/planner/budget.py
gateway/gateway/core/planner/engine.py
gateway/gateway/core/planner/models.py
gateway/gateway/core/planner/strategies.py
gateway/gateway/core/ranker/__init__.py
gateway/gateway/core/ranker/compressor.py
gateway/gateway/core/ranker/deduplicator.py
gateway/gateway/core/ranker/engine.py
gateway/gateway/core/ranker/models.py
gateway/gateway/core/ranker/summarizer.py
gateway/gateway/core/ranker/scorers/__init__.py
gateway/gateway/core/ranker/scorers/authority.py
gateway/gateway/core/ranker/scorers/pattern.py
gateway/gateway/core/ranker/scorers/recency.py
gateway/gateway/core/ranker/scorers/semantic.py
gateway/gateway/core/sources/__init__.py
gateway/gateway/core/sources/base.py
gateway/gateway/core/sources/github.py
gateway/gateway/core/sources/jira.py
gateway/gateway/core/sources/models.py
gateway/gateway/core/sources/registry.py
gateway/gateway/core/sources/rip_client.py
gateway/gateway/core/sources/slack.py
gateway/gateway/core/tokenizer/__init__.py
gateway/gateway/core/tokenizer/counter.py
gateway/gateway/core/tokenizer/models.py
gateway/gateway/mcp/__init__.py
gateway/gateway/mcp/handlers.py
gateway/gateway/mcp/middleware.py
gateway/gateway/mcp/server.py
gateway/gateway/mcp/tools.py
gateway/gateway/server/__init__.py
gateway/gateway/server/main.py
gateway/gateway/server/middleware/__init__.py
gateway/gateway/server/middleware/rate_limit.py
gateway/gateway/server/routers/__init__.py
gateway/gateway/server/routers/context.py
gateway/gateway/server/routers/health.py
gateway/gateway/server/routers/metrics.py
gateway/gateway/server/routers/sessions.py
gateway/gateway/server/routers/sources.py
gateway/gateway/server/routers/validate.py
gateway/gateway/server/schemas/__init__.py
gateway/gateway/server/schemas/common.py
gateway/gateway/server/schemas/requests.py
gateway/gateway/server/schemas/responses.py
gateway/gateway/storage/__init__.py
gateway/gateway/storage/audit_store.py
gateway/gateway/storage/database.py
gateway/gateway/storage/models.py
gateway/gateway/storage/migrations/env.py
gateway/gateway/storage/migrations/versions/001_initial.py
gateway/tests/__init__.py
gateway/tests/conftest.py
gateway/tests/integration/__init__.py
gateway/tests/integration/test_full_pipeline.py
gateway/tests/integration/test_mcp_server.py
gateway/tests/performance/__init__.py
gateway/tests/unit/__init__.py
gateway/tests/unit/test_classifier.py
gateway/tests/unit/test_cli.py
gateway/tests/unit/test_compressor.py
gateway/tests/unit/test_deduplicator.py
gateway/tests/unit/test_executor.py
gateway/tests/unit/test_external_sources.py
gateway/tests/unit/test_http_server.py
gateway/tests/unit/test_learning.py
gateway/tests/unit/test_memory.py
gateway/tests/unit/test_permissions.py
gateway/tests/unit/test_planner.py
gateway/tests/unit/test_ranker.py
gateway/tests/unit/test_storage.py
gateway/tests/unit/test_tokenizer.py
mcp/__init__.py
mcp/server.py
repo_intelligence.egg-info/PKG-INFO
repo_intelligence.egg-info/SOURCES.txt
repo_intelligence.egg-info/dependency_links.txt
repo_intelligence.egg-info/entry_points.txt
repo_intelligence.egg-info/requires.txt
repo_intelligence.egg-info/top_level.txt
server/__init__.py
server/app.py
server/config.py
server/runtime.py
server/middleware/__init__.py
server/middleware/auth.py
server/middleware/errors.py
server/middleware/logging.py
server/routers/__init__.py
server/routers/analysis.py
server/routers/api_keys.py
server/routers/architecture.py
server/routers/explain.py
server/routers/git.py
server/routers/graph.py
server/routers/impact.py
server/routers/index.py
server/routers/onboard.py
server/routers/projects.py
server/routers/runtime.py
server/routers/search.py
server/routers/trace.py
server/routers/ws.py
server/schemas/__init__.py
server/schemas/requests.py
server/schemas/responses.py