LICENSE
README.md
pyproject.toml
knowgraph/__init__.py
knowgraph/config.py
knowgraph/version.py
knowgraph.egg-info/PKG-INFO
knowgraph.egg-info/SOURCES.txt
knowgraph.egg-info/dependency_links.txt
knowgraph.egg-info/entry_points.txt
knowgraph.egg-info/requires.txt
knowgraph.egg-info/top_level.txt
knowgraph/adapters/__init__.py
knowgraph/adapters/api/__init__.py
knowgraph/adapters/cli/__init__.py
knowgraph/adapters/cli/discover_conversations_command.py
knowgraph/adapters/cli/index_command.py
knowgraph/adapters/cli/index_helpers.py
knowgraph/adapters/cli/main.py
knowgraph/adapters/cli/query_command.py
knowgraph/adapters/cli/update_command.py
knowgraph/adapters/cli/version_command.py
knowgraph/adapters/mcp/__init__.py
knowgraph/adapters/mcp/diagnostic_handler.py
knowgraph/adapters/mcp/handlers.py
knowgraph/adapters/mcp/methods.py
knowgraph/adapters/mcp/server.py
knowgraph/adapters/mcp/utils.py
knowgraph/adapters/mcp/version_handlers.py
knowgraph/adapters/mcp/version_methods.py
knowgraph/application/__init__.py
knowgraph/application/analysis/call_graph_analyzer.py
knowgraph/application/analysis/dominance_analyzer.py
knowgraph/application/analysis/joern_repl.py
knowgraph/application/analytics/__init__.py
knowgraph/application/analytics/knowledge_tracker.py
knowgraph/application/analytics/topic_analyzer.py
knowgraph/application/evolution/__init__.py
knowgraph/application/evolution/incremental_update.py
knowgraph/application/indexing/__init__.py
knowgraph/application/indexing/graph_builder.py
knowgraph/application/indexing/post_index_hooks.py
knowgraph/application/linking/__init__.py
knowgraph/application/linking/conversation_linker.py
knowgraph/application/query/code_query_handler.py
knowgraph/application/query/query_classifier.py
knowgraph/application/querying/__init__.py
knowgraph/application/querying/centrality_mp.py
knowgraph/application/querying/context_assembly.py
knowgraph/application/querying/conversation_search.py
knowgraph/application/querying/explanation.py
knowgraph/application/querying/hierarchical_lifting.py
knowgraph/application/querying/impact_analyzer.py
knowgraph/application/querying/query_engine.py
knowgraph/application/querying/query_expansion.py
knowgraph/application/querying/retriever.py
knowgraph/application/security/__init__.py
knowgraph/application/security/dataflow_result.py
knowgraph/application/security/joern_query_templates.py
knowgraph/application/security/policy_engine.py
knowgraph/application/security/taint_analyzer.py
knowgraph/application/security/vulnerability_patterns.py
knowgraph/application/tagging/auto_tagger.py
knowgraph/application/tagging/snippet_tagger.py
knowgraph/core/joern/__init__.py
knowgraph/core/joern/manager.py
knowgraph/core/joern/process.py
knowgraph/core/joern/provider.py
knowgraph/core/joern/types.py
knowgraph/domain/__init__.py
knowgraph/domain/algorithms/__init__.py
knowgraph/domain/algorithms/centrality.py
knowgraph/domain/algorithms/graph_validator.py
knowgraph/domain/algorithms/traversal.py
knowgraph/domain/intelligence/call_graph_extractor.py
knowgraph/domain/intelligence/code_analyzer.py
knowgraph/domain/intelligence/code_docs_linker.py
knowgraph/domain/intelligence/code_entity_extractor.py
knowgraph/domain/intelligence/cpg_converter.py
knowgraph/domain/intelligence/data_flow_analyzer.py
knowgraph/domain/intelligence/joern_query_executor.py
knowgraph/domain/intelligence/provider.py
knowgraph/domain/models/__init__.py
knowgraph/domain/models/edge.py
knowgraph/domain/models/node.py
knowgraph/infrastructure/__init__.py
knowgraph/infrastructure/cache/cache_manager.py
knowgraph/infrastructure/cache/indexing_cache.py
knowgraph/infrastructure/caching/__init__.py
knowgraph/infrastructure/caching/cpg_cache.py
knowgraph/infrastructure/daemon/__init__.py
knowgraph/infrastructure/detection/__init__.py
knowgraph/infrastructure/detection/conversation_discovery.py
knowgraph/infrastructure/detection/project_detector.py
knowgraph/infrastructure/embedding/__init__.py
knowgraph/infrastructure/embedding/sparse_embedder.py
knowgraph/infrastructure/filtering/__init__.py
knowgraph/infrastructure/filtering/file_filter.py
knowgraph/infrastructure/indexing/__init__.py
knowgraph/infrastructure/indexing/code_file_detector.py
knowgraph/infrastructure/indexing/code_index_integration.py
knowgraph/infrastructure/indexing/cpg_metadata.py
knowgraph/infrastructure/indexing/incremental_cpg.py
knowgraph/infrastructure/indexing/parallel_cpg.py
knowgraph/infrastructure/intelligence/mcp_sampling_provider.py
knowgraph/infrastructure/intelligence/openai_provider.py
knowgraph/infrastructure/intelligence/project_detection_prompts.py
knowgraph/infrastructure/intelligence/prompts.py
knowgraph/infrastructure/intelligence/rate_limiter.py
knowgraph/infrastructure/parsing/__init__.py
knowgraph/infrastructure/parsing/chunker.py
knowgraph/infrastructure/parsing/conversation_ingestor.py
knowgraph/infrastructure/parsing/conversation_parser.py
knowgraph/infrastructure/parsing/hasher.py
knowgraph/infrastructure/parsing/markdown_parser.py
knowgraph/infrastructure/parsing/repo_ingestor.py
knowgraph/infrastructure/search/bookmark_search.py
knowgraph/infrastructure/search/sparse_index.py
knowgraph/infrastructure/storage/__init__.py
knowgraph/infrastructure/storage/filesystem.py
knowgraph/infrastructure/storage/manifest.py
knowgraph/infrastructure/storage/manifest_backup.py
knowgraph/infrastructure/storage/version_diff.py
knowgraph/infrastructure/storage/version_history.py
knowgraph/infrastructure/storage/version_rollback.py
knowgraph/shared/__init__.py
knowgraph/shared/cache_versioning.py
knowgraph/shared/circuit_breaker.py
knowgraph/shared/cleanup.py
knowgraph/shared/error_metrics.py
knowgraph/shared/exceptions.py
knowgraph/shared/memory_profiler.py
knowgraph/shared/metrics.py
knowgraph/shared/performance.py
knowgraph/shared/progress.py
knowgraph/shared/rate_limiter.py
knowgraph/shared/refactoring.py
knowgraph/shared/resource_detector.py
knowgraph/shared/retry.py
knowgraph/shared/security.py
knowgraph/shared/throttle.py
knowgraph/shared/tracing.py
knowgraph/shared/types.py
knowgraph/shared/versioning.py
tests/test_analytics.py
tests/test_async_error_handling.py
tests/test_cache_health.py
tests/test_cache_versioning.py
tests/test_centrality.py
tests/test_centrality_async.py
tests/test_chunker.py
tests/test_circuit_breaker.py
tests/test_circuit_breaker_comprehensive.py
tests/test_code_analyzer.py
tests/test_concurrency_race_conditions.py
tests/test_config.py
tests/test_context_assembly.py
tests/test_conversation_discovery.py
tests/test_conversation_ingestor.py
tests/test_conversation_linker.py
tests/test_conversation_parser.py
tests/test_e2e_simple.py
tests/test_e2e_snippet_tagging.py
tests/test_edge_cases.py
tests/test_event_driven_cache.py
tests/test_explanation.py
tests/test_filesystem.py
tests/test_filesystem_async.py
tests/test_fts5_search.py
tests/test_github_copilot_parser.py
tests/test_graceful_shutdown.py
tests/test_graph_builder.py
tests/test_graph_validator.py
tests/test_hasher.py
tests/test_impact_analyzer.py
tests/test_incremental_update.py
tests/test_integration_async.py
tests/test_integration_comprehensive.py
tests/test_integration_full.py
tests/test_joern_integration_comprehensive.py
tests/test_large_file_handling.py
tests/test_manifest.py
tests/test_manifest_backup.py
tests/test_manifest_comprehensive.py
tests/test_markdown_parser.py
tests/test_mcp_direct.py
tests/test_mcp_e2e.py
tests/test_mcp_integration.py
tests/test_mcp_joern_integration.py
tests/test_mcp_methods.py
tests/test_mcp_sampling_provider.py
tests/test_mcp_server_e2e.py
tests/test_mcp_server_mock.py
tests/test_memory_leak_detection.py
tests/test_memory_profiler.py
tests/test_metrics.py
tests/test_openai_provider.py
tests/test_post_index_hooks.py
tests/test_project_detector.py
tests/test_project_root_env.py
tests/test_query_engine.py
tests/test_query_engine_async.py
tests/test_query_integration.py
tests/test_rate_limiter.py
tests/test_real_mcp_query.py
tests/test_refactoring.py
tests/test_repo_ingestor.py
tests/test_resilience_integration.py
tests/test_resource_detector.py
tests/test_retriever.py
tests/test_retry.py
tests/test_security.py
tests/test_shared_rate_limiter.py
tests/test_snippet_tagger.py
tests/test_sparse_embedder.py
tests/test_sparse_index.py
tests/test_sparse_index_async.py
tests/test_tag_workflow.py
tests/test_taint_analysis.py
tests/test_throttle.py
tests/test_tracing.py
tests/test_traversal.py
tests/test_traversal_comprehensive.py
tests/test_version_diff.py
tests/test_version_history_comprehensive.py
tests/test_version_rollback.py
tests/test_versioning.py