LICENSE
README.md
pyproject.toml
mcs/__init__.py
mcs/rendering.py
mcs/core/__init__.py
mcs/core/builder.py
mcs/core/calibrated_estimator.py
mcs/core/content_merge.py
mcs/core/context_renderer.py
mcs/core/errors.py
mcs/core/mcs.py
mcs/core/plugin.py
mcs/core/plugin_manager.py
mcs/core/query_engine.py
mcs/core/store.py
mcs/core/token_budget.py
mcs/core/write_pipeline.py
mcs/diagnostics/__init__.py
mcs/diagnostics/graph_quality.py
mcs/entities/__init__.py
mcs/entities/config.py
mcs/entities/decisions.py
mcs/entities/graph.py
mcs/interfaces/__init__.py
mcs/interfaces/arbitration_plugin.py
mcs/interfaces/compaction_plugin.py
mcs/interfaces/edge_extension.py
mcs/interfaces/entry_plugin.py
mcs/interfaces/index.py
mcs/interfaces/llm.py
mcs/interfaces/maintenance.py
mcs/interfaces/node_extension.py
mcs/interfaces/postprocess_plugin.py
mcs/interfaces/preprocess_plugin.py
mcs/interfaces/priority_scorer.py
mcs/interfaces/query_preprocess_plugin.py
mcs/interfaces/storage_schema_ext.py
mcs/interfaces/trim_plugin.py
mcs/interfaces/write_preprocess_plugin.py
mcs/plugins/__init__.py
mcs/plugins/entry/__init__.py
mcs/plugins/entry/hub_fallback.py
mcs/plugins/index/__init__.py
mcs/plugins/index/alias_index.py
mcs/plugins/llm/__init__.py
mcs/plugins/llm/claude_llm.py
mcs/plugins/llm/deepseek_llm.py
mcs/plugins/llm/ollama_llm.py
mcs/plugins/maintenance/__init__.py
mcs/plugins/maintenance/dedup_maintenance.py
mcs/plugins/maintenance/fanout_reducer.py
mcs/plugins/maintenance/graph_summary.py
mcs/plugins/maintenance/summary_regen.py
mcs/plugins/postprocess/__init__.py
mcs/plugins/postprocess/rerank.py
mcs/plugins/postprocess/summary.py
mcs/plugins/preprocess/__init__.py
mcs/plugins/preprocess/cross_doc_linker.py
mcs/plugins/preprocess/source_tracking.py
mcs/plugins/trim/__init__.py
mcs/plugins/trim/llm_seed_selector.py
mcs/plugins/trim/priority_trim.py
mcs/presets/__init__.py
mcs/presets/phase1.py
mcs/prompts/__init__.py
mcs/prompts/adjudicate.py
mcs/prompts/arbitrate.py
mcs/prompts/decide_directions.py
mcs/prompts/decide_hub.py
mcs/prompts/extract_concepts.py
mcs/prompts/extract_work_events.py
mcs/prompts/gen_aliases.py
mcs/prompts/gen_graph_summary.py
mcs/prompts/gen_summary.py
mcs/prompts/generalize.py
mcs/prompts/judge_relations.py
mcs/prompts/merge.py
mcs/prompts/merge_content.py
mcs/prompts/navigate_hub.py
mcs/prompts/select_facts.py
mcs/prompts/select_nodes.py
mcs/prompts/split.py
mcs/prompts/synthesize.py
mcs/stores/__init__.py
mcs/stores/in_memory.py
mcs/stores/sqlite_store.py
mcs/utils/__init__.py
mcs/utils/env_expand.py
mcs/utils/imports.py
mcs/utils/text_utils.py
mcs/utils/timestamps.py
mcs/utils/tokenizer.py
mcs_agent/__init__.py
mcs_agent/__main__.py
mcs_agent/app.py
mcs_agent/builder.py
mcs_agent/context.py
mcs_agent/llm.py
mcs_agent/loop.py
mcs_agent/memory.py
mcs_agent/tools.py
mcs_agent/trace.py
mcs_agent/llms/__init__.py
mcs_agent/llms/anthropic.py
mcs_agent/llms/base.py
mcs_agent/llms/callable.py
mcs_agent/llms/openai.py
mcs_agent/llms/registry.py
mcs_agent/static/index.html
mcs_core.egg-info/PKG-INFO
mcs_core.egg-info/SOURCES.txt
mcs_core.egg-info/dependency_links.txt
mcs_core.egg-info/entry_points.txt
mcs_core.egg-info/requires.txt
mcs_core.egg-info/top_level.txt
mcs_mcp/__init__.py
mcs_mcp/__main__.py
mcs_mcp/server.py
tests/test_agent_app.py
tests/test_agent_builder.py
tests/test_agent_context.py
tests/test_agent_llms.py
tests/test_agent_loop.py
tests/test_agent_memory.py
tests/test_agent_split_merge.py
tests/test_agent_tools.py
tests/test_agent_trace.py
tests/test_alias_poisoning.py
tests/test_anti_regression.py
tests/test_bench_doc_rerank.py
tests/test_bench_env.py
tests/test_bench_multihop.py
tests/test_builder_token_counter.py
tests/test_calibrated_estimator.py
tests/test_claude_count_tokens.py
tests/test_claude_llm.py
tests/test_config_from_file.py
tests/test_config_integration.py
tests/test_config_token_budget.py
tests/test_content_merge.py
tests/test_context_renderer.py
tests/test_context_window_size.py
tests/test_cross_doc_linker.py
tests/test_decision_apply.py
tests/test_dedup_maintenance.py
tests/test_deepseek_count_tokens.py
tests/test_deepseek_llm.py
tests/test_directed_hierarchy.py
tests/test_directed_navigation.py
tests/test_edge_extension_model.py
tests/test_env_expand.py
tests/test_fanout_reducer.py
tests/test_golden_cage_agent_bench.py
tests/test_golden_cage_dataset.py
tests/test_graph_direction.py
tests/test_graph_meta.py
tests/test_graph_quality.py
tests/test_graph_summary_plugin.py
tests/test_graph_view.py
tests/test_hub_fallback.py
tests/test_import_from_path.py
tests/test_llm_count_tokens.py
tests/test_llm_json_mode.py
tests/test_locomo_builder.py
tests/test_locomo_data.py
tests/test_locomo_eval.py
tests/test_locomo_metrics.py
tests/test_mcp_server.py
tests/test_mcs_api.py
tests/test_mcs_maintenance.py
tests/test_multi_universe.py
tests/test_multi_universe_ingest.py
tests/test_ollama_count_tokens.py
tests/test_ollama_llm.py
tests/test_persistence.py
tests/test_pipeline_query.py
tests/test_pipeline_write.py
tests/test_plugin_chains.py
tests/test_plugin_import_path.py
tests/test_prompt_parse_lenient.py
tests/test_rendering.py
tests/test_rerank.py
tests/test_rw_select_prompt_split.py
tests/test_seed_graph.py
tests/test_separate_accumulate_frontier.py
tests/test_skeleton.py
tests/test_text_utils.py
tests/test_timestamps.py
tests/test_token_budget.py
tests/test_unified_graph_schema.py
tests/test_unified_ingest.py
tests/test_work_event_anchor_resolution.py
tests/test_work_narrative_events.py