The PRD's first acceptance gate now holds: grep -RinE '\bx\.ai\b|grok' crates/ --include='*.rs' → 0 matches (exempt: NOTICE and third-party license archives, README provenance, and the required 'Based on Grok Build Open Source' attribution, now sourced from version_attribution.txt). Wire-visible renames (both sides in this repo, changed in lockstep): - Auth method id 'grok.com' → 'kimi-code' (AuthMethodKind::KimiCode). - Every x.ai/* and _x.ai/* ACP ext method and meta key → kigi/* / _kigi/* (~200 names; grokShell → kigiShell). Session-file replay keeps a read-side alias for the legacy '_x.ai/session/update' method so existing updates.jsonl histories load; writes emit only the new name (both directions test-pinned). - Agent types grok-build* → kigi* with a documented legacy-prefix alias at resolution time so persisted sessions keep resolving. - ToolNamespace/BuiltinAgentName GrokBuild* → Kigi* (wire snake_case kigi/kigi_concise/kigi_hashline; schema regenerated); grok_build implementation dirs renamed to kigi*. - x-grok-* headers → x-kigi-*, __GROK_* sentinels → __KIGI_*, themes grokday/groknight → kigiday/kiginight (old persisted values fall back to the default theme), web_fetch allowlist xAI hosts → kimi.com + moonshot platforms, changelog CDN → this repo, grok-build changelog archives deleted. - BYOK default endpoint removed: [endpoints] api_base_url is now truly optional with NO default — consumers fail fast with the flag name when unset (no silent x.ai egress). Mock harnesses inject it explicitly. - System-prompt identity fixed: 'released by xAI' → 'an unofficial community CLI for Kimi' (template + regenerated encrypted form). Also repaired pre-existing grok-era test debt found by the sweep: the stale trace_classify default-model pin, the grok-pager UA label test, pty-harness stale-binary reuse and non-hermetic moonshot routing (a PTY test could previously reach the real api.moonshot.cn), and the outdated oauth fixture scope key. Gates: §9 grep 0; fmt clean; workspace check/clippy 0/0 (-D warnings); FULL cargo test --workspace: 234 suites, 21,961 passed, 0 failed; deny advisories ok.
119 lines
5.9 KiB
Rust
119 lines
5.9 KiB
Rust
//! Minimal (scrollback-native) render mode — `kigi --minimal`.
|
|
//!
|
|
//! In this mode finalized conversation blocks are printed once into the
|
|
//! terminal's *native* scrollback (via `kigi_ratatui_inline::Terminal::insert_before`,
|
|
//! reusing `EntryRenderer`) while a small pinned live region holds the
|
|
//! running-turn status, the prompt, and a minimal status line. The interactive
|
|
//! `ScrollbackPane` (scroll, fold, selection, mouse) is not used; the terminal
|
|
//! owns history.
|
|
//!
|
|
//! - [`commit`] — committed-frontier logic, display policy, and the per-frame
|
|
//! commit-to-scrollback pass.
|
|
//! - [`live`] — the pinned live region (tail + status + prompt).
|
|
//! - [`todo`] — the persistent todo panel shown above the prompt.
|
|
//! - [`auth`] — the in-region sign-in flow shown before a session exists.
|
|
//! - [`overlay`] — the inline-overlay host (prompt-anchored dropdowns; grows /
|
|
//! shrinks the live viewport).
|
|
//!
|
|
//! # Wiring
|
|
//!
|
|
//! `kigi-tui` (the lib) does **not** depend on this crate — that would be
|
|
//! a cargo dependency cycle, since this crate reads deeply into the pager's
|
|
//! [`AppView`] / view model. Instead the pager exposes an inversion-of-control
|
|
//! seam ([`kigi_tui::minimal_hook`]) of function pointers, and the
|
|
//! composition-root binary (`kigi-bin`) calls [`install`] once at
|
|
//! startup to register this crate's [`draw`] entry point. When the seam is not
|
|
//! installed the pager's minimal-mode branches are inert.
|
|
|
|
pub mod auth;
|
|
pub mod commit;
|
|
pub mod full_view;
|
|
pub mod live;
|
|
pub mod overlay;
|
|
pub mod panel;
|
|
pub mod plan;
|
|
pub mod todo;
|
|
pub mod welcome;
|
|
|
|
#[cfg(test)]
|
|
mod guard;
|
|
|
|
use crossterm::QueueableCommand;
|
|
use crossterm::terminal::BeginSynchronizedUpdate;
|
|
|
|
use kigi_tui::app::PagerTerminal;
|
|
use kigi_tui::app::app_view::AppView;
|
|
|
|
/// Per-frame entry point for minimal mode, called from [`AppView::draw`].
|
|
///
|
|
/// Order matters:
|
|
/// 0. Open a synchronized update and adopt the current terminal size (see
|
|
/// below), so every write this frame — commits *and* the live region —
|
|
/// presents atomically at the right dimensions.
|
|
/// 1. Commit the pending welcome card (fresh session / `/new`) so it lands
|
|
/// above the first conversation block, and push any ready plan into
|
|
/// scrollback (`plan::maybe_commit_plan`) so it commits like a normal block
|
|
/// this frame — the live region then holds only the plan's decision controls.
|
|
/// 2. Size the viewport to its **post-commit** height (see
|
|
/// [`overlay::sync_viewport`] / [`live::tail_height`]). This runs *before* the
|
|
/// commit so that step 3's `insert_before` prints each finalized block and
|
|
/// repositions the correctly-sized viewport to sit directly after it
|
|
/// (content-anchored — the prompt follows the content, and once the screen is
|
|
/// full that position is the bottom). Otherwise the viewport was still at its
|
|
/// tall streaming height when the block committed, and the following shrink
|
|
/// stranded the prompt at the top of the screen ("input snaps to the top").
|
|
/// 3. Commit finalized blocks into native scrollback (each `insert_before`
|
|
/// scrolls committed rows up above the pinned viewport), then re-print any
|
|
/// `Ctrl+E` / `/expand` re-prints fully expanded below.
|
|
/// 4. Redraw the live region (tail · status · overlay · prompt) into the
|
|
/// viewport's final position.
|
|
///
|
|
/// ## Why step 0 exists (resize + flicker)
|
|
///
|
|
/// **Resize:** `draw_frame` runs `terminal.autoresize()` — but that is the
|
|
/// *last* step of this function, while the commit passes read
|
|
/// `viewport_area().width` first. On the frame that processes a terminal
|
|
/// resize, a block finalizing in that same frame would be laid out and printed
|
|
/// at the *stale* width; a shrink then hard-wraps every over-wide row on the
|
|
/// real terminal, permanently garbling the print-once committed copy. Adopting
|
|
/// the new size up front closes that window (a no-op on non-resize frames).
|
|
///
|
|
/// **Flicker:** the commit `insert_before`s scroll + repaint the screen and
|
|
/// flush per chunk. Without a synchronized update around them, a multi-block
|
|
/// commit (thinking + tool + message finalizing together) presents as several
|
|
/// visible scroll/paint bursts before the live region repaints. Opening the
|
|
/// synchronized update *before* the commits batches the whole frame — commits,
|
|
/// viewport reposition, and live redraw — into one atomic present. The
|
|
/// matching `EndSynchronizedUpdate` is emitted by `draw_frame` (step 4), which
|
|
/// every path through this function reaches; its own inner
|
|
/// `BeginSynchronizedUpdate` is redundant-but-harmless (DEC 2026 is a mode,
|
|
/// not a counter — the first End closes it).
|
|
pub fn draw(app: &mut AppView, terminal: &mut PagerTerminal) {
|
|
let _ = terminal.backend_mut().queue(BeginSynchronizedUpdate);
|
|
let _ = terminal.autoresize();
|
|
// Pending permission/question marks are synced ONCE, up front, so the
|
|
// viewport sizing (`sync_viewport` / `tail_height` / `will_commit`) and the
|
|
// commit pass judge committability against the same state (see
|
|
// `commit::sync_pending_marks`).
|
|
commit::sync_pending_marks(app);
|
|
// Advance any in-progress /transcript build by one time-budgeted slice
|
|
// (arms `pending_pager_path` when done; see `full_view::pump_transcript`).
|
|
full_view::pump_transcript(app);
|
|
welcome::maybe_commit_welcome(app, terminal);
|
|
plan::maybe_commit_plan(app);
|
|
overlay::sync_viewport(app, terminal);
|
|
commit::commit_active(app, terminal);
|
|
commit::expand_pending(app, terminal);
|
|
live::draw_live(app, terminal);
|
|
}
|
|
|
|
/// Register the minimal-mode render hooks with `kigi-tui`.
|
|
///
|
|
/// Call this exactly once, early in the binary's `main`, before any frame is
|
|
/// drawn. It installs the function-pointer seam so the pager's
|
|
/// `ScreenMode::Minimal` branches dispatch into this crate. Idempotent:
|
|
/// subsequent calls are ignored (see [`kigi_tui::minimal_hook`]).
|
|
pub fn install() {
|
|
kigi_tui::minimal_hook::install(kigi_tui::minimal_hook::MinimalHooks { draw });
|
|
}
|