LICENSE
README.md
pyproject.toml
src/contextflow/__init__.py
src/contextflow/engine.py
src/contextflow/api/__init__.py
src/contextflow/api/app.py
src/contextflow/api/routes/__init__.py
src/contextflow/api/routes/context.py
src/contextflow/api/routes/governance.py
src/contextflow/api/routes/memory.py
src/contextflow/api/routes/trace.py
src/contextflow/api/schemas/__init__.py
src/contextflow/api/schemas/requests.py
src/contextflow/auth/__init__.py
src/contextflow/auth/api_keys.py
src/contextflow/auth/fastapi_deps.py
src/contextflow/auth/mcp_token_verifier.py
src/contextflow/auth/rate_limit.py
src/contextflow/cli/__init__.py
src/contextflow/cli/main.py
src/contextflow/compiler/__init__.py
src/contextflow/compiler/compiler.py
src/contextflow/compiler/compression.py
src/contextflow/compiler/conflict.py
src/contextflow/connectors/__init__.py
src/contextflow/connectors/base.py
src/contextflow/connectors/discord/__init__.py
src/contextflow/connectors/discord/connector.py
src/contextflow/connectors/filesystem/__init__.py
src/contextflow/connectors/filesystem/connector.py
src/contextflow/connectors/github/__init__.py
src/contextflow/connectors/github/connector.py
src/contextflow/connectors/gitlab/__init__.py
src/contextflow/connectors/gitlab/connector.py
src/contextflow/connectors/jira/__init__.py
src/contextflow/connectors/jira/connector.py
src/contextflow/connectors/notion/__init__.py
src/contextflow/connectors/notion/connector.py
src/contextflow/connectors/postgres/__init__.py
src/contextflow/connectors/postgres/connector.py
src/contextflow/connectors/slack/__init__.py
src/contextflow/connectors/slack/connector.py
src/contextflow/core/__init__.py
src/contextflow/core/context.py
src/contextflow/core/context_pack.py
src/contextflow/core/entity.py
src/contextflow/core/metadata.py
src/contextflow/core/relationship.py
src/contextflow/core/source.py
src/contextflow/embeddings/__init__.py
src/contextflow/embeddings/base.py
src/contextflow/embeddings/cohere.py
src/contextflow/embeddings/ollama.py
src/contextflow/embeddings/openai.py
src/contextflow/embeddings/spacy_local.py
src/contextflow/evaluation/__init__.py
src/contextflow/evaluation/benchmarks.py
src/contextflow/evaluation/faithfulness.py
src/contextflow/evaluation/performance.py
src/contextflow/evaluation/relevance.py
src/contextflow/evaluation/retrieval.py
src/contextflow/governance/__init__.py
src/contextflow/governance/audit.py
src/contextflow/governance/permissions.py
src/contextflow/governance/pii.py
src/contextflow/governance/policies.py
src/contextflow/graph/__init__.py
src/contextflow/graph/builder.py
src/contextflow/graph/entity_extraction.py
src/contextflow/graph/entity_resolution.py
src/contextflow/graph/resolution.py
src/contextflow/graph/traversal.py
src/contextflow/ingestion/__init__.py
src/contextflow/ingestion/chunking.py
src/contextflow/ingestion/deduplication.py
src/contextflow/ingestion/normalization.py
src/contextflow/ingestion/parsing.py
src/contextflow/ingestion/pipeline.py
src/contextflow/mcp/__init__.py
src/contextflow/mcp/http_transport.py
src/contextflow/mcp/server.py
src/contextflow/memory/__init__.py
src/contextflow/memory/agent.py
src/contextflow/memory/organization.py
src/contextflow/memory/session.py
src/contextflow/memory/store.py
src/contextflow/memory/user.py
src/contextflow/memory/working.py
src/contextflow/observability/__init__.py
src/contextflow/observability/trace.py
src/contextflow/retrieval/__init__.py
src/contextflow/retrieval/expansion.py
src/contextflow/retrieval/hybrid.py
src/contextflow/retrieval/keyword.py
src/contextflow/retrieval/reranker.py
src/contextflow/retrieval/router.py
src/contextflow/retrieval/semantic.py
src/contextflow/storage/__init__.py
src/contextflow/storage/local.py
src/contextflow/storage/local_persistent.py
src/contextflow/storage/sqlite.py
src/contextflow_engine.egg-info/PKG-INFO
src/contextflow_engine.egg-info/SOURCES.txt
src/contextflow_engine.egg-info/dependency_links.txt
src/contextflow_engine.egg-info/entry_points.txt
src/contextflow_engine.egg-info/requires.txt
src/contextflow_engine.egg-info/top_level.txt
tests/test_api_auth.py
tests/test_api_governance.py
tests/test_api_keys.py
tests/test_api_trace_and_memory.py
tests/test_audit.py
tests/test_batch_writes.py
tests/test_cli_demo_and_path.py
tests/test_connectors.py
tests/test_context.py
tests/test_contextbench.py
tests/test_discord_connector.py
tests/test_embeddings.py
tests/test_engine.py
tests/test_evaluation_metrics.py
tests/test_github_connector.py
tests/test_gitlab_connector.py
tests/test_locomo_adapter.py
tests/test_memory_store.py
tests/test_memory_tiers.py
tests/test_notion_connector.py
tests/test_performance_harness.py
tests/test_persistence.py
tests/test_pii.py
tests/test_postgres_connector.py
tests/test_postgres_live.py
tests/test_rate_limit.py
tests/test_rbac_and_tenancy.py
tests/test_slack_connector.py
tests/test_spacy_embeddings.py
tests/test_sqlite_thread_safety.py
tests/test_tracing.py