From d06e79cc509e7cd8ced4967e17bdaa7d3ace3663 Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Thu, 2 Jul 2026 17:50:54 -0400 Subject: [PATCH] =?UTF-8?q?docs(media):=20add=20reflex=20module-map=20entr?= =?UTF-8?q?y=20to=20lib.rs=20catalogue=20(slice-4=20=C2=A73.1)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Task 1 review flagged the new reflex module was missing from the module-map //! catalogue. AGENTS.md learner-facing convention requires the catalogue entry describing what the module does + why it exists. Addresses the Minor finding from the Task 1 task review. Signed-off-by: Aaron D. Lee --- crates/rutster-media/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/rutster-media/src/lib.rs b/crates/rutster-media/src/lib.rs index d9e23e0..de717dc 100644 --- a/crates/rutster-media/src/lib.rs +++ b/crates/rutster-media/src/lib.rs @@ -27,6 +27,8 @@ //! - [`pcm`] — `PcmFrame` + `AudioSource`/`AudioSink` traits (the tap //! seam) + `EchoAudioPipe` (slice-1 wiring). //! - [`opus_codec`] — `OpusDecoder`/`OpusEncoder` wrappers. +//! - [`reflex`] (slice-4) — `AdvisoryEvent` + `ReflexMetrics`; the FOB +//! barge-in reflex state machine will decorate `AudioPipe` here (Task 2). //! - [`loop_driver`] (Task 4) — the str0m poll loop on tokio. //! - [`rtc_session`] (Task 4) — `RtcSession`, the per-peer owner.