Skip to content

Research, Scientia, and telemetry channels

Research / Scientia / telemetry channels (SSOT)

Section titled “Research / Scientia / telemetry channels (SSOT)”

This doc is the human-facing map for the three parallel paths described in the convergence plan. Implementation anchors: crates/vox-research-events, crates/vox-db (research_metrics, ResearchMetricsSink), crates/vox-telemetry, crates/vox-search, and the composition root (vox-orchestrator, MCP, CLI).

ChannelRoleConsumers
ResearchEvent busTyped SCIENTIA ladder (vox_research_events::ResearchEvent)In-process subscribers (MCP broadcast, mesh tap)
research_metrics SQLDurable Tier‑B rows keyed by session_id / metric_typeAnalytics, rolling policy feedback, dashboards
TelemetryEventResearchMetricsSinkGeneric telemetry facade (vox_telemetry::TelemetryEvent)Same table as metrics; fixture/model/task shaped events

Rule: Every durable research/scientia analytic you rely on long-term must appear under contracts/telemetry/events.v1.yaml (with JSON Schema). Bus-only events do not need a catalog row unless they are also persisted.

vox-orchestrator emits ResearchEvent for live subscribers and, when a Codex handle is present, mirrors a whitelist into research_metrics via spawn_persist_research_event_for_metrics (metadata carries telemetry_catalog_id: research-event-bridge; see contracts/telemetry/research-event-bridge.v1.schema.json).

subqueries_emitted keeps an explicit record_research_metric write with planner JSON metadata (too large for the bus payload shape).

Rolling aggregates for citation precision, self‑verification reliability, and retrieval hit rate are read from recent research_metrics rows (citation_precision, self_verification_reliability, retrieval_hit_rate) and applied through neutral vox_search::SearchPolicyFeedbackSearchPolicy::with_scientia_feedback before local/web gather. Callers may override with ResearchConfig.search_policy_feedback.

ServerState::spawn_scientia_research_mesh_background_jobs starts spawn_scientia_mesh_research_event_subscriber on the MCP research_events broadcast without requiring Codex (daemon and MCP stdio paths).

With the news-publish feature and OrchestratorConfig::research_mesh_intake_writer_active() (that is, scientia_research_mesh.intake_writer_enabled or news.enabled, plus env overlays such as VOX_SCIENTIA_RESEARCH_MESH_INTAKE_WRITER), the subscriber writes validated JSON via vox_publisher::research_mesh under <repo>/.vox/scientia/research-mesh-intake/ (repo_scientia_research_mesh_intake_dir).

Promotion: consume_pending_intake / spawn_research_mesh_intake_consumer move validated files into each queue’s processed/ subtree and append JSON lines to <repo>/.vox/scientia/research-mesh-promoted/events.v1.jsonl (path helper: repo_scientia_research_mesh_promoted_dir). CLI: vox research mesh-intake consume. Enable the background consumer with scientia_research_mesh.intake_consumer_poll_enabled or VOX_SCIENTIA_RESEARCH_MESH_CONSUMER_POLL / VOX_SCIENTIA_RESEARCH_MESH_CONSUMER_POLL_INTERVAL_MS.

Contracts: research-mesh-intake.v1.schema.json, research-mesh-promoted-line.v1.schema.json.

Downstream scholarly jobs should treat intake and promoted rows as machine-suggested until human review hooks land.

Inventory snapshot (metric_type ↔ channel)

Section titled “Inventory snapshot (metric_type ↔ channel)”
Metric / signalBus (ResearchEvent)research_metricsCatalog id
research_startedTelemetryObservationBridgeresearch-event-bridge
subqueries_emittedAggregateComputedDirect row (plan JSON)(plan metadata)
retrieval_hit_rateAggregateComputedBridgeresearch-event-bridge
sources_totalTelemetryObservationBridgeresearch-event-bridge
citation_precisionAggregateComputedBridgeresearch-event-bridge
self_verification_reliabilityTelemetryObservationBridgeresearch-event-bridge
scientia.claim_verifiedClaimVerified (subset)Bridgeresearch-event-bridge
scientia.finding_candidate_proposedFindingCandidateProposedBridgeresearch-event-bridge
Fixture / MCP telemetryappend_research_metric / sinkfixture-*, orch-subagent-dispatch, …
  • Search & retrieval SSOT: search-retrieval-ssot-2026.md
  • Telemetry trust: telemetry-trust-ssot.md
  • AgentOS overview: agentos-ssot-2026.md