pointbreak 0.10.0

Durable terminal code review for changes humans and coding agents collaborate on together
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Shared CLI presentation for optional derived read acceleration.

use pointbreak::session::DerivedHistoryAccess;

/// Explain one command-local fallback without exposing the disposable
/// implementation. Reads and writes share the exact-store cadence owned by
/// the session layer.
pub(super) fn emit_authoritative_fallback_hint(access: &DerivedHistoryAccess) {
    if let Some(hint) = access.claim_authoritative_fallback_hint() {
        eprintln!("{hint}");
    }
}