cymatix-context 0.8.0__tar.gz
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.
- cymatix_context-0.8.0/.env.example +308 -0
- cymatix_context-0.8.0/.github/ISSUE_TEMPLATE/enhancement.md +34 -0
- cymatix_context-0.8.0/.github/workflows/ci.yml +127 -0
- cymatix_context-0.8.0/.github/workflows/publish.yml +47 -0
- cymatix_context-0.8.0/.gitignore +153 -0
- cymatix_context-0.8.0/CHANGELOG.md +631 -0
- cymatix_context-0.8.0/CLAUDE.md +178 -0
- cymatix_context-0.8.0/LICENSE +189 -0
- cymatix_context-0.8.0/NOTICE +40 -0
- cymatix_context-0.8.0/PKG-INFO +531 -0
- cymatix_context-0.8.0/README.md +432 -0
- cymatix_context-0.8.0/backend-with-otel.bat +12 -0
- cymatix_context-0.8.0/benchmarks/README.md +82 -0
- cymatix_context-0.8.0/benchmarks/__init__.py +0 -0
- cymatix_context-0.8.0/benchmarks/_citations.py +291 -0
- cymatix_context-0.8.0/benchmarks/_run_n1000_blind.sh +79 -0
- cymatix_context-0.8.0/benchmarks/_run_n1000_located.sh +80 -0
- cymatix_context-0.8.0/benchmarks/_run_n1000_sweep_2026-04-14.sh +48 -0
- cymatix_context-0.8.0/benchmarks/_run_overnight_e4b.sh +230 -0
- cymatix_context-0.8.0/benchmarks/_run_slice3_gate.sh +108 -0
- cymatix_context-0.8.0/benchmarks/_splade_curve_queries.json +386 -0
- cymatix_context-0.8.0/benchmarks/_splade_curve_queries.meta.json +17 -0
- cymatix_context-0.8.0/benchmarks/ab_ann_threshold.py +131 -0
- cymatix_context-0.8.0/benchmarks/ab_flag_sweep.py +195 -0
- cymatix_context-0.8.0/benchmarks/ab_rerank_combinator.py +369 -0
- cymatix_context-0.8.0/benchmarks/ab_semantic_probe.py +441 -0
- cymatix_context-0.8.0/benchmarks/bench_aa_suite.py +485 -0
- cymatix_context-0.8.0/benchmarks/bench_babilong.py +386 -0
- cymatix_context-0.8.0/benchmarks/bench_budget_zone.py +218 -0
- cymatix_context-0.8.0/benchmarks/bench_cache_hitrate.py +233 -0
- cymatix_context-0.8.0/benchmarks/bench_chroma_integration.py +366 -0
- cymatix_context-0.8.0/benchmarks/bench_claude_matrix.py +1109 -0
- cymatix_context-0.8.0/benchmarks/bench_compression.py +249 -0
- cymatix_context-0.8.0/benchmarks/bench_dal_http_s3.py +189 -0
- cymatix_context-0.8.0/benchmarks/bench_dimensional_lock.py +519 -0
- cymatix_context-0.8.0/benchmarks/bench_external_retriever.py +304 -0
- cymatix_context-0.8.0/benchmarks/bench_forward_recall.py +328 -0
- cymatix_context-0.8.0/benchmarks/bench_gemini.py +349 -0
- cymatix_context-0.8.0/benchmarks/bench_headroom_latency.py +230 -0
- cymatix_context-0.8.0/benchmarks/bench_helix_rag_composition.py +782 -0
- cymatix_context-0.8.0/benchmarks/bench_multi_needle.py +285 -0
- cymatix_context-0.8.0/benchmarks/bench_multi_needle_50.py +552 -0
- cymatix_context-0.8.0/benchmarks/bench_needle.py +1015 -0
- cymatix_context-0.8.0/benchmarks/bench_needle_1000.py +1092 -0
- cymatix_context-0.8.0/benchmarks/bench_oauth_provider.py +412 -0
- cymatix_context-0.8.0/benchmarks/bench_oauth_scope.py +247 -0
- cymatix_context-0.8.0/benchmarks/bench_orchestrator.py +902 -0
- cymatix_context-0.8.0/benchmarks/bench_packet.py +464 -0
- cymatix_context-0.8.0/benchmarks/bench_plr_smoke.py +239 -0
- cymatix_context-0.8.0/benchmarks/bench_rag_vs_sike_tokens.py +254 -0
- cymatix_context-0.8.0/benchmarks/bench_shard_recall.py +430 -0
- cymatix_context-0.8.0/benchmarks/bench_skill_activation.py +343 -0
- cymatix_context-0.8.0/benchmarks/bench_stale_claim_avoidance.py +410 -0
- cymatix_context-0.8.0/benchmarks/bench_sweep.py +289 -0
- cymatix_context-0.8.0/benchmarks/benchmark_monitor.py +812 -0
- cymatix_context-0.8.0/benchmarks/build_gold_from_genome.py +465 -0
- cymatix_context-0.8.0/benchmarks/build_shard_gold.py +657 -0
- cymatix_context-0.8.0/benchmarks/build_striptwins.py +96 -0
- cymatix_context-0.8.0/benchmarks/cb_dpacket_clamp_rescore.py +787 -0
- cymatix_context-0.8.0/benchmarks/cb_dump_tasks.py +78 -0
- cymatix_context-0.8.0/benchmarks/cb_helix_pred.py +448 -0
- cymatix_context-0.8.0/benchmarks/cb_score_all.py +73 -0
- cymatix_context-0.8.0/benchmarks/cb_score_compare.py +175 -0
- cymatix_context-0.8.0/benchmarks/cb_score_sklearn2.py +80 -0
- cymatix_context-0.8.0/benchmarks/cb_score_splade.py +86 -0
- cymatix_context-0.8.0/benchmarks/cb_score_sub8.py +84 -0
- cymatix_context-0.8.0/benchmarks/coderag_bench.py +473 -0
- cymatix_context-0.8.0/benchmarks/coderag_bench_helix.py +420 -0
- cymatix_context-0.8.0/benchmarks/coderag_diag.py +342 -0
- cymatix_context-0.8.0/benchmarks/compare_ab.py +145 -0
- cymatix_context-0.8.0/benchmarks/complement_reach_diag.py +149 -0
- cymatix_context-0.8.0/benchmarks/contextbench_step0.py +419 -0
- cymatix_context-0.8.0/benchmarks/dense_reach_content.py +135 -0
- cymatix_context-0.8.0/benchmarks/diag_blob_vs_shard_tiers.py +591 -0
- cymatix_context-0.8.0/benchmarks/diag_coact_reserve_fire.py +178 -0
- cymatix_context-0.8.0/benchmarks/diag_global_idf_counterfactual.py +434 -0
- cymatix_context-0.8.0/benchmarks/diag_rrf_tier_breadth.py +100 -0
- cymatix_context-0.8.0/benchmarks/diag_shard_dense.py +543 -0
- cymatix_context-0.8.0/benchmarks/diag_shard_score.py +440 -0
- cymatix_context-0.8.0/benchmarks/eval_retrieval.py +263 -0
- cymatix_context-0.8.0/benchmarks/faithfulness/external/README.md +60 -0
- cymatix_context-0.8.0/benchmarks/faithfulness/external/b1_analysis.py +163 -0
- cymatix_context-0.8.0/benchmarks/faithfulness/external/build_bed_239.py +129 -0
- cymatix_context-0.8.0/benchmarks/faithfulness/external/build_bed_239b.py +132 -0
- cymatix_context-0.8.0/benchmarks/faithfulness/external/dump_expressed.py +50 -0
- cymatix_context-0.8.0/benchmarks/faithfulness/external/faith_239.py +188 -0
- cymatix_context-0.8.0/benchmarks/faithfulness/external/faith_239b.py +166 -0
- cymatix_context-0.8.0/benchmarks/faithfulness/external/faith_local.py +121 -0
- cymatix_context-0.8.0/benchmarks/faithfulness/external/faith_local_realhelix.py +93 -0
- cymatix_context-0.8.0/benchmarks/faithfulness/external/faith_scaled.py +109 -0
- cymatix_context-0.8.0/benchmarks/faithfulness/external/refit_239.py +138 -0
- cymatix_context-0.8.0/benchmarks/faithfulness/external/refit_239b.py +114 -0
- cymatix_context-0.8.0/benchmarks/faithfulness/external/scaled_needles.py +47 -0
- cymatix_context-0.8.0/benchmarks/faithfulness/external/spike_239b_answerpresence.py +237 -0
- cymatix_context-0.8.0/benchmarks/faithfulness/external/tok_probe.py +48 -0
- cymatix_context-0.8.0/benchmarks/faithfulness/faithfulness_circuit_tracer.py +181 -0
- cymatix_context-0.8.0/benchmarks/faithfulness/needle_faithfulness_experiment.py +167 -0
- cymatix_context-0.8.0/benchmarks/faithfulness/needles_239.py +139 -0
- cymatix_context-0.8.0/benchmarks/faithfulness/needles_239b.py +150 -0
- cymatix_context-0.8.0/benchmarks/faithfulness/real_helix_faithfulness.py +130 -0
- cymatix_context-0.8.0/benchmarks/fingerprint_06b_test.py +166 -0
- cymatix_context-0.8.0/benchmarks/fixtures.json +52 -0
- cymatix_context-0.8.0/benchmarks/located_n1000.py +270 -0
- cymatix_context-0.8.0/benchmarks/oauth_fixtures.py +117 -0
- cymatix_context-0.8.0/benchmarks/oauth_task_set.py +142 -0
- cymatix_context-0.8.0/benchmarks/onyx_recall.py +195 -0
- cymatix_context-0.8.0/benchmarks/precision_probe.py +259 -0
- cymatix_context-0.8.0/benchmarks/precision_sensitivity.py +245 -0
- cymatix_context-0.8.0/benchmarks/precision_tie_break_ab.py +224 -0
- cymatix_context-0.8.0/benchmarks/precision_tie_graph_coverage.py +284 -0
- cymatix_context-0.8.0/benchmarks/precision_tie_inspection.py +158 -0
- cymatix_context-0.8.0/benchmarks/repobench_r.py +303 -0
- cymatix_context-0.8.0/benchmarks/repobench_r_helix.py +320 -0
- cymatix_context-0.8.0/benchmarks/repobench_r_helix_global.py +377 -0
- cymatix_context-0.8.0/benchmarks/results/faithfulness/README.md +42 -0
- cymatix_context-0.8.0/benchmarks/results/faithfulness/expressed_contexts.json +50 -0
- cymatix_context-0.8.0/benchmarks/results/faithfulness/full_pilot_results.json +254 -0
- cymatix_context-0.8.0/benchmarks/results/faithfulness/needles_239_faith.json +599 -0
- cymatix_context-0.8.0/benchmarks/results/faithfulness/needles_239_stage1.json +1010 -0
- cymatix_context-0.8.0/benchmarks/results/faithfulness/needles_239b_faith.json +842 -0
- cymatix_context-0.8.0/benchmarks/results/faithfulness/needles_239b_stage1.json +1586 -0
- cymatix_context-0.8.0/benchmarks/results/faithfulness/needles_239b_stage1_abstainON.json +1658 -0
- cymatix_context-0.8.0/benchmarks/results/faithfulness/qwen_scaled.txt +51 -0
- cymatix_context-0.8.0/benchmarks/results/faithfulness/realhelix_local_results.json +80 -0
- cymatix_context-0.8.0/benchmarks/results/faithfulness/scaled_results_qwen3_4b.json +1010 -0
- cymatix_context-0.8.0/benchmarks/results/faithfulness/spike_239b_results.json +238 -0
- cymatix_context-0.8.0/benchmarks/snow/__init__.py +0 -0
- cymatix_context-0.8.0/benchmarks/snow/bench_snow.py +740 -0
- cymatix_context-0.8.0/benchmarks/snow/cascade.py +161 -0
- cymatix_context-0.8.0/benchmarks/snow/oracle.py +78 -0
- cymatix_context-0.8.0/benchmarks/snow/prompts.py +49 -0
- cymatix_context-0.8.0/benchmarks/snow/results/.gitkeep +0 -0
- cymatix_context-0.8.0/benchmarks/snow/results/ablation_baseline_2026-04-17.json +13467 -0
- cymatix_context-0.8.0/benchmarks/snow/results/ablation_baseline_r1_2026-04-17.json +13424 -0
- cymatix_context-0.8.0/benchmarks/snow/results/ablation_baseline_r2_2026-04-17.json +13437 -0
- cymatix_context-0.8.0/benchmarks/snow/results/ablation_baseline_r3_2026-04-17.json +13463 -0
- cymatix_context-0.8.0/benchmarks/snow/results/ablation_d5_cold_tier_on_2026-04-17.json +13425 -0
- cymatix_context-0.8.0/benchmarks/snow/results/ablation_d5_cold_tier_on_r1_2026-04-17.json +13494 -0
- cymatix_context-0.8.0/benchmarks/snow/results/ablation_d5_cold_tier_on_r2_2026-04-17.json +13479 -0
- cymatix_context-0.8.0/benchmarks/snow/results/ablation_d5_cold_tier_on_r3_2026-04-17.json +13459 -0
- cymatix_context-0.8.0/benchmarks/snow/results/ablation_d6_cymatics_off_2026-04-17.json +13487 -0
- cymatix_context-0.8.0/benchmarks/snow/results/ablation_d6_cymatics_off_r1_2026-04-17.json +13433 -0
- cymatix_context-0.8.0/benchmarks/snow/results/ablation_d6_cymatics_off_r2_2026-04-17.json +13466 -0
- cymatix_context-0.8.0/benchmarks/snow/results/ablation_d6_cymatics_off_r3_2026-04-17.json +13449 -0
- cymatix_context-0.8.0/benchmarks/snow/results/ablation_d8_harmonic_off_2026-04-17.json +13487 -0
- cymatix_context-0.8.0/benchmarks/snow/results/ablation_d8_harmonic_off_r1_2026-04-17.json +13508 -0
- cymatix_context-0.8.0/benchmarks/snow/results/ablation_d8_harmonic_off_r2_2026-04-17.json +13483 -0
- cymatix_context-0.8.0/benchmarks/snow/results/ablation_d8_harmonic_off_r3_2026-04-17.json +13487 -0
- cymatix_context-0.8.0/benchmarks/snow/results/ablation_sweep_2026-04-17.json +58 -0
- cymatix_context-0.8.0/benchmarks/snow/results/ablation_sweep_2026-04-17_r3.json +315 -0
- cymatix_context-0.8.0/benchmarks/snow/results/baseline_oracle_only_posttombstone_124555b.json +13426 -0
- cymatix_context-0.8.0/benchmarks/snow/results/baseline_oracle_only_preshard_d78097b.json +13414 -0
- cymatix_context-0.8.0/benchmarks/snow/results/snow_oracle-only_2026-04-16.json +13414 -0
- cymatix_context-0.8.0/benchmarks/snow/results/snow_oracle-only_2026-04-17.json +13426 -0
- cymatix_context-0.8.0/benchmarks/snow/results/snow_qwen3_4b_2026-04-16.json +2921 -0
- cymatix_context-0.8.0/benchmarks/snow/snow_compare.py +179 -0
- cymatix_context-0.8.0/benchmarks/snow/snow_queries.json +762 -0
- cymatix_context-0.8.0/benchmarks/sweep_ann_sigma.py +172 -0
- cymatix_context-0.8.0/benchmarks/sweep_dense_additive_weight.py +241 -0
- cymatix_context-0.8.0/benchmarks/sweep_splade_scale_curve.py +396 -0
- cymatix_context-0.8.0/cymatix.toml +650 -0
- cymatix_context-0.8.0/cymatix_context/__init__.py +107 -0
- cymatix_context-0.8.0/cymatix_context/_asgi.py +14 -0
- cymatix_context-0.8.0/cymatix_context/accel.py +377 -0
- cymatix_context-0.8.0/cymatix_context/adapters/__init__.py +13 -0
- cymatix_context-0.8.0/cymatix_context/adapters/cache.py +313 -0
- cymatix_context-0.8.0/cymatix_context/adapters/dal.py +303 -0
- cymatix_context-0.8.0/cymatix_context/adapters/retriever.py +286 -0
- cymatix_context-0.8.0/cymatix_context/agent_prompt.py +99 -0
- cymatix_context-0.8.0/cymatix_context/aliases.py +76 -0
- cymatix_context-0.8.0/cymatix_context/api.py +706 -0
- cymatix_context-0.8.0/cymatix_context/backends/__init__.py +0 -0
- cymatix_context-0.8.0/cymatix_context/backends/bgem3_codec.py +276 -0
- cymatix_context-0.8.0/cymatix_context/backends/compressor.py +893 -0
- cymatix_context-0.8.0/cymatix_context/backends/deberta_backend.py +295 -0
- cymatix_context-0.8.0/cymatix_context/backends/nli_backend.py +200 -0
- cymatix_context-0.8.0/cymatix_context/backends/sema.py +365 -0
- cymatix_context-0.8.0/cymatix_context/backends/sema_codec.py +47 -0
- cymatix_context-0.8.0/cymatix_context/backends/splade_backend.py +231 -0
- cymatix_context-0.8.0/cymatix_context/bridge.py +649 -0
- cymatix_context-0.8.0/cymatix_context/budget_zone.py +98 -0
- cymatix_context-0.8.0/cymatix_context/cli/__init__.py +11 -0
- cymatix_context-0.8.0/cymatix_context/cli/__main__.py +14 -0
- cymatix_context-0.8.0/cymatix_context/cli/cmd_config.py +92 -0
- cymatix_context-0.8.0/cymatix_context/cli/cmd_diag.py +85 -0
- cymatix_context-0.8.0/cymatix_context/cli/cmd_gene.py +139 -0
- cymatix_context-0.8.0/cymatix_context/cli/cmd_ingest.py +274 -0
- cymatix_context-0.8.0/cymatix_context/cli/cmd_neighbors.py +87 -0
- cymatix_context-0.8.0/cymatix_context/cli/cmd_packet.py +136 -0
- cymatix_context-0.8.0/cymatix_context/cli/cmd_query.py +107 -0
- cymatix_context-0.8.0/cymatix_context/cli/cmd_refresh_targets.py +98 -0
- cymatix_context-0.8.0/cymatix_context/cli/cmd_serve.py +32 -0
- cymatix_context-0.8.0/cymatix_context/cli/cmd_status.py +214 -0
- cymatix_context-0.8.0/cymatix_context/cli/dispatcher.py +149 -0
- cymatix_context-0.8.0/cymatix_context/cli/helix_status.py +312 -0
- cymatix_context-0.8.0/cymatix_context/cli/output.py +37 -0
- cymatix_context-0.8.0/cymatix_context/codons.py +8 -0
- cymatix_context-0.8.0/cymatix_context/config.py +1690 -0
- cymatix_context-0.8.0/cymatix_context/context_manager.py +3754 -0
- cymatix_context-0.8.0/cymatix_context/context_packet.py +775 -0
- cymatix_context-0.8.0/cymatix_context/cross_store_import.py +236 -0
- cymatix_context-0.8.0/cymatix_context/encoding/__init__.py +0 -0
- cymatix_context-0.8.0/cymatix_context/encoding/chunk_fetch.py +107 -0
- cymatix_context-0.8.0/cymatix_context/encoding/fragments.py +401 -0
- cymatix_context-0.8.0/cymatix_context/encoding/headroom_bridge.py +347 -0
- cymatix_context-0.8.0/cymatix_context/encoding/legibility.py +157 -0
- cymatix_context-0.8.0/cymatix_context/encoding/tree_chunker.py +591 -0
- cymatix_context-0.8.0/cymatix_context/exceptions.py +43 -0
- cymatix_context-0.8.0/cymatix_context/filename_anchor.py +196 -0
- cymatix_context-0.8.0/cymatix_context/genome.py +32 -0
- cymatix_context-0.8.0/cymatix_context/hardware.py +500 -0
- cymatix_context-0.8.0/cymatix_context/hgt.py +26 -0
- cymatix_context-0.8.0/cymatix_context/identity/__init__.py +0 -0
- cymatix_context-0.8.0/cymatix_context/identity/claims.py +322 -0
- cymatix_context-0.8.0/cymatix_context/identity/claims_analyze.py +218 -0
- cymatix_context-0.8.0/cymatix_context/identity/claims_graph.py +338 -0
- cymatix_context-0.8.0/cymatix_context/identity/cwola.py +414 -0
- cymatix_context-0.8.0/cymatix_context/identity/provenance.py +395 -0
- cymatix_context-0.8.0/cymatix_context/identity/registry.py +1180 -0
- cymatix_context-0.8.0/cymatix_context/identity/session_delivery.py +252 -0
- cymatix_context-0.8.0/cymatix_context/integrations/__init__.py +0 -0
- cymatix_context-0.8.0/cymatix_context/integrations/scorerift.py +388 -0
- cymatix_context-0.8.0/cymatix_context/knowledge_store.py +4999 -0
- cymatix_context-0.8.0/cymatix_context/launcher/__init__.py +15 -0
- cymatix_context-0.8.0/cymatix_context/launcher/_install_helpers.py +153 -0
- cymatix_context-0.8.0/cymatix_context/launcher/app.py +1500 -0
- cymatix_context-0.8.0/cymatix_context/launcher/collector.py +680 -0
- cymatix_context-0.8.0/cymatix_context/launcher/genome_registry.py +443 -0
- cymatix_context-0.8.0/cymatix_context/launcher/headroom_supervisor.py +531 -0
- cymatix_context-0.8.0/cymatix_context/launcher/host_labels.py +68 -0
- cymatix_context-0.8.0/cymatix_context/launcher/ide_fingerprint.py +47 -0
- cymatix_context-0.8.0/cymatix_context/launcher/installer.py +287 -0
- cymatix_context-0.8.0/cymatix_context/launcher/model_labels.py +32 -0
- cymatix_context-0.8.0/cymatix_context/launcher/observability_health.py +160 -0
- cymatix_context-0.8.0/cymatix_context/launcher/observability_paths.py +128 -0
- cymatix_context-0.8.0/cymatix_context/launcher/observability_render.py +286 -0
- cymatix_context-0.8.0/cymatix_context/launcher/observability_supervisor.py +561 -0
- cymatix_context-0.8.0/cymatix_context/launcher/state.py +155 -0
- cymatix_context-0.8.0/cymatix_context/launcher/static/launcher.css +1223 -0
- cymatix_context-0.8.0/cymatix_context/launcher/static/launcher.js +414 -0
- cymatix_context-0.8.0/cymatix_context/launcher/supervisor.py +610 -0
- cymatix_context-0.8.0/cymatix_context/launcher/templates/components/agents_panel.html +166 -0
- cymatix_context-0.8.0/cymatix_context/launcher/templates/components/all_agents_panel.html +23 -0
- cymatix_context-0.8.0/cymatix_context/launcher/templates/components/controls.html +53 -0
- cymatix_context-0.8.0/cymatix_context/launcher/templates/components/database_panel.html +92 -0
- cymatix_context-0.8.0/cymatix_context/launcher/templates/components/diagnostics_panel.html +46 -0
- cymatix_context-0.8.0/cymatix_context/launcher/templates/components/disconnected_agents_panel.html +21 -0
- cymatix_context-0.8.0/cymatix_context/launcher/templates/components/genes_panel.html +13 -0
- cymatix_context-0.8.0/cymatix_context/launcher/templates/components/models_panel.html +14 -0
- cymatix_context-0.8.0/cymatix_context/launcher/templates/components/observability_panel.html +36 -0
- cymatix_context-0.8.0/cymatix_context/launcher/templates/components/panels.html +99 -0
- cymatix_context-0.8.0/cymatix_context/launcher/templates/components/participants_panel.html +39 -0
- cymatix_context-0.8.0/cymatix_context/launcher/templates/components/parties_panel.html +12 -0
- cymatix_context-0.8.0/cymatix_context/launcher/templates/components/pipeline_panel.html +71 -0
- cymatix_context-0.8.0/cymatix_context/launcher/templates/components/switchboard_panel.html +36 -0
- cymatix_context-0.8.0/cymatix_context/launcher/templates/components/tokens_panel.html +19 -0
- cymatix_context-0.8.0/cymatix_context/launcher/templates/components/tools_panel.html +23 -0
- cymatix_context-0.8.0/cymatix_context/launcher/templates/dashboard.html +57 -0
- cymatix_context-0.8.0/cymatix_context/launcher/templates/layout.html +46 -0
- cymatix_context-0.8.0/cymatix_context/launcher/tray.py +1246 -0
- cymatix_context-0.8.0/cymatix_context/launcher/update_check.py +119 -0
- cymatix_context-0.8.0/cymatix_context/mcp/__init__.py +0 -0
- cymatix_context-0.8.0/cymatix_context/mcp/mcp_server.py +1184 -0
- cymatix_context-0.8.0/cymatix_context/mcp/server.py +366 -0
- cymatix_context-0.8.0/cymatix_context/mcp_server.py +15 -0
- cymatix_context-0.8.0/cymatix_context/mem_sync.py +337 -0
- cymatix_context-0.8.0/cymatix_context/okf/__init__.py +28 -0
- cymatix_context-0.8.0/cymatix_context/okf/bundle.py +359 -0
- cymatix_context-0.8.0/cymatix_context/okf/digest.py +112 -0
- cymatix_context-0.8.0/cymatix_context/okf/ingest.py +207 -0
- cymatix_context-0.8.0/cymatix_context/parallel.py +93 -0
- cymatix_context-0.8.0/cymatix_context/persistence.py +264 -0
- cymatix_context-0.8.0/cymatix_context/pipeline/__init__.py +1 -0
- cymatix_context-0.8.0/cymatix_context/pipeline/tier_logic.py +340 -0
- cymatix_context-0.8.0/cymatix_context/py.typed +0 -0
- cymatix_context-0.8.0/cymatix_context/replication.py +23 -0
- cymatix_context-0.8.0/cymatix_context/retrieval/__init__.py +0 -0
- cymatix_context-0.8.0/cymatix_context/retrieval/expand.py +218 -0
- cymatix_context-0.8.0/cymatix_context/retrieval/freshness.py +277 -0
- cymatix_context-0.8.0/cymatix_context/retrieval/fusion.py +244 -0
- cymatix_context-0.8.0/cymatix_context/retrieval/fusion_plr.py +262 -0
- cymatix_context-0.8.0/cymatix_context/retrieval/intent_router.py +64 -0
- cymatix_context-0.8.0/cymatix_context/retrieval/lexical_rescue.py +187 -0
- cymatix_context-0.8.0/cymatix_context/retrieval/query_classifier.py +224 -0
- cymatix_context-0.8.0/cymatix_context/retrieval/relevance_window.py +93 -0
- cymatix_context-0.8.0/cymatix_context/retrieval/rerank_combinators.py +190 -0
- cymatix_context-0.8.0/cymatix_context/retrieval/seeded_edges.py +494 -0
- cymatix_context-0.8.0/cymatix_context/retrieval/sr.py +174 -0
- cymatix_context-0.8.0/cymatix_context/retrieval/tie_break.py +312 -0
- cymatix_context-0.8.0/cymatix_context/ribosome.py +8 -0
- cymatix_context-0.8.0/cymatix_context/schemas.py +725 -0
- cymatix_context-0.8.0/cymatix_context/scoring/__init__.py +0 -0
- cymatix_context-0.8.0/cymatix_context/scoring/blend.py +315 -0
- cymatix_context-0.8.0/cymatix_context/scoring/cymatics.py +657 -0
- cymatix_context-0.8.0/cymatix_context/scoring/know_calibration.py +446 -0
- cymatix_context-0.8.0/cymatix_context/scoring/know_decision.py +532 -0
- cymatix_context-0.8.0/cymatix_context/scoring/ray_trace.py +519 -0
- cymatix_context-0.8.0/cymatix_context/scoring/symbol_pagerank.py +163 -0
- cymatix_context-0.8.0/cymatix_context/scoring/tcm.py +335 -0
- cymatix_context-0.8.0/cymatix_context/server/__init__.py +42 -0
- cymatix_context-0.8.0/cymatix_context/server/app.py +224 -0
- cymatix_context-0.8.0/cymatix_context/server/helpers.py +1144 -0
- cymatix_context-0.8.0/cymatix_context/server/routes_admin.py +1262 -0
- cymatix_context-0.8.0/cymatix_context/server/routes_context.py +914 -0
- cymatix_context-0.8.0/cymatix_context/server/routes_ingest.py +164 -0
- cymatix_context-0.8.0/cymatix_context/server/routes_registry.py +349 -0
- cymatix_context-0.8.0/cymatix_context/shard_router.py +1681 -0
- cymatix_context-0.8.0/cymatix_context/shard_schema.py +543 -0
- cymatix_context-0.8.0/cymatix_context/sharding.py +568 -0
- cymatix_context-0.8.0/cymatix_context/storage/__init__.py +19 -0
- cymatix_context-0.8.0/cymatix_context/storage/co_activation.py +398 -0
- cymatix_context-0.8.0/cymatix_context/storage/ddl.py +785 -0
- cymatix_context-0.8.0/cymatix_context/storage/indexes.py +404 -0
- cymatix_context-0.8.0/cymatix_context/tagger.py +704 -0
- cymatix_context-0.8.0/cymatix_context/telemetry/__init__.py +13 -0
- cymatix_context-0.8.0/cymatix_context/telemetry/genai_telemetry.py +543 -0
- cymatix_context-0.8.0/cymatix_context/telemetry/metrics.py +234 -0
- cymatix_context-0.8.0/cymatix_context/telemetry/otel.py +1251 -0
- cymatix_context-0.8.0/cymatix_context/vault/__init__.py +237 -0
- cymatix_context-0.8.0/cymatix_context/vault/cli.py +149 -0
- cymatix_context-0.8.0/cymatix_context/vault/locking.py +58 -0
- cymatix_context-0.8.0/cymatix_context/vault/pruner.py +299 -0
- cymatix_context-0.8.0/cymatix_context/vault/schema.py +114 -0
- cymatix_context-0.8.0/cymatix_context/vault/state.py +184 -0
- cymatix_context-0.8.0/cymatix_context/vault/writer.py +546 -0
- cymatix_context-0.8.0/cymatix_context/write_queue.py +240 -0
- cymatix_context-0.8.0/deploy/README.md +29 -0
- cymatix_context-0.8.0/deploy/launchd/com.swiftwing21.helix-launcher.plist +82 -0
- cymatix_context-0.8.0/deploy/launchd/io.helix.launcher.plist +93 -0
- cymatix_context-0.8.0/deploy/otel/README.md +56 -0
- cymatix_context-0.8.0/deploy/otel/docker-compose.yml +80 -0
- cymatix_context-0.8.0/deploy/otel/grafana/dashboards/helix-agent-usage.json +172 -0
- cymatix_context-0.8.0/deploy/otel/grafana/dashboards/helix-genai.json +135 -0
- cymatix_context-0.8.0/deploy/otel/grafana/dashboards/helix-internals.json +491 -0
- cymatix_context-0.8.0/deploy/otel/grafana/dashboards/helix-know-miss.json +243 -0
- cymatix_context-0.8.0/deploy/otel/grafana/dashboards/helix-overview.json +413 -0
- cymatix_context-0.8.0/deploy/otel/grafana/dashboards/helix-pipeline-observatory.json +690 -0
- cymatix_context-0.8.0/deploy/otel/grafana/dashboards/helix-retrieval-hitl.json +415 -0
- cymatix_context-0.8.0/deploy/otel/grafana/provisioning/dashboards/dashboards.yml +12 -0
- cymatix_context-0.8.0/deploy/otel/grafana/provisioning/datasources/datasources.yml +26 -0
- cymatix_context-0.8.0/deploy/otel/loki-config.yaml +33 -0
- cymatix_context-0.8.0/deploy/otel/otel-collector-config.yaml +74 -0
- cymatix_context-0.8.0/deploy/otel/prometheus.yml +14 -0
- cymatix_context-0.8.0/deploy/otel/tempo.yaml +40 -0
- cymatix_context-0.8.0/deploy/systemd/helix-launcher.service +70 -0
- cymatix_context-0.8.0/deploy/windows/README.md +141 -0
- cymatix_context-0.8.0/deploy/windows/setup-cymatix.ps1 +218 -0
- cymatix_context-0.8.0/docs/DESIGN_TARGET.md +254 -0
- cymatix_context-0.8.0/docs/INTEGRATING_WITH_EXISTING_RAG.md +657 -0
- cymatix_context-0.8.0/docs/MISSION.md +124 -0
- cymatix_context-0.8.0/docs/ROADMAP.md +159 -0
- cymatix_context-0.8.0/docs/ROSETTA.md +294 -0
- cymatix_context-0.8.0/docs/SETUP.md +800 -0
- cymatix_context-0.8.0/docs/TROUBLESHOOTING.md +834 -0
- cymatix_context-0.8.0/docs/agent-sdk-fragment.md +78 -0
- cymatix_context-0.8.0/docs/api/context-endpoint.md +850 -0
- cymatix_context-0.8.0/docs/api/endpoints.md +154 -0
- cymatix_context-0.8.0/docs/api/mcp-tools.md +66 -0
- cymatix_context-0.8.0/docs/architecture/2026-06-07-pipeline-and-switchboard.md +454 -0
- cymatix_context-0.8.0/docs/architecture/DIMENSIONS.md +226 -0
- cymatix_context-0.8.0/docs/architecture/FEDERATION_LOCAL.md +466 -0
- cymatix_context-0.8.0/docs/architecture/KNOWLEDGE_GRAPH.md +309 -0
- cymatix_context-0.8.0/docs/architecture/LAUNCHER.md +795 -0
- cymatix_context-0.8.0/docs/architecture/OBSERVABILITY.md +336 -0
- cymatix_context-0.8.0/docs/architecture/PIPELINE_LANES.md +442 -0
- cymatix_context-0.8.0/docs/architecture/SESSION_REGISTRY.md +661 -0
- cymatix_context-0.8.0/docs/architecture/adr/2026-05-14-spec-vs-code-design-decisions.md +245 -0
- cymatix_context-0.8.0/docs/architecture/raude_antigravity_persona.md +22 -0
- cymatix_context-0.8.0/docs/archive/.gitkeep +0 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/AB_TEST_PLAN.md +331 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/AI_CONSUMER_ROADMAP_2026-04-14.md +343 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/CONFIDENCE_API.md +213 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/COUNCIL_TRIAGE_2026-04-13.md +112 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/DELTA_SYNC_DEFERRED_2026-04-22.md +120 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/FILENAME_ANCHOR_SPIKE_2026-04-15.md +191 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/GENOME_SHARDING.md +189 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/HIERARCHICAL_MATH.md +181 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/IMPLEMENTATION_ROADMAP.md +256 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/INDEX_MODE_ENDPOINT.md +294 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/LANGUAGE_AT_THE_EDGES.md +360 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/LAYERED_FINGERPRINTS.md +209 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/MEMORY_WATCH_HOOK.md +163 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/POLYTROPIC_FINGERPRINT_WEIGHTS.md +155 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/PUSH_PULL_CONTEXT.md +246 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/STATISTICAL_FUSION.md +332 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/SUCCESSOR_REPRESENTATION.md +198 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/TCM_VELOCITY.md +188 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/TELEMETRY_GOTCHAS_2026-04-14.md +123 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/TIE_BREAK_WALKING.md +327 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/WALKER_PATTERNS.md +224 -0
- cymatix_context-0.8.0/docs/archive/FUTURE/genome_cross_compare_2026-04-15_0111.md +223 -0
- cymatix_context-0.8.0/docs/archive/SESSION_HANDOFF.md +255 -0
- cymatix_context-0.8.0/docs/archive/collab/BATMAN_HANDOFF_MANIFOLD_PORT.md +206 -0
- cymatix_context-0.8.0/docs/archive/collab/CELESTIA_JOINT_EXPERIMENT.md +681 -0
- cymatix_context-0.8.0/docs/archive/collab/HELIX_CODEBASE_INTRO.md +423 -0
- cymatix_context-0.8.0/docs/archive/collab/RESPONSE_TO_SIGNALING_BRIEF.md +160 -0
- cymatix_context-0.8.0/docs/archive/collab/ROADMAP_FOR_TODD.md +216 -0
- cymatix_context-0.8.0/docs/archive/collab/batman_output/PORT_NOTES.md +203 -0
- cymatix_context-0.8.0/docs/archive/collab/batman_output/retrieval_manifold.py +520 -0
- cymatix_context-0.8.0/docs/archive/collab/batman_output/test_retrieval_manifold.py +243 -0
- cymatix_context-0.8.0/docs/archive/collab/comms/COUNTER_MODE_SPEC_2026-04-14.md +184 -0
- cymatix_context-0.8.0/docs/archive/collab/comms/HELIX_STATUS_AND_FINDINGS_2026-04-14.md +217 -0
- cymatix_context-0.8.0/docs/archive/collab/comms/LOCKSTEP_MATRIX_FINDINGS_2026-04-14.md +159 -0
- cymatix_context-0.8.0/docs/archive/collab/comms/LOCKSTEP_MATRIX_TEST.md +59 -0
- cymatix_context-0.8.0/docs/archive/collab/comms/LOCKSTEP_MATRIX_TEST_v2.md +59 -0
- cymatix_context-0.8.0/docs/archive/collab/comms/LOCKSTEP_TEST.md +66 -0
- cymatix_context-0.8.0/docs/archive/collab/comms/PHASE0_BOOTSTRAP_HELIX.md +91 -0
- cymatix_context-0.8.0/docs/archive/collab/comms/PHASE0_V2_DRILLDOWN.md +71 -0
- cymatix_context-0.8.0/docs/archive/collab/comms/PHASE0_V2_FOLLOWUPS_2026-04-21.md +162 -0
- cymatix_context-0.8.0/docs/archive/collab/comms/REPLY_PWPC_FROM_LAUDE.md +137 -0
- cymatix_context-0.8.0/docs/archive/collab/comms/REPLY_TO_PAIRWISE_FROM_HELIX.md +192 -0
- cymatix_context-0.8.0/docs/archive/collab/comms/REPLY_TO_PWPC_UPDATE_2026-04-14.md +262 -0
- cymatix_context-0.8.0/docs/archive/collab/comms/SPRINT3_TRAINER_2026-04-21.md +114 -0
- cymatix_context-0.8.0/docs/archive/collab/experiment_log.md +267 -0
- cymatix_context-0.8.0/docs/archive/collab/from_todd/PAIRWISE_ENERGY_CONVERGENCE.md +134 -0
- cymatix_context-0.8.0/docs/archive/collab/from_todd/PWPC_EXPERIMENT_SPEC.md +498 -0
- cymatix_context-0.8.0/docs/archive/collab/from_todd/PWPC_UPDATE_FOR_MAX.md +211 -0
- cymatix_context-0.8.0/docs/archive/collab/from_todd/README_FOR_FAUXTROT.md +45 -0
- cymatix_context-0.8.0/docs/archive/collab/from_todd/REPLY_TO_LAUDE_PWPC.md +275 -0
- cymatix_context-0.8.0/docs/archive/papers/2026-05-01-the-same-move-at-every-layer.md +169 -0
- cymatix_context-0.8.0/docs/archive/papers/AGENTOME_PART_II_DRAFT.md +286 -0
- cymatix_context-0.8.0/docs/archive/papers/PAPER_FIGURE_SPECS.md +299 -0
- cymatix_context-0.8.0/docs/archive/papers/PAPER_THREE_CONSTRAINTS.md +192 -0
- cymatix_context-0.8.0/docs/archive/papers/SIKE_POST_DRAFT.md +34 -0
- cymatix_context-0.8.0/docs/archive/papers/figures/2026-05-01-layer-stack.md +139 -0
- cymatix_context-0.8.0/docs/archive/plans/2026-04-15-helix-ai-visibility.md +617 -0
- cymatix_context-0.8.0/docs/archive/plans/2026-04-29-query-classifier-injection-router.md +1027 -0
- cymatix_context-0.8.0/docs/archive/plans/2026-05-02-abstain-tier.md +916 -0
- cymatix_context-0.8.0/docs/archive/plans/2026-05-04-hardware-detection.md +2267 -0
- cymatix_context-0.8.0/docs/archive/plans/2026-05-04-hardware-mps-rocm-ci.md +751 -0
- cymatix_context-0.8.0/docs/archive/plans/2026-05-04-native-observability-sidecar.md +3778 -0
- cymatix_context-0.8.0/docs/archive/plans/2026-05-05-foveated-splice.md +766 -0
- cymatix_context-0.8.0/docs/archive/plans/2026-05-08-readme-v2.md +814 -0
- cymatix_context-0.8.0/docs/archive/plans/2026-05-08-retrieval-stack-upgrade.md +1396 -0
- cymatix_context-0.8.0/docs/archive/plans/2026-05-13-readme-v3-plan.md +150 -0
- cymatix_context-0.8.0/docs/archive/positioning/ECONOMICS.md +243 -0
- cymatix_context-0.8.0/docs/archive/positioning/ENTERPRISE.md +400 -0
- cymatix_context-0.8.0/docs/archive/research/MUSIC_OF_RETRIEVAL.md +187 -0
- cymatix_context-0.8.0/docs/archive/research/RESEARCH.md +349 -0
- cymatix_context-0.8.0/docs/archive/research/RESEARCH_REVIEW_2026-04-22.md +260 -0
- cymatix_context-0.8.0/docs/archive/research/RESEARCH_VELOCITY.md +176 -0
- cymatix_context-0.8.0/docs/archive/research/SPRINT_2026-04-22_WRITEUP.md +135 -0
- cymatix_context-0.8.0/docs/archive/specs/2026-04-16-fingerprint-mode-plan.md +307 -0
- cymatix_context-0.8.0/docs/archive/specs/2026-04-16-layered-fingerprints-plan.md +274 -0
- cymatix_context-0.8.0/docs/archive/specs/2026-04-16-snow-benchmark-design.md +348 -0
- cymatix_context-0.8.0/docs/archive/specs/2026-04-16-snow-implementation-plan.md +914 -0
- cymatix_context-0.8.0/docs/archive/specs/2026-04-17-agent-context-index-build-spec.md +657 -0
- cymatix_context-0.8.0/docs/archive/specs/2026-04-17-docs-tidying-helix-probe.md +200 -0
- cymatix_context-0.8.0/docs/archive/specs/2026-04-17-genome-sharding-plan.md +183 -0
- cymatix_context-0.8.0/docs/archive/specs/2026-04-29-query-classifier-injection-router-design.md +215 -0
- cymatix_context-0.8.0/docs/archive/specs/2026-05-01-convergence-paper-design.md +149 -0
- cymatix_context-0.8.0/docs/archive/specs/2026-05-02-abstain-tier-design.md +333 -0
- cymatix_context-0.8.0/docs/archive/specs/2026-05-03-foveated-splice-design.md +456 -0
- cymatix_context-0.8.0/docs/archive/specs/2026-05-04-hardware-detection-design.md +512 -0
- cymatix_context-0.8.0/docs/archive/specs/2026-05-04-native-observability-sidecar-design.md +308 -0
- cymatix_context-0.8.0/docs/archive/superpowers/plans/2026-05-01-convergence-paper.md +412 -0
- cymatix_context-0.8.0/docs/archive/superpowers/plans/2026-05-05-vendor-host-badges.md +1274 -0
- cymatix_context-0.8.0/docs/archive/superpowers/plans/2026-05-06-helix-announce-self-report.md +1898 -0
- cymatix_context-0.8.0/docs/archive/superpowers/plans/2026-05-06-obsidian-vault-export-v1.md +4094 -0
- cymatix_context-0.8.0/docs/archive/superpowers/specs/2026-05-06-helix-announce-self-report-design.md +302 -0
- cymatix_context-0.8.0/docs/archive/superpowers/specs/2026-05-06-obsidian-vault-export-design.md +485 -0
- cymatix_context-0.8.0/docs/archive/superpowers/specs/2026-05-06-obsidian-vault-export-full-design-v1.1plus.md +782 -0
- cymatix_context-0.8.0/docs/archive/superpowers/specs/2026-05-08-readme-v2-design.md +358 -0
- cymatix_context-0.8.0/docs/audits/2026-06-09-next-steps-evidence.md +62 -0
- cymatix_context-0.8.0/docs/audits/2026-06-10-test-tuning-roadmap.md +184 -0
- cymatix_context-0.8.0/docs/audits/2026-06-12-pipeline-value-consensus.md +266 -0
- cymatix_context-0.8.0/docs/benchmarks/2026-06-04-code-context-benchmark-strategy.md +140 -0
- cymatix_context-0.8.0/docs/benchmarks/2026-06-18-contextbench-step0-master-vs-bm25.md +50 -0
- cymatix_context-0.8.0/docs/benchmarks/2026-06-27-cast-vs-greedy-contextbench-step0.md +36 -0
- cymatix_context-0.8.0/docs/benchmarks/2026-06-28-ws2-symbol-graph-contextbench.md +31 -0
- cymatix_context-0.8.0/docs/benchmarks/2026-07-01-external-bench-run-plan.md +116 -0
- cymatix_context-0.8.0/docs/benchmarks/2026-07-05-sike-bedsweep-issue-resolutions.md +199 -0
- cymatix_context-0.8.0/docs/benchmarks/2026-07-06-faithfulness-experiment-runbook.md +130 -0
- cymatix_context-0.8.0/docs/benchmarks/2026-07-06-know-logistic-calibration.md +106 -0
- cymatix_context-0.8.0/docs/benchmarks/2026-07-06-rrf-default-rebaseline.md +96 -0
- cymatix_context-0.8.0/docs/benchmarks/2026-07-06-sike-run2-fts-depth-fusion.md +99 -0
- cymatix_context-0.8.0/docs/benchmarks/2026-07-06-splice-fix-remeasure.md +67 -0
- cymatix_context-0.8.0/docs/benchmarks/2026-07-10-erb-blob-829k-reproduction.md +481 -0
- cymatix_context-0.8.0/docs/benchmarks/2026-07-12-erb-official-rejudge-runbook.md +329 -0
- cymatix_context-0.8.0/docs/benchmarks/2026-07-13-assetopsbench-eval-verdict.md +72 -0
- cymatix_context-0.8.0/docs/benchmarks/2026-07-19-armc-symbol-sike.md +83 -0
- cymatix_context-0.8.0/docs/benchmarks/2026-07-20-armc-contextbench-heldout.md +79 -0
- cymatix_context-0.8.0/docs/benchmarks/BENCHMARKS.md +692 -0
- cymatix_context-0.8.0/docs/benchmarks/BENCHMARK_NOTES.md +117 -0
- cymatix_context-0.8.0/docs/benchmarks/BENCHMARK_RATIONALE.md +303 -0
- cymatix_context-0.8.0/docs/benchmarks/GENOME_FIXTURE_MATRIX.md +272 -0
- cymatix_context-0.8.0/docs/benchmarks/MULTI_VALID_GOLD.md +325 -0
- cymatix_context-0.8.0/docs/benchmarks/code-track-regression-log.md +63 -0
- cymatix_context-0.8.0/docs/benchmarks/coderag_bench_runbook.md +361 -0
- cymatix_context-0.8.0/docs/benchmarks/data/2026-07-06-located-n1000-erb50k-full-rrf.jsonl +617 -0
- cymatix_context-0.8.0/docs/benchmarks/data/2026-07-06-located-n1000-xl-clean-full-rrf.jsonl +1000 -0
- cymatix_context-0.8.0/docs/benchmarks/data/2026-07-06-located-n1000-xl-clean-lexical-rrf.jsonl +1000 -0
- cymatix_context-0.8.0/docs/benchmarks/data/2026-07-06-rebaseline-fts-depth-sweep-xl-clean.json +3126 -0
- cymatix_context-0.8.0/docs/benchmarks/data/2026-07-06-rebaseline-fts-depth-sweep-xl.json +3126 -0
- cymatix_context-0.8.0/docs/benchmarks/data/2026-07-06-splice-fix-remeasure-xl-clean-d48.json +1056 -0
- cymatix_context-0.8.0/docs/benchmarks/data/2026-07-06-splice-fix-remeasure-xl-d48.json +1056 -0
- cymatix_context-0.8.0/docs/benchmarks/data/eval_located_n1000_erb50k_full_rrf.json +177 -0
- cymatix_context-0.8.0/docs/benchmarks/data/eval_located_n1000_xl_clean_full_rrf.json +177 -0
- cymatix_context-0.8.0/docs/benchmarks/data/eval_located_union_full_rrf.json +177 -0
- cymatix_context-0.8.0/docs/benchmarks/helix_probe_lexical.toml +107 -0
- cymatix_context-0.8.0/docs/benchmarks/helix_probe_symbol.toml +315 -0
- cymatix_context-0.8.0/docs/benchmarks/helix_serving_probe_blend_legacy.toml +643 -0
- cymatix_context-0.8.0/docs/benchmarks/helix_serving_probe_blend_off.toml +643 -0
- cymatix_context-0.8.0/docs/benchmarks/helix_serving_probe_blend_scale_relative.toml +643 -0
- cymatix_context-0.8.0/docs/benchmarks/repobench_r_runbook.md +224 -0
- cymatix_context-0.8.0/docs/clients/claude-code.md +229 -0
- cymatix_context-0.8.0/docs/clients/cli.md +221 -0
- cymatix_context-0.8.0/docs/config-reference.md +1822 -0
- cymatix_context-0.8.0/docs/councils/2026-05-30-multihop-scale-inference.md +68 -0
- cymatix_context-0.8.0/docs/councils/2026-07-06-jspace-roadmap-council.md +123 -0
- cymatix_context-0.8.0/docs/councils/2026-07-06-jspace-roadmap-council.panel.json +863 -0
- cymatix_context-0.8.0/docs/councils/2026-07-06-roadmap-lineage.md +27 -0
- cymatix_context-0.8.0/docs/councils/2026-07-13-assetopsbench-reshape-council.md +67 -0
- cymatix_context-0.8.0/docs/councils/2026-07-13-assetopsbench-reshape-council.panel.json +190 -0
- cymatix_context-0.8.0/docs/dashboards/helix-pipeline.json +273 -0
- cymatix_context-0.8.0/docs/decisions/2026-05-15-bench-tuning-knobs_consensus.md +108 -0
- cymatix_context-0.8.0/docs/design/2026-07-05-efficiency-cost-reduction.md +223 -0
- cymatix_context-0.8.0/docs/design/2026-07-06-jspace-roadmap-review.md +89 -0
- cymatix_context-0.8.0/docs/design/2026-07-06-jspace-splat-roadmap.md +324 -0
- cymatix_context-0.8.0/docs/hardware/grace-blackwell.md +151 -0
- cymatix_context-0.8.0/docs/investigations/0027-max-blob-vs-shard-merge-rank-degrader-plus-500k-dense-backfill-gap.md +56 -0
- cymatix_context-0.8.0/docs/investigations/165_path_key_index_consensus.md +181 -0
- cymatix_context-0.8.0/docs/investigations/2026-04-18-spectral-gap-test-case.md +36 -0
- cymatix_context-0.8.0/docs/investigations/2026-06-02-benchmark-timeline-adversarial-audit.md +118 -0
- cymatix_context-0.8.0/docs/investigations/2026-06-02-hardware-optimization-investigation.md +588 -0
- cymatix_context-0.8.0/docs/investigations/2026-06-06-dense-ann-cap-code-retrieval-handoff.md +73 -0
- cymatix_context-0.8.0/docs/operations/DENSE_VRAM.md +213 -0
- cymatix_context-0.8.0/docs/operator-runbooks.md +942 -0
- cymatix_context-0.8.0/docs/ops/OBSIDIAN_VAULT_STATUS.md +89 -0
- cymatix_context-0.8.0/docs/ops/RESTART_PROTOCOL.md +155 -0
- cymatix_context-0.8.0/docs/ops/SKILLS_BUNDLE.md +214 -0
- cymatix_context-0.8.0/docs/ops/dense-ingest-on-12gb-rigs.md +213 -0
- cymatix_context-0.8.0/docs/prds/2026-05-30-dynamic-ram-scaling.md +212 -0
- cymatix_context-0.8.0/docs/prds/2026-05-30-lexical-rescue-merge-depth.md +58 -0
- cymatix_context-0.8.0/docs/prds/2026-05-30-recall-rank-fusion.md +102 -0
- cymatix_context-0.8.0/docs/prds/2026-06-02-otel-per-lane-attribution.md +97 -0
- cymatix_context-0.8.0/docs/prds/2026-06-02-semantic-wiring-arm.md +146 -0
- cymatix_context-0.8.0/docs/prds/2026-06-04-contextbench-step0-scorer.md +73 -0
- cymatix_context-0.8.0/docs/prds/2026-06-16-code-structure-retrieval.md +534 -0
- cymatix_context-0.8.0/docs/research/2026-06-28-ws1-3-council-review.md +49 -0
- cymatix_context-0.8.0/docs/research/2026-06-28-ws3-slice2-consensus.md +73 -0
- cymatix_context-0.8.0/docs/research/2026-07-01-next-bench-wave-consensus.md +196 -0
- cymatix_context-0.8.0/docs/research/2026-07-03-external-review-gemini-antigravity.md +312 -0
- cymatix_context-0.8.0/docs/research/2026-07-06-ann-threshold-recalibration.md +133 -0
- cymatix_context-0.8.0/docs/research/2026-07-06-rrf-gold-block-deficit.md +90 -0
- cymatix_context-0.8.0/docs/research/2026-07-07-answer-presence-spike-239.md +131 -0
- cymatix_context-0.8.0/docs/research/2026-07-07-faithfulness-circuit-tracer.md +390 -0
- cymatix_context-0.8.0/docs/research/2026-07-07-semantic-ceiling-complement-refutation.md +113 -0
- cymatix_context-0.8.0/docs/research/2026-07-08-b1-operating-point-coupling.md +159 -0
- cymatix_context-0.8.0/docs/research/2026-07-08-nli-restore-239.md +97 -0
- cymatix_context-0.8.0/docs/research/2026-07-08-okf-council.md +98 -0
- cymatix_context-0.8.0/docs/research/2026-07-08-scale-n-faithfulness-239.md +204 -0
- cymatix_context-0.8.0/docs/research/2026-07-08-scoring-invariance-audit.md +289 -0
- cymatix_context-0.8.0/docs/research/2026-07-09-scoring-combinator-exploration.md +149 -0
- cymatix_context-0.8.0/docs/research/2026-07-10-rerank-combinator-desktest.md +71 -0
- cymatix_context-0.8.0/docs/research/2026-07-11-overnight-bench-results.md +625 -0
- cymatix_context-0.8.0/docs/research/2026-07-12-blend-serving-receipt.md +162 -0
- cymatix_context-0.8.0/docs/research/2026-07-13-splade-scale-curve.md +280 -0
- cymatix_context-0.8.0/docs/research/2026-07-16-knob-graduation-receipts.md +143 -0
- cymatix_context-0.8.0/docs/research/2026-07-16-shard-rank-merge-264-265.md +81 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-06-ab-ann-threshold-xl-clean.json +1552 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-06-ann-threshold-sweep-xl-clean.json +134 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-10-ab-rerank-combinator-xl-xlclean.json +7461 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-ab-blend-off.json +2497 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-ab-blend-scale_relative.json +2497 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-p8_driver.py +123 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-semantic-probe-50k-full.json +15831 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-semantic_probe_10k_full.json +15831 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-semantic_probe_10k_fused_riders.json +15831 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-semantic_probe_50k_full.json +15831 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-semantic_probe_blob_dense_probe10.json +158 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-semantic_probe_blob_dense_semantic.json +1423 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-semantic_probe_blob_lexfused_semantic.json +2827 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-shard_receipt_medium_sharded_f2_c0.json +702 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-shard_receipt_medium_sharded_f2_c2.json +704 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-shard_receipt_medium_sharded_f2_c4.json +704 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-shard_receipt_medium_sharded_f4_c0.json +704 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-shard_receipt_medium_unsharded_ref.json +704 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-shard_receipt_xl_sharded_f2_c0.json +704 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-shard_receipt_xl_sharded_f2_c2.json +704 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-shard_receipt_xl_sharded_f2_c4.json +704 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-shard_receipt_xl_sharded_f4_c0.json +704 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-shard_receipt_xl_unsharded_ref.json +704 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-sike_bedsweep_enterprise_rag_10k.json +1935 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-sike_bedsweep_enterprise_rag_50k.json +1936 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-sike_bedsweep_xl.json +1933 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-11-splade_striptwin_10k_smoke.json +30 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-12-blend-serving-receipt-cell1-xl-legacy.json +2497 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-12-blend-serving-receipt-cell1-xl-off.json +2497 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-12-blend-serving-receipt-cell1-xl-scale_relative.json +2497 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-12-blend-serving-receipt-cell2-erb10k-legacy.json +1423 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-12-blend-serving-receipt-cell2-erb10k-off.json +1423 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-12-blend-serving-receipt-cell2-erb10k-scale_relative.json +1423 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-12-blend-serving-receipt-summary.json +148 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-12-linked_needles_223.jsonl +8 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-12-semantic_probe_blob_lexfused_basic.json +3905 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-12-semantic_probe_blob_lexfused_smalltypes.json +3928 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-12-shard_receipt_fire_probe_seeded.json +159 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-12-shard_receipt_medium_linked_seeded_f2_c0.json +145 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-12-shard_receipt_medium_linked_seeded_f2_c2.json +145 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-12-shard_receipt_medium_sharded_seeded_f2_c0.json +704 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-12-shard_receipt_medium_sharded_seeded_f2_c2.json +704 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-13-splade-curve-aa-inert-erag10k.json +30 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-13-splade-curve-aa-inert-erag50k.json +30 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-13-splade-curve-erag10k-extracted.json +45 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-13-splade-curve-erag10k-raw.json +45 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-13-splade-curve-erag50k-extracted.json +45 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-13-splade-curve-erag50k-raw.json +45 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-16-receipt-255-classgate-10k-control.json +1423 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-16-receipt-255-classgate-10k-proposed.json +1423 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-16-receipt-255-classgate-50k-control.json +708 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-16-receipt-255-classgate-50k-proposed.json +708 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-16-receipt-255-classgate-xl-control.json +634 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-16-receipt-255-classgate-xl-proposed.json +634 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-16-receipt-260-rrfgate-10k-off.json +1423 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-16-receipt-260-rrfgate-10k-top10.json +1423 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-16-receipt-260-rrfgate-10k-top20.json +1423 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-16-receipt-260-rrfgate-10k-top5.json +1423 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-16-receipt-260-rrfgate-50k-off.json +708 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-16-receipt-260-rrfgate-50k-top10.json +708 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-16-receipt-260-rrfgate-50k-top20.json +708 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-16-receipt-260-rrfgate-50k-top5.json +708 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-16-receipt-260-rrfgate-xl-off.json +634 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-16-receipt-260-rrfgate-xl-top10.json +634 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-16-receipt-260-rrfgate-xl-top20.json +634 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-16-receipt-260-rrfgate-xl-top5.json +634 -0
- cymatix_context-0.8.0/docs/research/data/2026-07-16-shard-rank-merge-264-265-receipt.json +92 -0
- cymatix_context-0.8.0/docs/research/oss-semantic-retrieval-vs-helix.md +156 -0
- cymatix_context-0.8.0/docs/specs/2026-05-08-stage-1-bench-axis-split.md +166 -0
- cymatix_context-0.8.0/docs/specs/2026-05-08-stage-2-dense-recall.md +207 -0
- cymatix_context-0.8.0/docs/specs/2026-05-08-stage-3-rrf-fusion.md +174 -0
- cymatix_context-0.8.0/docs/specs/2026-05-08-stage-4-threshold-calibration.md +271 -0
- cymatix_context-0.8.0/docs/specs/2026-05-08-stage-5-caller-model-class.md +176 -0
- cymatix_context-0.8.0/docs/specs/2026-05-08-stage-6-know-miss-blocks.md +230 -0
- cymatix_context-0.8.0/docs/specs/2026-05-08-stage-7-freshness-gate.md +319 -0
- cymatix_context-0.8.0/docs/specs/2026-05-28-folder-picker-and-tracked-sources.md +271 -0
- cymatix_context-0.8.0/docs/specs/2026-06-09-retrieval-profiles.md +90 -0
- cymatix_context-0.8.0/docs/specs/2026-07-01-abstain-search-escalation.md +112 -0
- cymatix_context-0.8.0/docs/specs/2026-07-01-goal-gates-hallucination-visibility.md +135 -0
- cymatix_context-0.8.0/docs/superpowers/plans/2026-05-11-helix-cli-v1.md +1987 -0
- cymatix_context-0.8.0/docs/superpowers/plans/2026-05-13-issue-92-parallel-ingest.md +1643 -0
- cymatix_context-0.8.0/docs/superpowers/plans/2026-07-05-test-suite-consolidation.md +281 -0
- cymatix_context-0.8.0/docs/superpowers/plans/2026-07-13-codex-helix-mcp-reliability.md +336 -0
- cymatix_context-0.8.0/docs/superpowers/plans/2026-07-13-launcher-graph-summary.md +730 -0
- cymatix_context-0.8.0/docs/superpowers/plans/2026-07-20-cymatix-context-rename.md +998 -0
- cymatix_context-0.8.0/docs/superpowers/plans/2026-07-20-cymatix-readme-draft.md +436 -0
- cymatix_context-0.8.0/docs/superpowers/specs/2026-05-11-rename-r2-prose-sweep-design.md +202 -0
- cymatix_context-0.8.0/docs/superpowers/specs/2026-05-13-rename-r3-symbol-rename-design.md +257 -0
- cymatix_context-0.8.0/docs/superpowers/specs/2026-07-13-codex-helix-mcp-reliability-design.md +126 -0
- cymatix_context-0.8.0/docs/superpowers/specs/2026-07-13-launcher-graph-summary-design.md +134 -0
- cymatix_context-0.8.0/docs/superpowers/specs/2026-07-13-snow-v2-selective-expression-design.md +563 -0
- cymatix_context-0.8.0/examples/hgt_transfer.py +88 -0
- cymatix_context-0.8.0/examples/quickstart.py +48 -0
- cymatix_context-0.8.0/examples/seed_genome.py +94 -0
- cymatix_context-0.8.0/helix_context/__init__.py +92 -0
- cymatix_context-0.8.0/helix_context/mcp_server.py +12 -0
- cymatix_context-0.8.0/launcher-with-otel.bat +13 -0
- cymatix_context-0.8.0/pyproject.toml +142 -0
- cymatix_context-0.8.0/scripts/_write_tcm.py +4 -0
- cymatix_context-0.8.0/scripts/analyze_density_scores.py +147 -0
- cymatix_context-0.8.0/scripts/audit_erb_github_bucket.py +158 -0
- cymatix_context-0.8.0/scripts/backfill_bgem3.py +51 -0
- cymatix_context-0.8.0/scripts/backfill_bgem3_v2.py +421 -0
- cymatix_context-0.8.0/scripts/backfill_claims.py +161 -0
- cymatix_context-0.8.0/scripts/backfill_cwola_sema.py +113 -0
- cymatix_context-0.8.0/scripts/backfill_cwola_sessions.py +257 -0
- cymatix_context-0.8.0/scripts/backfill_filename_anchor.py +92 -0
- cymatix_context-0.8.0/scripts/backfill_filename_domains.py +130 -0
- cymatix_context-0.8.0/scripts/backfill_gene_provenance.py +209 -0
- cymatix_context-0.8.0/scripts/backfill_kv_tagger_fix.py +201 -0
- cymatix_context-0.8.0/scripts/backfill_parent_genes.py +174 -0
- cymatix_context-0.8.0/scripts/backfill_path_key_index.py +240 -0
- cymatix_context-0.8.0/scripts/backfill_seeded_edges.py +339 -0
- cymatix_context-0.8.0/scripts/backfill_sema_embeddings.py +115 -0
- cymatix_context-0.8.0/scripts/bench_chain/erb500k_scored.py +687 -0
- cymatix_context-0.8.0/scripts/bench_chain/erb_dsid_adapter.py +301 -0
- cymatix_context-0.8.0/scripts/bench_chain/erb_official_answers_export.py +424 -0
- cymatix_context-0.8.0/scripts/bench_chain/erb_to_sweep_queries.py +118 -0
- cymatix_context-0.8.0/scripts/bench_chain/run_chain.ps1 +38 -0
- cymatix_context-0.8.0/scripts/bench_chain/run_sike_203.ps1 +56 -0
- cymatix_context-0.8.0/scripts/bench_chain/s1_contextbench_3arm.ps1 +73 -0
- cymatix_context-0.8.0/scripts/bench_chain/s2_rerun_after_203.ps1 +25 -0
- cymatix_context-0.8.0/scripts/bench_chain/s2_rerun_watcher.ps1 +30 -0
- cymatix_context-0.8.0/scripts/bench_chain/s2_sike_bed_sweep.ps1 +267 -0
- cymatix_context-0.8.0/scripts/bench_chain/s2_sike_bedsweep_run.py +571 -0
- cymatix_context-0.8.0/scripts/bench_chain/s3_dense_weight_sweep.ps1 +43 -0
- cymatix_context-0.8.0/scripts/bench_chain/s3_fts_depth_sweep.py +373 -0
- cymatix_context-0.8.0/scripts/bench_chain/s3b_erb_sweep_rerun.ps1 +40 -0
- cymatix_context-0.8.0/scripts/bench_chain/s4_erb500k_scored.ps1 +191 -0
- cymatix_context-0.8.0/scripts/bench_chain/s4_symbol_arm.py +497 -0
- cymatix_context-0.8.0/scripts/bench_chain/s4_symbol_backfill.py +287 -0
- cymatix_context-0.8.0/scripts/bench_chain/s4blob_watcher.ps1 +51 -0
- cymatix_context-0.8.0/scripts/bench_chain/sike_bed_ingest.py +304 -0
- cymatix_context-0.8.0/scripts/bench_chain/sike_ctl.ps1 +58 -0
- cymatix_context-0.8.0/scripts/bench_claude_matrix.py +485 -0
- cymatix_context-0.8.0/scripts/bench_dense_recall_latency.py +274 -0
- cymatix_context-0.8.0/scripts/build_bench_genomes.py +245 -0
- cymatix_context-0.8.0/scripts/build_fixture_matrix.py +2316 -0
- cymatix_context-0.8.0/scripts/calibrate_know_confidence.py +600 -0
- cymatix_context-0.8.0/scripts/calibrate_thresholds.py +928 -0
- cymatix_context-0.8.0/scripts/claude_batch_ingest.py +309 -0
- cymatix_context-0.8.0/scripts/claude_core_ingest.py +197 -0
- cymatix_context-0.8.0/scripts/codemod_cymatix_rename.py +60 -0
- cymatix_context-0.8.0/scripts/compact_genome_sweep.py +215 -0
- cymatix_context-0.8.0/scripts/crawl_watchdog.py +317 -0
- cymatix_context-0.8.0/scripts/cross_compare_genomes.py +430 -0
- cymatix_context-0.8.0/scripts/cwola_log_stats.py +117 -0
- cymatix_context-0.8.0/scripts/deep_ingest.py +281 -0
- cymatix_context-0.8.0/scripts/deep_ingest_parallel.py +408 -0
- cymatix_context-0.8.0/scripts/diagnose_file_grain.py +128 -0
- cymatix_context-0.8.0/scripts/diagnose_query_extraction.py +173 -0
- cymatix_context-0.8.0/scripts/diagnostics/file_type_ingest.py +385 -0
- cymatix_context-0.8.0/scripts/diagnostics/file_type_ingest_2026-04-19.json +171 -0
- cymatix_context-0.8.0/scripts/docs_tidy_diff.py +166 -0
- cymatix_context-0.8.0/scripts/docs_tidy_probe.py +138 -0
- cymatix_context-0.8.0/scripts/docs_tidy_reingest.py +83 -0
- cymatix_context-0.8.0/scripts/e8_crossover_curve.py +249 -0
- cymatix_context-0.8.0/scripts/e8_crossover_fixed_k.py +177 -0
- cymatix_context-0.8.0/scripts/e8_retest_april12.py +206 -0
- cymatix_context-0.8.0/scripts/export_cwola_log.py +311 -0
- cymatix_context-0.8.0/scripts/freeze_matrix_manifest.py +175 -0
- cymatix_context-0.8.0/scripts/fresh_genome_build.py +261 -0
- cymatix_context-0.8.0/scripts/gen_config_reference.py +415 -0
- cymatix_context-0.8.0/scripts/generate_ssh_key.sh +101 -0
- cymatix_context-0.8.0/scripts/genome_cleanup.py +189 -0
- cymatix_context-0.8.0/scripts/helix_heartbeat.py +125 -0
- cymatix_context-0.8.0/scripts/ingest_all.py +443 -0
- cymatix_context-0.8.0/scripts/ingest_fdrive.py +357 -0
- cymatix_context-0.8.0/scripts/ingest_models.py +329 -0
- cymatix_context-0.8.0/scripts/ingest_parallel.py +231 -0
- cymatix_context-0.8.0/scripts/ingest_steam.py +198 -0
- cymatix_context-0.8.0/scripts/init_main_db.py +48 -0
- cymatix_context-0.8.0/scripts/install-native-observability.ps1 +225 -0
- cymatix_context-0.8.0/scripts/install-native-observability.sh +117 -0
- cymatix_context-0.8.0/scripts/ops/helix_status.py +16 -0
- cymatix_context-0.8.0/scripts/ops/overnight_diamond.sh +183 -0
- cymatix_context-0.8.0/scripts/ops/overnight_diamond_abstain_2026-05-03.sh +286 -0
- cymatix_context-0.8.0/scripts/ops/overnight_diamond_abstain_control_2026-05-03b.sh +535 -0
- cymatix_context-0.8.0/scripts/ops/overnight_diamond_e4b_qwen3_2026-05-05.sh +219 -0
- cymatix_context-0.8.0/scripts/ops/overnight_diamond_native_n20_2026-05-04.sh +308 -0
- cymatix_context-0.8.0/scripts/ops/overnight_run.sh +146 -0
- cymatix_context-0.8.0/scripts/ops/run_full_suite.ps1 +21 -0
- cymatix_context-0.8.0/scripts/ops/run_overnight_bench.ps1 +15 -0
- cymatix_context-0.8.0/scripts/ops/run_pr9_sweep.ps1 +24 -0
- cymatix_context-0.8.0/scripts/overnight_cross_compare.sh +88 -0
- cymatix_context-0.8.0/scripts/pwpc/export_with_window_features.py +88 -0
- cymatix_context-0.8.0/scripts/pwpc/lockstep_matrix_test.py +320 -0
- cymatix_context-0.8.0/scripts/pwpc/lockstep_test.py +318 -0
- cymatix_context-0.8.0/scripts/pwpc/phase0_bootstrap.py +253 -0
- cymatix_context-0.8.0/scripts/pwpc/phase0_v2_drilldown.py +274 -0
- cymatix_context-0.8.0/scripts/pwpc/sprint3.py +533 -0
- cymatix_context-0.8.0/scripts/pwpc/v2_followups.py +865 -0
- cymatix_context-0.8.0/scripts/receipt_264_265_shard_rank_merge.py +228 -0
- cymatix_context-0.8.0/scripts/reseed_sharded_fixture.py +137 -0
- cymatix_context-0.8.0/scripts/resequence_cpu.py +184 -0
- cymatix_context-0.8.0/scripts/run_mem_sync.py +109 -0
- cymatix_context-0.8.0/scripts/run_repobench_r.ps1 +461 -0
- cymatix_context-0.8.0/scripts/setup-grafana-telem.ps1 +202 -0
- cymatix_context-0.8.0/scripts/setup-grafana-telem.sh +158 -0
- cymatix_context-0.8.0/scripts/shard_to_blob.py +426 -0
- cymatix_context-0.8.0/scripts/simulate_density_gate_v2.py +216 -0
- cymatix_context-0.8.0/scripts/snow_ablation_sweep.py +275 -0
- cymatix_context-0.8.0/scripts/tombstone_orphan_parents.py +240 -0
- cymatix_context-0.8.0/scripts/validate_layered_fingerprints.py +169 -0
- cymatix_context-0.8.0/scripts/validate_shard_roundtrip.py +146 -0
- cymatix_context-0.8.0/setup-cymatix.bat +30 -0
- cymatix_context-0.8.0/setup-helix.bat +6 -0
- cymatix_context-0.8.0/skills/cymatix/SKILL.md +91 -0
- cymatix_context-0.8.0/start-cymatix-mcpo.bat +79 -0
- cymatix_context-0.8.0/start-cymatix-tray.bat +95 -0
- cymatix_context-0.8.0/start-helix-mcpo.bat +6 -0
- cymatix_context-0.8.0/start-helix-tray.bat +7 -0
- cymatix_context-0.8.0/tests/__init__.py +0 -0
- cymatix_context-0.8.0/tests/conftest.py +477 -0
- cymatix_context-0.8.0/tests/fixtures/calculator.py +124 -0
- cymatix_context-0.8.0/tests/fixtures/code_btree.py +142 -0
- cymatix_context-0.8.0/tests/fixtures/code_http_server.py +156 -0
- cymatix_context-0.8.0/tests/fixtures/code_linked_list.py +99 -0
- cymatix_context-0.8.0/tests/fixtures/code_state_machine.py +159 -0
- cymatix_context-0.8.0/tests/fixtures/essay_caching.txt +19 -0
- cymatix_context-0.8.0/tests/fixtures/essay_deep_sea.txt +7 -0
- cymatix_context-0.8.0/tests/fixtures/essay_distributed.txt +25 -0
- cymatix_context-0.8.0/tests/fixtures/essay_oakhaven.txt +7 -0
- cymatix_context-0.8.0/tests/fixtures/essay_perfect_machine.txt +7 -0
- cymatix_context-0.8.0/tests/fixtures/essay_testing.txt +23 -0
- cymatix_context-0.8.0/tests/fixtures/okf/MANIFEST.json +54 -0
- cymatix_context-0.8.0/tests/fixtures/okf/NOTICE +57 -0
- cymatix_context-0.8.0/tests/fixtures/okf/README.md +3 -0
- cymatix_context-0.8.0/tests/fixtures/okf/SPEC-ee67a5ca.md +451 -0
- cymatix_context-0.8.0/tests/fixtures/okf/crypto_bitcoin/datasets/crypto_bitcoin.md +55 -0
- cymatix_context-0.8.0/tests/fixtures/okf/crypto_bitcoin/datasets/index.md +3 -0
- cymatix_context-0.8.0/tests/fixtures/okf/crypto_bitcoin/index.md +4 -0
- cymatix_context-0.8.0/tests/fixtures/okf/crypto_bitcoin/tables/blocks.md +32 -0
- cymatix_context-0.8.0/tests/fixtures/okf/crypto_bitcoin/tables/index.md +6 -0
- cymatix_context-0.8.0/tests/fixtures/okf/crypto_bitcoin/tables/inputs.md +65 -0
- cymatix_context-0.8.0/tests/fixtures/okf/crypto_bitcoin/tables/outputs.md +68 -0
- cymatix_context-0.8.0/tests/fixtures/okf/crypto_bitcoin/tables/transactions.md +112 -0
- cymatix_context-0.8.0/tests/fixtures/okf/crypto_bitcoin/viz.html +448 -0
- cymatix_context-0.8.0/tests/fixtures/okf/degraded/bad_yaml.md +8 -0
- cymatix_context-0.8.0/tests/fixtures/okf/degraded/dangling.md +14 -0
- cymatix_context-0.8.0/tests/fixtures/okf/degraded/empty_type.md +9 -0
- cymatix_context-0.8.0/tests/fixtures/okf/degraded/no_frontmatter.md +6 -0
- cymatix_context-0.8.0/tests/fixtures/okf/ga4/datasets/ga4_obfuscated_sample_ecommerce.md +41 -0
- cymatix_context-0.8.0/tests/fixtures/okf/ga4/datasets/index.md +3 -0
- cymatix_context-0.8.0/tests/fixtures/okf/ga4/index.md +5 -0
- cymatix_context-0.8.0/tests/fixtures/okf/ga4/references/index.md +4 -0
- cymatix_context-0.8.0/tests/fixtures/okf/ga4/references/joins/events___ads_clickstats.md +19 -0
- cymatix_context-0.8.0/tests/fixtures/okf/ga4/references/joins/index.md +3 -0
- cymatix_context-0.8.0/tests/fixtures/okf/ga4/references/metrics/avg_pageviews.md +19 -0
- cymatix_context-0.8.0/tests/fixtures/okf/ga4/references/metrics/avg_spend_per_purchase_session_by_user.md +21 -0
- cymatix_context-0.8.0/tests/fixtures/okf/ga4/references/metrics/avg_transactions_per_purchaser.md +20 -0
- cymatix_context-0.8.0/tests/fixtures/okf/ga4/references/metrics/day_count.md +18 -0
- cymatix_context-0.8.0/tests/fixtures/okf/ga4/references/metrics/event_count.md +18 -0
- cymatix_context-0.8.0/tests/fixtures/okf/ga4/references/metrics/index.md +10 -0
- cymatix_context-0.8.0/tests/fixtures/okf/ga4/references/metrics/new_user_count.md +20 -0
- cymatix_context-0.8.0/tests/fixtures/okf/ga4/references/metrics/overall_avg_spend_per_purchase_session.md +20 -0
- cymatix_context-0.8.0/tests/fixtures/okf/ga4/references/metrics/user_count.md +18 -0
- cymatix_context-0.8.0/tests/fixtures/okf/ga4/tables/events_.md +313 -0
- cymatix_context-0.8.0/tests/fixtures/okf/ga4/tables/index.md +3 -0
- cymatix_context-0.8.0/tests/fixtures/okf/ga4/viz.html +448 -0
- cymatix_context-0.8.0/tests/fixtures/okf/type_only/note.md +8 -0
- cymatix_context-0.8.0/tests/fixtures/poem.txt +29 -0
- cymatix_context-0.8.0/tests/fixtures/poem_compiler.txt +21 -0
- cymatix_context-0.8.0/tests/fixtures/poem_latency.txt +26 -0
- cymatix_context-0.8.0/tests/fixtures/poem_ozymandias.txt +17 -0
- cymatix_context-0.8.0/tests/fixtures/poem_recursion.txt +24 -0
- cymatix_context-0.8.0/tests/fixtures/rrf_back_compat_snapshot.json +746 -0
- cymatix_context-0.8.0/tests/fixtures/science_fluid_dynamics.txt +51 -0
- cymatix_context-0.8.0/tests/fixtures/science_protein.txt +60 -0
- cymatix_context-0.8.0/tests/golden/.gitattributes +2 -0
- cymatix_context-0.8.0/tests/golden/__init__.py +0 -0
- cymatix_context-0.8.0/tests/golden/_capture_pre_stage5_responses.py +273 -0
- cymatix_context-0.8.0/tests/golden/pre_stage5_responses.jsonl +100 -0
- cymatix_context-0.8.0/tests/test_ab_semantic_probe.py +212 -0
- cymatix_context-0.8.0/tests/test_abstain_tier.py +561 -0
- cymatix_context-0.8.0/tests/test_accel.py +353 -0
- cymatix_context-0.8.0/tests/test_additive_weight_plumbing.py +474 -0
- cymatix_context-0.8.0/tests/test_admin_refresh.py +186 -0
- cymatix_context-0.8.0/tests/test_ann_threshold.py +79 -0
- cymatix_context-0.8.0/tests/test_api_walk.py +270 -0
- cymatix_context-0.8.0/tests/test_backfill_filename_domains.py +169 -0
- cymatix_context-0.8.0/tests/test_bench_citations.py +532 -0
- cymatix_context-0.8.0/tests/test_bench_determinism.py +248 -0
- cymatix_context-0.8.0/tests/test_bench_harvest.py +163 -0
- cymatix_context-0.8.0/tests/test_bench_help_ascii.py +81 -0
- cymatix_context-0.8.0/tests/test_bench_metrics.py +177 -0
- cymatix_context-0.8.0/tests/test_bench_needles.py +349 -0
- cymatix_context-0.8.0/tests/test_bench_orchestrator.py +651 -0
- cymatix_context-0.8.0/tests/test_bench_profiles.py +67 -0
- cymatix_context-0.8.0/tests/test_benchmark_monitor_preflight.py +199 -0
- cymatix_context-0.8.0/tests/test_bgem3_codec.py +148 -0
- cymatix_context-0.8.0/tests/test_bgem3_singleton.py +70 -0
- cymatix_context-0.8.0/tests/test_blend_mode.py +352 -0
- cymatix_context-0.8.0/tests/test_bm25_prefilter.py +74 -0
- cymatix_context-0.8.0/tests/test_bridge_registry.py +398 -0
- cymatix_context-0.8.0/tests/test_bridge_restart.py +115 -0
- cymatix_context-0.8.0/tests/test_budget_zone.py +105 -0
- cymatix_context-0.8.0/tests/test_bugbash_replication.py +260 -0
- cymatix_context-0.8.0/tests/test_bugbash_server.py +234 -0
- cymatix_context-0.8.0/tests/test_build_fixture_matrix.py +1309 -0
- cymatix_context-0.8.0/tests/test_cache.py +267 -0
- cymatix_context-0.8.0/tests/test_calibrate_know_confidence.py +265 -0
- cymatix_context-0.8.0/tests/test_calibration.py +729 -0
- cymatix_context-0.8.0/tests/test_caller_model_class.py +351 -0
- cymatix_context-0.8.0/tests/test_chunk_fetch.py +58 -0
- cymatix_context-0.8.0/tests/test_claims.py +324 -0
- cymatix_context-0.8.0/tests/test_claims_analyze.py +267 -0
- cymatix_context-0.8.0/tests/test_claims_graph.py +233 -0
- cymatix_context-0.8.0/tests/test_classifier_gated_combinator.py +493 -0
- cymatix_context-0.8.0/tests/test_clean_isolation.py +348 -0
- cymatix_context-0.8.0/tests/test_cli_config.py +59 -0
- cymatix_context-0.8.0/tests/test_cli_diag.py +81 -0
- cymatix_context-0.8.0/tests/test_cli_dispatcher.py +133 -0
- cymatix_context-0.8.0/tests/test_cli_gene.py +87 -0
- cymatix_context-0.8.0/tests/test_cli_ingest.py +83 -0
- cymatix_context-0.8.0/tests/test_cli_integration.py +167 -0
- cymatix_context-0.8.0/tests/test_cli_neighbors.py +60 -0
- cymatix_context-0.8.0/tests/test_cli_packet.py +112 -0
- cymatix_context-0.8.0/tests/test_cli_query.py +125 -0
- cymatix_context-0.8.0/tests/test_cli_refresh_targets.py +76 -0
- cymatix_context-0.8.0/tests/test_cli_serve_stub.py +12 -0
- cymatix_context-0.8.0/tests/test_cli_status.py +193 -0
- cymatix_context-0.8.0/tests/test_coderag_bench_harness.py +618 -0
- cymatix_context-0.8.0/tests/test_codons.py +193 -0
- cymatix_context-0.8.0/tests/test_config.py +245 -0
- cymatix_context-0.8.0/tests/test_config_default_honesty.py +238 -0
- cymatix_context-0.8.0/tests/test_config_reference_sync.py +260 -0
- cymatix_context-0.8.0/tests/test_context_manager_classifier.py +92 -0
- cymatix_context-0.8.0/tests/test_context_packet.py +368 -0
- cymatix_context-0.8.0/tests/test_crawl_watchdog.py +420 -0
- cymatix_context-0.8.0/tests/test_cwola.py +302 -0
- cymatix_context-0.8.0/tests/test_cwola_window.py +203 -0
- cymatix_context-0.8.0/tests/test_cymatics.py +354 -0
- cymatix_context-0.8.0/tests/test_cymatics_flux.py +191 -0
- cymatix_context-0.8.0/tests/test_cymatix_rename.py +146 -0
- cymatix_context-0.8.0/tests/test_d8_entity_graph.py +99 -0
- cymatix_context-0.8.0/tests/test_dal.py +231 -0
- cymatix_context-0.8.0/tests/test_deberta_backend.py +225 -0
- cymatix_context-0.8.0/tests/test_dehardcode_207.py +803 -0
- cymatix_context-0.8.0/tests/test_dense_pool_floor.py +399 -0
- cymatix_context-0.8.0/tests/test_dense_recall.py +749 -0
- cymatix_context-0.8.0/tests/test_density_gate.py +882 -0
- cymatix_context-0.8.0/tests/test_diag_blob_vs_shard.py +855 -0
- cymatix_context-0.8.0/tests/test_diag_shard_dense.py +550 -0
- cymatix_context-0.8.0/tests/test_document_id_route_parity.py +152 -0
- cymatix_context-0.8.0/tests/test_document_identity.py +55 -0
- cymatix_context-0.8.0/tests/test_epigenetic_markers.py +172 -0
- cymatix_context-0.8.0/tests/test_erb_dsid_adapter.py +135 -0
- cymatix_context-0.8.0/tests/test_eval_retrieval.py +216 -0
- cymatix_context-0.8.0/tests/test_expand.py +303 -0
- cymatix_context-0.8.0/tests/test_fixture_dense_backfill.py +414 -0
- cymatix_context-0.8.0/tests/test_foveated_splice.py +513 -0
- cymatix_context-0.8.0/tests/test_freshness_gate.py +658 -0
- cymatix_context-0.8.0/tests/test_fts5_candidate_depth.py +101 -0
- cymatix_context-0.8.0/tests/test_fusion_invariance.py +392 -0
- cymatix_context-0.8.0/tests/test_fusion_plr.py +236 -0
- cymatix_context-0.8.0/tests/test_fusion_rrf.py +519 -0
- cymatix_context-0.8.0/tests/test_fusion_rrf_gate.py +399 -0
- cymatix_context-0.8.0/tests/test_genai_telemetry.py +467 -0
- cymatix_context-0.8.0/tests/test_gene_src_prefix.py +183 -0
- cymatix_context-0.8.0/tests/test_genome.py +532 -0
- cymatix_context-0.8.0/tests/test_genome_indexes.py +69 -0
- cymatix_context-0.8.0/tests/test_genome_tools.py +381 -0
- cymatix_context-0.8.0/tests/test_genome_wal.py +76 -0
- cymatix_context-0.8.0/tests/test_global_idf_rescore.py +372 -0
- cymatix_context-0.8.0/tests/test_hardware.py +560 -0
- cymatix_context-0.8.0/tests/test_hardware_mps_smoke.py +92 -0
- cymatix_context-0.8.0/tests/test_hardware_real_device.py +80 -0
- cymatix_context-0.8.0/tests/test_headroom_bridge.py +250 -0
- cymatix_context-0.8.0/tests/test_headroom_supervisor.py +320 -0
- cymatix_context-0.8.0/tests/test_health.py +234 -0
- cymatix_context-0.8.0/tests/test_host_labels.py +119 -0
- cymatix_context-0.8.0/tests/test_ide_fingerprint.py +68 -0
- cymatix_context-0.8.0/tests/test_ingest_content_type.py +33 -0
- cymatix_context-0.8.0/tests/test_ingest_dense_v2.py +584 -0
- cymatix_context-0.8.0/tests/test_ingest_metadata.py +204 -0
- cymatix_context-0.8.0/tests/test_ingest_tag_seam.py +216 -0
- cymatix_context-0.8.0/tests/test_install_observability.py +382 -0
- cymatix_context-0.8.0/tests/test_integration.py +155 -0
- cymatix_context-0.8.0/tests/test_intent_taxonomy.py +69 -0
- cymatix_context-0.8.0/tests/test_know_miss_block.py +814 -0
- cymatix_context-0.8.0/tests/test_know_monotonicity.py +90 -0
- cymatix_context-0.8.0/tests/test_knowledge_store_batched_in.py +177 -0
- cymatix_context-0.8.0/tests/test_launcher_app.py +562 -0
- cymatix_context-0.8.0/tests/test_launcher_collector.py +529 -0
- cymatix_context-0.8.0/tests/test_launcher_dashboard_wiring.py +264 -0
- cymatix_context-0.8.0/tests/test_launcher_devmode_startup.py +169 -0
- cymatix_context-0.8.0/tests/test_launcher_event_loop.py +129 -0
- cymatix_context-0.8.0/tests/test_launcher_genome_switch.py +185 -0
- cymatix_context-0.8.0/tests/test_launcher_installer.py +199 -0
- cymatix_context-0.8.0/tests/test_launcher_otel_export.py +173 -0
- cymatix_context-0.8.0/tests/test_launcher_state.py +116 -0
- cymatix_context-0.8.0/tests/test_launcher_supervisor.py +455 -0
- cymatix_context-0.8.0/tests/test_launcher_tray.py +1079 -0
- cymatix_context-0.8.0/tests/test_launcher_update_check.py +30 -0
- cymatix_context-0.8.0/tests/test_layered_fingerprints.py +276 -0
- cymatix_context-0.8.0/tests/test_lazy_encoders.py +428 -0
- cymatix_context-0.8.0/tests/test_learn_disabled.py +27 -0
- cymatix_context-0.8.0/tests/test_legibility.py +407 -0
- cymatix_context-0.8.0/tests/test_lexical_rescue.py +96 -0
- cymatix_context-0.8.0/tests/test_loki_config_docker_compat.py +51 -0
- cymatix_context-0.8.0/tests/test_mcp_server.py +324 -0
- cymatix_context-0.8.0/tests/test_mcp_server_entry.py +56 -0
- cymatix_context-0.8.0/tests/test_mem_budget.py +163 -0
- cymatix_context-0.8.0/tests/test_mem_plan_applied.py +79 -0
- cymatix_context-0.8.0/tests/test_mem_sync.py +292 -0
- cymatix_context-0.8.0/tests/test_metrics.py +200 -0
- cymatix_context-0.8.0/tests/test_nli_backend.py +155 -0
- cymatix_context-0.8.0/tests/test_observability_docs.py +160 -0
- cymatix_context-0.8.0/tests/test_observability_health.py +109 -0
- cymatix_context-0.8.0/tests/test_observability_paths.py +119 -0
- cymatix_context-0.8.0/tests/test_observability_render.py +221 -0
- cymatix_context-0.8.0/tests/test_observability_supervisor.py +410 -0
- cymatix_context-0.8.0/tests/test_okf_bundle.py +306 -0
- cymatix_context-0.8.0/tests/test_okf_cli.py +131 -0
- cymatix_context-0.8.0/tests/test_okf_digest.py +221 -0
- cymatix_context-0.8.0/tests/test_okf_fixture_manifest.py +83 -0
- cymatix_context-0.8.0/tests/test_okf_ingest.py +250 -0
- cymatix_context-0.8.0/tests/test_packaging.py +47 -0
- cymatix_context-0.8.0/tests/test_packet_freshness_trust.py +156 -0
- cymatix_context-0.8.0/tests/test_parallel_sizers.py +115 -0
- cymatix_context-0.8.0/tests/test_pipeline.py +444 -0
- cymatix_context-0.8.0/tests/test_pki_compaction.py +213 -0
- cymatix_context-0.8.0/tests/test_public_dehardcode.py +219 -0
- cymatix_context-0.8.0/tests/test_query_classifier.py +200 -0
- cymatix_context-0.8.0/tests/test_ram_bundle.py +80 -0
- cymatix_context-0.8.0/tests/test_ray_trace.py +289 -0
- cymatix_context-0.8.0/tests/test_ray_trace_theta.py +130 -0
- cymatix_context-0.8.0/tests/test_registry.py +1339 -0
- cymatix_context-0.8.0/tests/test_relevance_window.py +43 -0
- cymatix_context-0.8.0/tests/test_repobench_r_harness.py +352 -0
- cymatix_context-0.8.0/tests/test_request_scoped_scores.py +246 -0
- cymatix_context-0.8.0/tests/test_rerank_combinators.py +357 -0
- cymatix_context-0.8.0/tests/test_retrieval_dimensions.py +360 -0
- cymatix_context-0.8.0/tests/test_retrieval_invariance.py +553 -0
- cymatix_context-0.8.0/tests/test_retriever.py +296 -0
- cymatix_context-0.8.0/tests/test_ribosome.py +417 -0
- cymatix_context-0.8.0/tests/test_score_aware_budget_trim.py +227 -0
- cymatix_context-0.8.0/tests/test_seeded_edges.py +549 -0
- cymatix_context-0.8.0/tests/test_sema.py +232 -0
- cymatix_context-0.8.0/tests/test_sema_codec.py +87 -0
- cymatix_context-0.8.0/tests/test_sema_embed_knob.py +25 -0
- cymatix_context-0.8.0/tests/test_server.py +1394 -0
- cymatix_context-0.8.0/tests/test_session_delivery.py +580 -0
- cymatix_context-0.8.0/tests/test_shard_depth_and_coact_budget.py +127 -0
- cymatix_context-0.8.0/tests/test_shard_fetch_knobs.py +386 -0
- cymatix_context-0.8.0/tests/test_shard_gold_recall.py +557 -0
- cymatix_context-0.8.0/tests/test_shard_rank_merge_264_265.py +387 -0
- cymatix_context-0.8.0/tests/test_shard_router.py +1695 -0
- cymatix_context-0.8.0/tests/test_shard_schema.py +560 -0
- cymatix_context-0.8.0/tests/test_shard_score_debug.py +239 -0
- cymatix_context-0.8.0/tests/test_sharded_adapter_parity.py +417 -0
- cymatix_context-0.8.0/tests/test_sharder_rootfile_coverage.py +352 -0
- cymatix_context-0.8.0/tests/test_sharding_max_path.py +75 -0
- cymatix_context-0.8.0/tests/test_snow_bench.py +136 -0
- cymatix_context-0.8.0/tests/test_snow_cascade.py +89 -0
- cymatix_context-0.8.0/tests/test_snow_oracle.py +126 -0
- cymatix_context-0.8.0/tests/test_splade_precompute.py +143 -0
- cymatix_context-0.8.0/tests/test_splade_query_scoring.py +81 -0
- cymatix_context-0.8.0/tests/test_splade_size_aware_toggle.py +298 -0
- cymatix_context-0.8.0/tests/test_splice_target.py +208 -0
- cymatix_context-0.8.0/tests/test_sr.py +95 -0
- cymatix_context-0.8.0/tests/test_status.py +225 -0
- cymatix_context-0.8.0/tests/test_store_write_integrity.py +399 -0
- cymatix_context-0.8.0/tests/test_stress.py +431 -0
- cymatix_context-0.8.0/tests/test_sub_query.py +97 -0
- cymatix_context-0.8.0/tests/test_swap_db.py +546 -0
- cymatix_context-0.8.0/tests/test_symbol_extraction.py +72 -0
- cymatix_context-0.8.0/tests/test_symbol_graph_flag_off.py +131 -0
- cymatix_context-0.8.0/tests/test_symbol_graph_lifecycle.py +187 -0
- cymatix_context-0.8.0/tests/test_symbol_graph_pipeline.py +139 -0
- cymatix_context-0.8.0/tests/test_symbol_pagerank.py +87 -0
- cymatix_context-0.8.0/tests/test_tagger_filename_domains.py +122 -0
- cymatix_context-0.8.0/tests/test_tagger_kv.py +115 -0
- cymatix_context-0.8.0/tests/test_tcm.py +582 -0
- cymatix_context-0.8.0/tests/test_telemetry.py +205 -0
- cymatix_context-0.8.0/tests/test_telemetry_config.py +281 -0
- cymatix_context-0.8.0/tests/test_telemetry_phase1.py +352 -0
- cymatix_context-0.8.0/tests/test_telemetry_pipeline.py +94 -0
- cymatix_context-0.8.0/tests/test_telemetry_pipeline_spans.py +317 -0
- cymatix_context-0.8.0/tests/test_telemetry_wiring.py +282 -0
- cymatix_context-0.8.0/tests/test_tombstone_orphan_parents.py +239 -0
- cymatix_context-0.8.0/tests/test_tree_chunker_cast.py +121 -0
- cymatix_context-0.8.0/tests/test_vault_cli.py +85 -0
- cymatix_context-0.8.0/tests/test_vault_config.py +67 -0
- cymatix_context-0.8.0/tests/test_vault_docs.py +133 -0
- cymatix_context-0.8.0/tests/test_vault_e2e.py +103 -0
- cymatix_context-0.8.0/tests/test_vault_endpoints.py +74 -0
- cymatix_context-0.8.0/tests/test_vault_locking.py +77 -0
- cymatix_context-0.8.0/tests/test_vault_manager.py +72 -0
- cymatix_context-0.8.0/tests/test_vault_pruner.py +342 -0
- cymatix_context-0.8.0/tests/test_vault_schema.py +111 -0
- cymatix_context-0.8.0/tests/test_vault_state.py +103 -0
- cymatix_context-0.8.0/tests/test_vault_telemetry.py +41 -0
- cymatix_context-0.8.0/tests/test_vault_writer.py +539 -0
- cymatix_context-0.8.0/tests/test_versions_file.py +62 -0
- cymatix_context-0.8.0/tools/native-otel/.versions +69 -0
- cymatix_context-0.8.0/tools/native-otel/README.md +55 -0
- cymatix_context-0.8.0/tools/native-otel/configs/.gitkeep +0 -0
- cymatix_context-0.8.0/training/README.md +127 -0
- cymatix_context-0.8.0/training/export_nli_data.py +428 -0
- cymatix_context-0.8.0/training/export_training_data.py +295 -0
- cymatix_context-0.8.0/training/finetune_nli.py +235 -0
- cymatix_context-0.8.0/training/finetune_rerank.py +169 -0
- cymatix_context-0.8.0/training/finetune_splice.py +189 -0
|
@@ -0,0 +1,308 @@
|
|
|
1
|
+
# helix-context — environment variable reference
|
|
2
|
+
#
|
|
3
|
+
# Copy to `.env` and source before running helix:
|
|
4
|
+
# set -a; source .env; set +a # bash / WSL
|
|
5
|
+
# for /F "tokens=*" %i in (.env) do set %i # cmd
|
|
6
|
+
#
|
|
7
|
+
# Vars marked [REQUIRED] must be set; others are optional with sensible
|
|
8
|
+
# defaults. [DARK-SHIP] = wired but off-by-default (Phase 2 / experimental).
|
|
9
|
+
# [TEST-ONLY] = used by benchmarks/tests only, not server runtime.
|
|
10
|
+
# [LEGACY] = back-compat alias kept for older clients; prefer the modern name.
|
|
11
|
+
#
|
|
12
|
+
# Verified by grep against helix_context/, scripts/, benchmarks/, and the
|
|
13
|
+
# launcher .bat files on 2026-05-10. File:line citations on each var.
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
# ─── Attribution (4-layer identity contract) ─────────────────────────────────
|
|
17
|
+
# These tag every gene the server writes for cross-machine federation.
|
|
18
|
+
# See FEDERATION_LOCAL.md and helix_context/server.py:_resolve_default_attribution.
|
|
19
|
+
|
|
20
|
+
# HELIX_ORG: organization slug — top of the 4-layer attribution stack.
|
|
21
|
+
# Falls back to "local" when unset. Set per shell to group machines under
|
|
22
|
+
# a common operator (e.g. "swiftwing", "acme"). [OPTIONAL]
|
|
23
|
+
HELIX_ORG=local
|
|
24
|
+
# src: helix_context/server.py:139, helix_context/mcp_server.py:277
|
|
25
|
+
|
|
26
|
+
# HELIX_DEVICE: device/PC label in the federation stack. Doubles as the
|
|
27
|
+
# hardware picker for ribosome inference: auto | cuda | rocm | mps | cpu.
|
|
28
|
+
# When unset, server falls back to HELIX_PARTY then socket.gethostname().
|
|
29
|
+
# Override one-shot via HELIX_DEVICE=cpu to force CPU on a GPU box. [OPTIONAL]
|
|
30
|
+
HELIX_DEVICE=auto
|
|
31
|
+
# src: helix_context/hardware.py:40, helix_context/server.py:145, helix_context/mcp_server.py:279
|
|
32
|
+
|
|
33
|
+
# HELIX_USER: human operator handle (the "who is at the keyboard" layer).
|
|
34
|
+
# Falls back to getpass.getuser() when unset. Distinct from HELIX_AGENT — a
|
|
35
|
+
# user can run multiple agents (laude/raude/taude) from one login. [OPTIONAL]
|
|
36
|
+
HELIX_USER=
|
|
37
|
+
# src: helix_context/server.py:161, helix_context/mcp_server.py:283
|
|
38
|
+
|
|
39
|
+
# HELIX_AGENT: AI persona writing genes (laude / raude / taude / gemini /
|
|
40
|
+
# openwebui / etc). When unset, ingests are tagged "manual / no AI persona."
|
|
41
|
+
# Pre-4-layer code overloaded this as the user handle; the server still
|
|
42
|
+
# honors that legacy fallback when only HELIX_AGENT is set. [OPTIONAL]
|
|
43
|
+
HELIX_AGENT=
|
|
44
|
+
# src: helix_context/server.py:153, helix_context/mcp_server.py:285
|
|
45
|
+
|
|
46
|
+
# HELIX_AGENT_KIND: agent vendor/family axis — e.g. "claude-code", "gemini",
|
|
47
|
+
# "ollama-chat", "vscode". Falls back to HELIX_MCP_HOST when omitted.
|
|
48
|
+
# Drives dashboard chip rendering and capability tags. [OPTIONAL]
|
|
49
|
+
HELIX_AGENT_KIND=
|
|
50
|
+
# src: helix_context/mcp_server.py:288, helix_context/mcp_server.py:969
|
|
51
|
+
|
|
52
|
+
# HELIX_PARTY_ID: party/device identifier for CWoLa session attribution and
|
|
53
|
+
# session-registry presence. Resolution order: HELIX_PARTY_ID > HELIX_DEVICE
|
|
54
|
+
# > HELIX_PARTY > socket.gethostname(). Set in helix.toml [server] also. [OPTIONAL]
|
|
55
|
+
HELIX_PARTY_ID=
|
|
56
|
+
# src: helix_context/mcp_server.py:135, helix_context/mcp_server.py:280
|
|
57
|
+
|
|
58
|
+
# HELIX_MCP_HANDLE: stable handle for one MCP session in the live registry.
|
|
59
|
+
# Convention: laude (Claude Code), raude (claude.ai), taude (Cursor),
|
|
60
|
+
# gemini (Gemini CLI), openwebui (Open WebUI). Defaults to "mcp-<pid>"
|
|
61
|
+
# when unset — unique per process but anonymous. [OPTIONAL]
|
|
62
|
+
HELIX_MCP_HANDLE=
|
|
63
|
+
# src: helix_context/mcp_server.py:119, helix_context/mcp_server.py:966
|
|
64
|
+
|
|
65
|
+
# HELIX_MCP_HOST: MCP host/tool family — used as a capability tag
|
|
66
|
+
# ("host:claude-code") on the live registry chip. Defaults to "unknown"
|
|
67
|
+
# when unset, which the launcher heuristically remaps via VSCODE_PID
|
|
68
|
+
# / CURSOR_TRACE_ID detection. [OPTIONAL]
|
|
69
|
+
HELIX_MCP_HOST=
|
|
70
|
+
# src: helix_context/mcp_server.py:968, helix_context/launcher/ide_fingerprint.py:37
|
|
71
|
+
|
|
72
|
+
# HELIX_PARTY: legacy alias for HELIX_DEVICE / HELIX_PARTY_ID. Still read
|
|
73
|
+
# for back-compat with pre-4-layer clients. Prefer HELIX_PARTY_ID. [LEGACY]
|
|
74
|
+
HELIX_PARTY=
|
|
75
|
+
# src: helix_context/server.py:146, helix_context/mcp_server.py:281
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
# ─── Server / config ─────────────────────────────────────────────────────────
|
|
79
|
+
|
|
80
|
+
# HELIX_CONFIG: path to helix.toml. Default is "helix.toml" in cwd. [OPTIONAL]
|
|
81
|
+
HELIX_CONFIG=helix.toml
|
|
82
|
+
# src: helix_context/config.py:521
|
|
83
|
+
|
|
84
|
+
# HELIX_GENOME_PATH: SQLite genome path — overrides [genome].path in
|
|
85
|
+
# helix.toml. Use with HELIX_USE_SHARDS=1 for a routing DB. [OPTIONAL]
|
|
86
|
+
HELIX_GENOME_PATH=
|
|
87
|
+
# src: helix_context/config.py:611
|
|
88
|
+
|
|
89
|
+
# HELIX_SERVER_UPSTREAM: OpenAI-compatible upstream URL (Ollama / OpenAI /
|
|
90
|
+
# headroom). Overrides [server].upstream. Set automatically when the
|
|
91
|
+
# launcher routes through headroom. [OPTIONAL]
|
|
92
|
+
HELIX_SERVER_UPSTREAM=
|
|
93
|
+
# src: helix_context/config.py:616, helix_context/launcher/app.py:328
|
|
94
|
+
|
|
95
|
+
# HELIX_SERVER_UPSTREAM_TIMEOUT: seconds for upstream chat completions.
|
|
96
|
+
# Overrides [server].upstream_timeout. Float. [OPTIONAL]
|
|
97
|
+
HELIX_SERVER_UPSTREAM_TIMEOUT=
|
|
98
|
+
# src: helix_context/config.py:618
|
|
99
|
+
|
|
100
|
+
# HELIX_TZ: IANA timezone for the /context timestamp_local field
|
|
101
|
+
# (e.g. 'America/Los_Angeles', 'Europe/Berlin'). Falls back to system tz. [OPTIONAL]
|
|
102
|
+
HELIX_TZ=
|
|
103
|
+
# src: helix_context/server.py:85
|
|
104
|
+
|
|
105
|
+
# HELIX_MCP_URL: helix HTTP base URL the MCP shim talks to. [OPTIONAL]
|
|
106
|
+
HELIX_MCP_URL=http://127.0.0.1:11437
|
|
107
|
+
# src: helix_context/mcp_server.py:108
|
|
108
|
+
|
|
109
|
+
# HELIX_MCP_TIMEOUT: per-request timeout (seconds) for the MCP shim. [OPTIONAL]
|
|
110
|
+
HELIX_MCP_TIMEOUT=30
|
|
111
|
+
# src: helix_context/mcp_server.py:109
|
|
112
|
+
|
|
113
|
+
# HELIX_MCP_LOG_LEVEL: logging level for the MCP shim process. [OPTIONAL]
|
|
114
|
+
HELIX_MCP_LOG_LEVEL=INFO
|
|
115
|
+
# src: helix_context/mcp_server.py:1020
|
|
116
|
+
|
|
117
|
+
# HELIX_URL: legacy MCP base URL. Read by helix_context/mcp/server.py
|
|
118
|
+
# (the deprecated stdio shim) and benchmark scripts. Prefer HELIX_MCP_URL. [LEGACY]
|
|
119
|
+
HELIX_URL=http://127.0.0.1:11437
|
|
120
|
+
# src: helix_context/mcp/server.py:45, helix_context/vault/cli.py:18
|
|
121
|
+
|
|
122
|
+
# HELIX_TIMEOUT: legacy MCP timeout. Prefer HELIX_MCP_TIMEOUT. [LEGACY]
|
|
123
|
+
HELIX_TIMEOUT=30
|
|
124
|
+
# src: helix_context/mcp/server.py:46
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
# ─── Observability ───────────────────────────────────────────────────────────
|
|
128
|
+
|
|
129
|
+
# HELIX_OBSERVABILITY: master switch for the native observability sidecar
|
|
130
|
+
# (Prometheus, Tempo, Loki, Grafana, OTel Collector). Set to 0 / false / no
|
|
131
|
+
# / off to skip. Default ON when unset. [OPTIONAL]
|
|
132
|
+
HELIX_OBSERVABILITY=1
|
|
133
|
+
# src: helix_context/launcher/app.py:432
|
|
134
|
+
|
|
135
|
+
# HELIX_OTEL_ENABLED: turn on OTel SDK init in the FastAPI server.
|
|
136
|
+
# Default "0" (off). Set "1" to emit traces/metrics to the collector. [OPTIONAL]
|
|
137
|
+
HELIX_OTEL_ENABLED=1
|
|
138
|
+
# src: helix_context/telemetry.py:117
|
|
139
|
+
|
|
140
|
+
# HELIX_OTEL_ENDPOINT: OTLP gRPC endpoint for the collector. [OPTIONAL]
|
|
141
|
+
HELIX_OTEL_ENDPOINT=localhost:4317
|
|
142
|
+
# src: helix_context/telemetry.py:149
|
|
143
|
+
|
|
144
|
+
# HELIX_OTEL_INSECURE: "1" for plain gRPC (dev-local), "0" for TLS. [OPTIONAL]
|
|
145
|
+
HELIX_OTEL_INSECURE=1
|
|
146
|
+
# src: helix_context/telemetry.py:150
|
|
147
|
+
|
|
148
|
+
# HELIX_OTEL_SAMPLER_RATIO: trace sampler 0.0-1.0. 1.0 = sample every span. [OPTIONAL]
|
|
149
|
+
HELIX_OTEL_SAMPLER_RATIO=1.0
|
|
150
|
+
# src: helix_context/telemetry.py:152
|
|
151
|
+
|
|
152
|
+
# HELIX_OTEL_REDACT_QUERY: "1" hashes raw query strings in spans
|
|
153
|
+
# (privacy default). Set "0" to ship raw queries — local dev only. [OPTIONAL]
|
|
154
|
+
HELIX_OTEL_REDACT_QUERY=1
|
|
155
|
+
# src: helix_context/telemetry.py:77
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
# ─── Headroom integration (proxy + dashboard) ────────────────────────────────
|
|
159
|
+
|
|
160
|
+
# HELIX_HEADROOM_ENABLED: master switch — overrides [headroom].enabled
|
|
161
|
+
# in helix.toml. Truthy ⇒ launcher adopts/spawns headroom on start. [OPTIONAL]
|
|
162
|
+
HELIX_HEADROOM_ENABLED=
|
|
163
|
+
# src: helix_context/launcher/app.py:567
|
|
164
|
+
|
|
165
|
+
# HELIX_HEADROOM_AUTOSTART: spawn headroom proxy if nothing is already
|
|
166
|
+
# running on the configured port. Truthy ⇒ autostart. [OPTIONAL]
|
|
167
|
+
HELIX_HEADROOM_AUTOSTART=
|
|
168
|
+
# src: helix_context/launcher/app.py:566
|
|
169
|
+
|
|
170
|
+
# HELIX_HEADROOM_ROUTE_UPSTREAM_AUTO: auto-route helix's OpenAI-compatible
|
|
171
|
+
# chat upstream through headroom only when the upstream is non-local.
|
|
172
|
+
# Local Ollama stays direct; remote providers gain headroom's proxy layer. [OPTIONAL]
|
|
173
|
+
HELIX_HEADROOM_ROUTE_UPSTREAM_AUTO=
|
|
174
|
+
# src: helix_context/launcher/app.py:544
|
|
175
|
+
|
|
176
|
+
# HELIX_DISABLE_HEADROOM: kill-switch for A/B benchmarking — bypass the
|
|
177
|
+
# headroom bridge entirely. Truthy ⇒ headroom hooks return None. [OPTIONAL]
|
|
178
|
+
HELIX_DISABLE_HEADROOM=
|
|
179
|
+
# src: helix_context/headroom_bridge.py:52
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
# ─── Feature toggles ─────────────────────────────────────────────────────────
|
|
183
|
+
|
|
184
|
+
# HELIX_BUDGET_ZONE: enable the 2026-04-14 budget-zone gene-cap spike.
|
|
185
|
+
# Clamps max_genes based on caller's incoming prompt token count.
|
|
186
|
+
# Zones (128k window): <25% none, 25-40% cap 12, 40-60% cap 6,
|
|
187
|
+
# 60-80% cap 3, 80%+ cap 1. Truthy ⇒ on. [OPTIONAL]
|
|
188
|
+
HELIX_BUDGET_ZONE=1
|
|
189
|
+
# src: helix_context/budget_zone.py:48
|
|
190
|
+
|
|
191
|
+
# HELIX_FILENAME_ANCHOR_ENABLED: Tier 0.5 filename-anchor scoring —
|
|
192
|
+
# boost candidates whose filename stem matches a query term. Off by
|
|
193
|
+
# default to preserve existing tier behaviour. [OPTIONAL]
|
|
194
|
+
HELIX_FILENAME_ANCHOR_ENABLED=
|
|
195
|
+
# src: helix_context/filename_anchor.py:134, helix_context/context_manager.py:460
|
|
196
|
+
|
|
197
|
+
# HELIX_LAYERED_FINGERPRINTS: Phase 2 claims-layer fingerprints (issue #8).
|
|
198
|
+
# Off by default. Set "1" to write the layered fingerprint table. [DARK-SHIP]
|
|
199
|
+
HELIX_LAYERED_FINGERPRINTS=0
|
|
200
|
+
# src: helix_context/genome.py:2848
|
|
201
|
+
|
|
202
|
+
# HELIX_USE_SHARDS: open the genome via the sharded routing adapter
|
|
203
|
+
# instead of the single-file SQLite path. Off by default until cutover. [DARK-SHIP]
|
|
204
|
+
HELIX_USE_SHARDS=
|
|
205
|
+
# src: helix_context/shard_router.py:243, helix_context/sharding.py:299
|
|
206
|
+
|
|
207
|
+
# HELIX_WALKING_TIEBREAK: opt-in associative-graph ordering for
|
|
208
|
+
# tied-score retrieval. A/B benchmarking flag. [DARK-SHIP]
|
|
209
|
+
HELIX_WALKING_TIEBREAK=
|
|
210
|
+
# src: helix_context/tie_break.py:42
|
|
211
|
+
|
|
212
|
+
# HELIX_ABSTAIN_DISABLE: kill-switch for the abstain-tier (BROAD takes
|
|
213
|
+
# negative space). Set "1" to force off even when helix.toml enables it. [OPTIONAL]
|
|
214
|
+
HELIX_ABSTAIN_DISABLE=
|
|
215
|
+
# src: helix_context/context_manager.py:1036
|
|
216
|
+
|
|
217
|
+
# HELIX_LAUNCHER_UPDATE_CHECK: 0 / false / no / off disables the
|
|
218
|
+
# launcher's periodic pip-update check. Default ON. [OPTIONAL]
|
|
219
|
+
HELIX_LAUNCHER_UPDATE_CHECK=1
|
|
220
|
+
# src: helix_context/launcher/update_check.py:85
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
# ─── mem_sync (background ingest daemon) ─────────────────────────────────────
|
|
224
|
+
|
|
225
|
+
# HELIX_MEM_SYNC_URL: helix base URL for the mem_sync daemon's HTTP client.
|
|
226
|
+
# Falls back to [mem_sync].helix_url in helix.toml. [OPTIONAL]
|
|
227
|
+
HELIX_MEM_SYNC_URL=
|
|
228
|
+
# src: scripts/run_mem_sync.py:73
|
|
229
|
+
|
|
230
|
+
# HELIX_MEM_SYNC_INTERVAL: poll interval (seconds) between ingests. [OPTIONAL]
|
|
231
|
+
HELIX_MEM_SYNC_INTERVAL=
|
|
232
|
+
# src: scripts/run_mem_sync.py:77
|
|
233
|
+
|
|
234
|
+
# HELIX_MEM_SYNC_DIRS: pathsep-separated list of dirs to watch. [OPTIONAL]
|
|
235
|
+
HELIX_MEM_SYNC_DIRS=
|
|
236
|
+
# src: scripts/run_mem_sync.py:80
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
# ─── Bench / test-only ───────────────────────────────────────────────────────
|
|
240
|
+
|
|
241
|
+
# HELIX_MODEL: downstream model id for benchmark scripts (qwen3:4b /
|
|
242
|
+
# qwen3:8b / gemma4:e4b / etc). Not read by the server runtime. [TEST-ONLY]
|
|
243
|
+
HELIX_MODEL=
|
|
244
|
+
# src: benchmarks/bench_needle.py:268, benchmarks/bench_needle_1000.py:61
|
|
245
|
+
|
|
246
|
+
# HELIX_BENCH_REQUIRE_BM25_PARITY: gate the rag-vs-helix composition
|
|
247
|
+
# bench on BM25 parity with the reference set. [TEST-ONLY]
|
|
248
|
+
HELIX_BENCH_REQUIRE_BM25_PARITY=0
|
|
249
|
+
# src: benchmarks/bench_helix_rag_composition.py:768
|
|
250
|
+
|
|
251
|
+
# HELIX_SKIP_MONITOR: opt out of bench_needle_1000's monitor sidecar. [TEST-ONLY]
|
|
252
|
+
HELIX_SKIP_MONITOR=
|
|
253
|
+
# src: benchmarks/bench_needle_1000.py:867
|
|
254
|
+
|
|
255
|
+
# HELIX_FUSION_MODE_LABEL: label tag for skill-activation bench rows. [TEST-ONLY]
|
|
256
|
+
HELIX_FUSION_MODE_LABEL=additive
|
|
257
|
+
# src: benchmarks/bench_skill_activation.py:287
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
# ─────────────────────────────────────────────────────────────────────────────
|
|
261
|
+
# Consumed-by index (one-line summary per var)
|
|
262
|
+
#
|
|
263
|
+
# HELIX_ABSTAIN_DISABLE context_manager._build_abstain_signal kill-switch
|
|
264
|
+
# HELIX_AGENT ingest attribution AI agent handle
|
|
265
|
+
# HELIX_AGENT_KIND agent family axis (claude-code / gemini / ...)
|
|
266
|
+
# HELIX_BENCH_REQUIRE_BM25_PARITY bench_helix_rag_composition.py gate
|
|
267
|
+
# HELIX_BUDGET_ZONE budget_zone.is_enabled — gene-cap spike
|
|
268
|
+
# HELIX_CONFIG helix.toml path
|
|
269
|
+
# HELIX_DEVICE hardware picker + device attribution
|
|
270
|
+
# HELIX_DISABLE_HEADROOM headroom_bridge kill-switch (A/B)
|
|
271
|
+
# HELIX_FILENAME_ANCHOR_ENABLED filename_anchor.is_enabled — Tier 0.5 toggle
|
|
272
|
+
# HELIX_FUSION_MODE_LABEL bench_skill_activation row label
|
|
273
|
+
# HELIX_GENOME_PATH genome.path override
|
|
274
|
+
# HELIX_HEADROOM_AUTOSTART launcher autostart override
|
|
275
|
+
# HELIX_HEADROOM_ENABLED launcher headroom master switch
|
|
276
|
+
# HELIX_HEADROOM_ROUTE_UPSTREAM_AUTO conditional upstream route through headroom
|
|
277
|
+
# HELIX_LAUNCHER_UPDATE_CHECK launcher self-update check toggle
|
|
278
|
+
# HELIX_LAYERED_FINGERPRINTS genome.py Phase 2 claims layer toggle
|
|
279
|
+
# HELIX_MCP_HANDLE live MCP session handle for registry presence
|
|
280
|
+
# HELIX_MCP_HOST MCP host/tool-family capability tag
|
|
281
|
+
# HELIX_MCP_LOG_LEVEL MCP shim logging level
|
|
282
|
+
# HELIX_MCP_TIMEOUT MCP shim per-request timeout
|
|
283
|
+
# HELIX_MCP_URL MCP shim → helix HTTP base URL
|
|
284
|
+
# HELIX_MEM_SYNC_DIRS mem_sync watch_dirs override
|
|
285
|
+
# HELIX_MEM_SYNC_INTERVAL mem_sync poll interval
|
|
286
|
+
# HELIX_MEM_SYNC_URL mem_sync helix base URL
|
|
287
|
+
# HELIX_MODEL bench downstream model id
|
|
288
|
+
# HELIX_OBSERVABILITY native observability sidecar opt-out
|
|
289
|
+
# HELIX_ORG attribution org id
|
|
290
|
+
# HELIX_OTEL_ENABLED OTel SDK init switch
|
|
291
|
+
# HELIX_OTEL_ENDPOINT OTLP gRPC endpoint
|
|
292
|
+
# HELIX_OTEL_INSECURE OTLP plain-gRPC switch
|
|
293
|
+
# HELIX_OTEL_REDACT_QUERY hash query strings in spans
|
|
294
|
+
# HELIX_OTEL_SAMPLER_RATIO trace sampler ratio
|
|
295
|
+
# HELIX_PARTY legacy alias for HELIX_DEVICE / HELIX_PARTY_ID
|
|
296
|
+
# HELIX_PARTY_ID CWoLa party id + session attribution
|
|
297
|
+
# HELIX_SERVER_UPSTREAM OpenAI-compatible upstream URL override
|
|
298
|
+
# HELIX_SERVER_UPSTREAM_TIMEOUT upstream chat-completions timeout
|
|
299
|
+
# HELIX_SKIP_MONITOR bench_needle_1000 monitor opt-out
|
|
300
|
+
# HELIX_TIMEOUT legacy MCP timeout
|
|
301
|
+
# HELIX_TZ /context timestamp_local timezone
|
|
302
|
+
# HELIX_URL legacy MCP base URL
|
|
303
|
+
# HELIX_USE_SHARDS sharded genome adapter switch
|
|
304
|
+
# HELIX_USER human participant handle
|
|
305
|
+
# HELIX_WALKING_TIEBREAK walking-tiebreak A/B flag
|
|
306
|
+
#
|
|
307
|
+
# (no HELIX_*_TOKEN / *_SECRET / *_KEY / *_API_KEY are read by the codebase
|
|
308
|
+
# — admin-endpoint auth is not implemented as of 2026-05-10).
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Enhancement request
|
|
3
|
+
about: Suggest a new capability or extension to helix-context
|
|
4
|
+
title: "[Enhancement] "
|
|
5
|
+
labels: enhancement
|
|
6
|
+
assignees: ''
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## What you'd like to see
|
|
10
|
+
|
|
11
|
+
A clear, concise description of the enhancement.
|
|
12
|
+
|
|
13
|
+
## Why it matters
|
|
14
|
+
|
|
15
|
+
- Use case
|
|
16
|
+
- Who benefits
|
|
17
|
+
- What's currently blocked or awkward without it
|
|
18
|
+
|
|
19
|
+
## Implementation sketch (optional)
|
|
20
|
+
|
|
21
|
+
If you have a sense of how this could land, share. Otherwise, no obligation — the value of this template is capturing the *need*, not the implementation.
|
|
22
|
+
|
|
23
|
+
## Hardware / environment specifics (if relevant)
|
|
24
|
+
|
|
25
|
+
If the enhancement is hardware-related (e.g., a new device backend like Intel XPU, DirectML, Vulkan), please include:
|
|
26
|
+
|
|
27
|
+
- Vendor + model (e.g., "Intel Arc A770 16 GB" or "Apple M3 Max")
|
|
28
|
+
- Driver / runtime version
|
|
29
|
+
- OS + Python version
|
|
30
|
+
- Whether you have a rig you can use to validate a PR
|
|
31
|
+
|
|
32
|
+
## Related work
|
|
33
|
+
|
|
34
|
+
Links to specs, prior issues, PyTorch docs, vendor SDK docs, etc.
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [master]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [master]
|
|
8
|
+
|
|
9
|
+
# Cancel in-progress runs on the same ref so a fast follow-up push
|
|
10
|
+
# doesn't keep a stale run alive.
|
|
11
|
+
concurrency:
|
|
12
|
+
group: ci-${{ github.workflow }}-${{ github.ref }}
|
|
13
|
+
cancel-in-progress: true
|
|
14
|
+
|
|
15
|
+
jobs:
|
|
16
|
+
test-linux:
|
|
17
|
+
runs-on: ubuntu-latest
|
|
18
|
+
steps:
|
|
19
|
+
- uses: actions/checkout@v4
|
|
20
|
+
|
|
21
|
+
- uses: actions/setup-python@v5
|
|
22
|
+
with:
|
|
23
|
+
python-version: "3.12"
|
|
24
|
+
|
|
25
|
+
- name: Install CPU-only torch
|
|
26
|
+
run: pip install --index-url https://download.pytorch.org/whl/cpu torch
|
|
27
|
+
|
|
28
|
+
- name: Install package + test deps
|
|
29
|
+
run: pip install -e ".[dev]" psutil platformdirs py-cpuinfo numpy joblib scikit-learn
|
|
30
|
+
|
|
31
|
+
# Scope: run only the hardware-module test files. The wider unit suite
|
|
32
|
+
# has pre-existing CI-hostile import-time side effects (server.py:3091
|
|
33
|
+
# eagerly calls create_app() which sqlite3.connects to a configured
|
|
34
|
+
# genome path that doesn't exist on a clean runner). Restructuring
|
|
35
|
+
# server.py for lazy init is out of scope for PR2; tracked as a
|
|
36
|
+
# follow-up enhancement.
|
|
37
|
+
- name: Run hardware test suite
|
|
38
|
+
run: pytest tests/test_hardware.py tests/test_hardware_real_device.py tests/test_hardware_mps_smoke.py -v
|
|
39
|
+
|
|
40
|
+
# WS2 review FIX-4: targeted suites for the symbol-graph feature. The full
|
|
41
|
+
# unit suite is still blocked in CI by server import-time side effects (see
|
|
42
|
+
# the scope comments below) — this job scopes to the WS2 surface instead:
|
|
43
|
+
# extraction, pipeline, lifecycle cleanup, flag-off routing, write-lock
|
|
44
|
+
# integrity, and the config/reference-sync contract. The [ast] extra
|
|
45
|
+
# installs tree-sitter (+ grammars) so the skipif-marked symbol tests
|
|
46
|
+
# actually run rather than degrade to skips.
|
|
47
|
+
test-symbol-graph:
|
|
48
|
+
runs-on: ubuntu-latest
|
|
49
|
+
steps:
|
|
50
|
+
- uses: actions/checkout@v4
|
|
51
|
+
|
|
52
|
+
- uses: actions/setup-python@v5
|
|
53
|
+
with:
|
|
54
|
+
python-version: "3.12"
|
|
55
|
+
|
|
56
|
+
- name: Install CPU-only torch
|
|
57
|
+
run: pip install --index-url https://download.pytorch.org/whl/cpu torch
|
|
58
|
+
|
|
59
|
+
- name: Install package + test deps + tree-sitter extra
|
|
60
|
+
run: pip install -e ".[dev,ast]" psutil platformdirs py-cpuinfo numpy joblib scikit-learn
|
|
61
|
+
|
|
62
|
+
- name: Install spaCy model (ingest-path tests exercise the CPU tagger)
|
|
63
|
+
run: python -m spacy download en_core_web_sm
|
|
64
|
+
|
|
65
|
+
- name: Run symbol-graph test suites
|
|
66
|
+
run: >
|
|
67
|
+
pytest
|
|
68
|
+
tests/test_symbol_extraction.py
|
|
69
|
+
tests/test_symbol_pagerank.py
|
|
70
|
+
tests/test_symbol_graph_pipeline.py
|
|
71
|
+
tests/test_symbol_graph_lifecycle.py
|
|
72
|
+
tests/test_symbol_graph_flag_off.py
|
|
73
|
+
tests/test_config.py
|
|
74
|
+
tests/test_config_reference_sync.py
|
|
75
|
+
tests/test_store_write_integrity.py
|
|
76
|
+
-v
|
|
77
|
+
|
|
78
|
+
test-macos-mps:
|
|
79
|
+
runs-on: macos-14
|
|
80
|
+
steps:
|
|
81
|
+
- uses: actions/checkout@v4
|
|
82
|
+
|
|
83
|
+
- uses: actions/setup-python@v5
|
|
84
|
+
with:
|
|
85
|
+
python-version: "3.12"
|
|
86
|
+
|
|
87
|
+
- name: Install package + test deps + transformers (for MPS smoke test)
|
|
88
|
+
run: pip install -e ".[dev]" torch transformers psutil platformdirs py-cpuinfo numpy joblib scikit-learn
|
|
89
|
+
|
|
90
|
+
# Scope: run only the hardware-module test files. The MPS smoke test
|
|
91
|
+
# is the actual integration check this job is for; the wider unit
|
|
92
|
+
# suite has pre-existing CI-hostile import-time side effects
|
|
93
|
+
# (server.py:3091) that PR2 isn't supposed to fix.
|
|
94
|
+
#
|
|
95
|
+
# PYTORCH_MPS_HIGH_WATERMARK_RATIO=0.0 disables PyTorch's internal MPS
|
|
96
|
+
# memory ceiling. On the GHA macos-14 runner the default ceiling is
|
|
97
|
+
# too tight and trips on tiny allocations even when ~7 GiB is free.
|
|
98
|
+
# This is the documented workaround
|
|
99
|
+
# (https://pytorch.org/docs/stable/notes/mps.html).
|
|
100
|
+
- name: Run hardware test suite (MPS smoke test runs only on this job)
|
|
101
|
+
env:
|
|
102
|
+
PYTORCH_MPS_HIGH_WATERMARK_RATIO: "0.0"
|
|
103
|
+
run: pytest tests/test_hardware.py tests/test_hardware_real_device.py tests/test_hardware_mps_smoke.py -v
|
|
104
|
+
|
|
105
|
+
test-windows:
|
|
106
|
+
runs-on: windows-latest
|
|
107
|
+
steps:
|
|
108
|
+
- uses: actions/checkout@v4
|
|
109
|
+
|
|
110
|
+
- uses: actions/setup-python@v5
|
|
111
|
+
with:
|
|
112
|
+
python-version: "3.12"
|
|
113
|
+
|
|
114
|
+
- name: Install CPU-only torch
|
|
115
|
+
run: pip install --index-url https://download.pytorch.org/whl/cpu torch
|
|
116
|
+
|
|
117
|
+
- name: Install package + test deps
|
|
118
|
+
run: pip install -e ".[dev]" psutil platformdirs py-cpuinfo numpy joblib scikit-learn
|
|
119
|
+
|
|
120
|
+
# Scope: run only the hardware-module test files. The wider unit suite
|
|
121
|
+
# has pre-existing CI-hostile import-time side effects (server.py:3091
|
|
122
|
+
# eagerly calls create_app() which sqlite3.connects to a configured
|
|
123
|
+
# genome path that doesn't exist on a clean runner). Restructuring
|
|
124
|
+
# server.py for lazy init is out of scope for PR2; tracked as a
|
|
125
|
+
# follow-up enhancement.
|
|
126
|
+
- name: Run hardware test suite
|
|
127
|
+
run: pytest tests/test_hardware.py tests/test_hardware_real_device.py tests/test_hardware_mps_smoke.py -v
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
name: Publish to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
types: [published]
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
contents: read
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
build:
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v4
|
|
16
|
+
|
|
17
|
+
- uses: actions/setup-python@v5
|
|
18
|
+
with:
|
|
19
|
+
python-version: "3.12"
|
|
20
|
+
|
|
21
|
+
- name: Install build tools
|
|
22
|
+
run: pip install build
|
|
23
|
+
|
|
24
|
+
- name: Build package
|
|
25
|
+
run: python -m build
|
|
26
|
+
|
|
27
|
+
- name: Upload artifact
|
|
28
|
+
uses: actions/upload-artifact@v4
|
|
29
|
+
with:
|
|
30
|
+
name: dist
|
|
31
|
+
path: dist/
|
|
32
|
+
|
|
33
|
+
publish:
|
|
34
|
+
needs: build
|
|
35
|
+
runs-on: ubuntu-latest
|
|
36
|
+
environment: pypi
|
|
37
|
+
permissions:
|
|
38
|
+
id-token: write
|
|
39
|
+
steps:
|
|
40
|
+
- name: Download artifact
|
|
41
|
+
uses: actions/download-artifact@v4
|
|
42
|
+
with:
|
|
43
|
+
name: dist
|
|
44
|
+
path: dist/
|
|
45
|
+
|
|
46
|
+
- name: Publish to PyPI
|
|
47
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
__pycache__/
|
|
2
|
+
*.pyc
|
|
3
|
+
*.pyo
|
|
4
|
+
.pytest_cache/
|
|
5
|
+
*.egg-info/
|
|
6
|
+
dist/
|
|
7
|
+
build/
|
|
8
|
+
|
|
9
|
+
# Runtime artifacts
|
|
10
|
+
genome.db
|
|
11
|
+
genome.db-wal
|
|
12
|
+
genome.db-shm
|
|
13
|
+
genome-bench-*.db
|
|
14
|
+
genome_bench_*.db
|
|
15
|
+
genome_bench_*.db-shm
|
|
16
|
+
genome_bench_*.db-wal
|
|
17
|
+
genome_cpu.db
|
|
18
|
+
genome_cpu.db-wal
|
|
19
|
+
genome_cpu.db-shm
|
|
20
|
+
genome.db.pre-*.bak
|
|
21
|
+
genome.db.pre-*.bak-shm
|
|
22
|
+
genome.db.pre-*.bak-wal
|
|
23
|
+
genome_*.db
|
|
24
|
+
genome_*.db-shm
|
|
25
|
+
genome_*.db-wal
|
|
26
|
+
helix.db
|
|
27
|
+
helix.db-shm
|
|
28
|
+
helix.db-wal
|
|
29
|
+
*.SAFETY_COPY
|
|
30
|
+
helix.log
|
|
31
|
+
metrics.json
|
|
32
|
+
overnight_logs/
|
|
33
|
+
logs/
|
|
34
|
+
genomes/
|
|
35
|
+
|
|
36
|
+
# Benchmark incremental traces (one line per needle)
|
|
37
|
+
benchmarks/*.incremental.jsonl
|
|
38
|
+
# Benchmark monitor traces (per-check heartbeats)
|
|
39
|
+
benchmarks/*.monitor.jsonl
|
|
40
|
+
# Benchmark stdout captures and runtime logs (ephemeral; archive selectively if needed)
|
|
41
|
+
benchmarks/*.log
|
|
42
|
+
benchmarks/*.stdout.log
|
|
43
|
+
|
|
44
|
+
# IDE workspace state
|
|
45
|
+
.obsidian/
|
|
46
|
+
|
|
47
|
+
# Visual companion / brainstorming sessions (Claude Code superpowers plugin)
|
|
48
|
+
.superpowers/
|
|
49
|
+
|
|
50
|
+
# Benchmark logs directory and large result outputs
|
|
51
|
+
benchmarks/logs/
|
|
52
|
+
benchmarks/results/*.json
|
|
53
|
+
|
|
54
|
+
# Dev scripts not part of the project
|
|
55
|
+
foveated_smoke_*.sh
|
|
56
|
+
# Local benchmark scratch and explicit error outputs
|
|
57
|
+
benchmarks/_fingerprint_*.json
|
|
58
|
+
benchmarks/docs_tidy_diff.md
|
|
59
|
+
benchmarks/docs_tidy_*.json
|
|
60
|
+
benchmarks/*error*.json
|
|
61
|
+
benchmarks/snow/results/*error*.json
|
|
62
|
+
# Benchmark run outputs — regenerable, large, per-run timestamps. If a JSON
|
|
63
|
+
# *should* be tracked (curated fixture, etc.) commit it with `git add -f`
|
|
64
|
+
# or add an explicit exception below.
|
|
65
|
+
benchmarks/*.json
|
|
66
|
+
!benchmarks/fixtures.json
|
|
67
|
+
# #204 SPLADE scale curve: curated paraphrase gold-query fixture + its
|
|
68
|
+
# provenance sidecar (authored, not a regenerable run output).
|
|
69
|
+
!benchmarks/_splade_curve_queries.json
|
|
70
|
+
!benchmarks/_splade_curve_queries.meta.json
|
|
71
|
+
benchmarks/results/*
|
|
72
|
+
!benchmarks/results/faithfulness/
|
|
73
|
+
benchmarks/*_report.txt
|
|
74
|
+
benchmarks/*_report_utf8.txt
|
|
75
|
+
|
|
76
|
+
# IDE
|
|
77
|
+
.vscode/
|
|
78
|
+
.idea/
|
|
79
|
+
|
|
80
|
+
# Build
|
|
81
|
+
dist/
|
|
82
|
+
*.egg-info/
|
|
83
|
+
|
|
84
|
+
# Trained models (users train their own)
|
|
85
|
+
training/models/
|
|
86
|
+
training/data/
|
|
87
|
+
|
|
88
|
+
# Ingest logs
|
|
89
|
+
deep_ingest*.log
|
|
90
|
+
core_ingest.log
|
|
91
|
+
*_ingest*.log
|
|
92
|
+
|
|
93
|
+
# Server runtime log (redirected stdout when starting via `python -m helix_context.server > helix_server.log`)
|
|
94
|
+
helix_server.log
|
|
95
|
+
# Catches sharded_server.log, helix_mcpo_server.log, etc. — any *_server.log shape.
|
|
96
|
+
*_server.log
|
|
97
|
+
|
|
98
|
+
# cwola_log export staging area (scripts/export_cwola_log.py writes here before rclone upload)
|
|
99
|
+
cwola_export/
|
|
100
|
+
|
|
101
|
+
# Upload tarballs built for R2 delivery (see scripts/ + docs/collab/)
|
|
102
|
+
helix-collab-bundle*.tar.gz
|
|
103
|
+
helix-code-bundle*.tar.gz
|
|
104
|
+
|
|
105
|
+
# Local scratch + benchmark backups (e.g. helix.toml.bench-backup written by
|
|
106
|
+
# overnight orchestrators while temporarily tuning config for a run).
|
|
107
|
+
temp_*.md
|
|
108
|
+
*.bench-backup
|
|
109
|
+
|
|
110
|
+
# Per-machine launcher overrides (start-cymatix-tray.local.bat etc. —
|
|
111
|
+
# the checked-in .bat files tell users to copy-and-edit these).
|
|
112
|
+
*.local.bat
|
|
113
|
+
|
|
114
|
+
# OS
|
|
115
|
+
Thumbs.db
|
|
116
|
+
.DS_Store
|
|
117
|
+
|
|
118
|
+
# Native observability sidecar — binaries downloaded by the install script.
|
|
119
|
+
tools/native-otel/collector/
|
|
120
|
+
tools/native-otel/prometheus/
|
|
121
|
+
tools/native-otel/tempo/
|
|
122
|
+
tools/native-otel/loki/
|
|
123
|
+
tools/native-otel/grafana/
|
|
124
|
+
# Install-completion sentinel written by scripts/install-native-observability.ps1
|
|
125
|
+
# and consumed (then removed) by the tray's auto-restart watcher.
|
|
126
|
+
tools/native-otel/.install-complete
|
|
127
|
+
# Rendered configs are local to each install (paths embedded reflect the
|
|
128
|
+
# user's home/AppData). Don't commit them.
|
|
129
|
+
tools/native-otel/configs/*.yaml
|
|
130
|
+
tools/native-otel/configs/*.yml
|
|
131
|
+
!tools/native-otel/configs/.gitkeep
|
|
132
|
+
|
|
133
|
+
# Deep-review working notes — local analysis artifacts (Tier-0 plan,
|
|
134
|
+
# deep-review notes, PR-5 handoff). Not part of the tracked codebase.
|
|
135
|
+
docs/reviews/2026-05-16-deep-review/
|
|
136
|
+
|
|
137
|
+
# Local data / tool caches (2026-07-01 housekeeping)
|
|
138
|
+
.serena/
|
|
139
|
+
.tmp.driveupload/
|
|
140
|
+
.worktrees/
|
|
141
|
+
runs/
|
|
142
|
+
s2b_*/
|
|
143
|
+
benchmarks/aider_polyglot/
|
|
144
|
+
benchmarks/contextbench/
|
|
145
|
+
*.db-wal
|
|
146
|
+
*.db-shm
|
|
147
|
+
google_doc.*
|
|
148
|
+
|
|
149
|
+
# Personal/scratch (2026-07-01, supersedes #226)
|
|
150
|
+
.obsidian/
|
|
151
|
+
overnight_logs/
|
|
152
|
+
GEMINI.md
|
|
153
|
+
scripts/.ingest_progress
|