M0: compilable skeleton — Kigi 0.1.0 fork surgery

Hard fork of xai-org/grok-build (Apache-2.0) re-targeted as Kigi, an
unofficial Kimi Code CLI community build.

Rename & identity
- 72 xai-*/xai-grok-* crates -> kigi-* (explicit: xai-grok-pager-bin ->
  kigi-bin [binary `kigi`], xai-grok-pager -> kigi-tui; rest mechanical);
  ptyctl, ptyctl-cli, third_party/ unchanged; proto package
  xai.grok.tools.v1 -> kigi.tools.v1
- Config home ~/.kigi (KIGI_SHARE_DIR override), env prefix GROK_* ->
  KIGI_*, `kigi --version` carries the unofficial-community-build notice
- clap identity, help text, startup banner, prompt templates rebranded
  (templates re-encrypted)

Deletions (PRD removal list #5/#6/#7/#9/#10)
- voice input (xai-grok-voice) and all TUI wiring
- telemetry: Mixpanel client, external OTel stream, Sentry, OTLP layers,
  trace/GCS/S3 upload queues (kigi-file-utils halved), workspace upload
  module & dc_log, heap-profile uploader, auth-diagnostics uploader,
  session-analytics halves of feedback; local zero-egress observability
  preserved in new kigi-log crate (unified log, --debug firehose,
  subsystem file logs, opt-in instrumentation)
- announcements (crate, remote-settings fields, TUI surfaces)
- plugin marketplace (crate, sources/browse/CTA/extensions-modal tab);
  direct plugin install/uninstall/update via kigi-agent git_install kept
- relay/gateway/assets endpoints and features (agent relay, headless
  relay transport, gateway bridge, LeaderEnvUrls); leader IPC socket now
  ~/.kigi/leader.sock + KIGI_LEADER_SOCKET, no ws-url derivation
- functional types rehomed instead of deleted: PermissionMode ->
  kigi-config-types, McpInitStrategy -> kigi-mcp, PrCreationSource ->
  session signals, TerminalDiagnostics -> kigi-pager-render, agent_id ->
  shell util

Endpoints
- kigi-env rewritten: single production KigiEndpoints {coding_api_base_url
  https://api.kimi.com/coding/v1 (KIGI_CODE_BASE_URL), oauth_host
  https://auth.kimi.com (KIGI_OAUTH_HOST), update_base_url (GitHub
  Releases API), upgrade_page_url}; GrokBuildEnvironment enum deleted

Toolchain & workspace hygiene
- Rust 1.97.0 pinned; edition 2024; full cargo update; git2 hoisted to
  workspace at 0.21 (Option->Result API migration), quick-xml 0.41
- Root Cargo.toml hand-maintained (PRD §8.1): version 0.1.0 inherited by
  all members, members sorted, unused deps pruned
- cargo-deny advisories gate (deny.toml with documented transitive
  exceptions); CI workflow (check/clippy/fmt/deny/test, macOS+Linux)
- cross-crate test seams re-gated behind `test-support` cargo feature;
  insta snapshot baselines renamed to the kigi_tui prefix
- clippy --workspace --all-targets: zero warnings; fmt clean

Fixes surfaced by the port
- updater probe/installer divergence (bin/kigi vs bin/grok symlink set)
- idle model-metadata refresh dead under KIGI_CODE_BASE_URL override
  (new is_effective_coding_endpoint_url, loopback+override aware)
- macOS symlinked-TMPDIR fixture canonicalization (foreign_sessions,
  fast-worktree); RSS measurement tests serialized via serial_test

Docs & legal (Apache §4)
- NOTICE added (upstream attribution + change statement); THIRD-PARTY
  notices sustained; kigi-tools ported-code notices extended; README,
  CONTRIBUTING, SECURITY, AGENTS.md rewritten

Out of scope for M0 (tracked): Kimi auth/inference (M1), search/fetch,
command parity, config import (M2), Computer Hub excision & final
brand-token sweep (M2), distribution & self-update rewrite (M3).
This commit is contained in:
2026-07-17 05:31:01 -04:00
commit d6c20fc13f
2612 changed files with 1353757 additions and 0 deletions
+182
View File
@@ -0,0 +1,182 @@
//! Streaming markdown renderer for terminal UIs.
//!
//! This crate provides incremental/streaming markdown rendering optimized for
//! displaying LLM responses in terminal UIs. Key features:
//!
//! - **Streaming rendering**: Efficiently render markdown as it arrives chunk by chunk
//! - **Checkpoint-based freezing**: Only re-render the "tail" after stable boundaries
//! - **Syntax highlighting**: Code blocks highlighted via syntect
//! - **Terminal color adaptation**: Automatic downgrade for 256-color/16-color terminals
//! - **LaTeX math rendering**: `$...$`, `$$...$$`, `\(...\)` and `\[...\]` math is
//! converted to a Unicode approximation (`$E=mc^2$` → `E=mc²`) in pretty mode
//!
//! # Example
//!
//! ```ignore
//! use kigi_markdown::{StreamingMarkdownRenderer, MarkdownStyle, Syntect};
//!
//! let syntect = Syntect::new(include_bytes!("theme.tmTheme"));
//! let style = MarkdownStyle::default();
//! let mut renderer = StreamingMarkdownRenderer::new(style, true);
//!
//! for token in stream {
//! renderer.push_and_render(&token, Some(&syntect));
//! let view = renderer.view();
//! // display view.lines
//! }
//! ```
mod buffers;
pub mod checkpoint;
mod colors;
mod hyperlinks;
mod latex;
mod latex_delimiters;
mod mermaid;
mod open_code_highlighter;
mod output;
mod parse;
mod render;
mod source_map;
pub mod streaming;
pub mod style;
mod syntax;
mod url_scan;
// Re-export public API
pub use buffers::MarkdownBuffers;
pub use checkpoint::{Checkpoint, CheckpointKind};
pub use colors::{
ColorLevel, adapt_color, adapt_style, detect_color_level, get_color_level, set_color_level_cap,
};
pub use latex_delimiters::{LatexDelimiterNormalizer, normalize_latex_delimiters};
pub use output::{CodeBlockSpan, HyperlinkTarget, MarkdownRenderOutput, MarkdownRenderView};
pub use parse::{MarkdownParser, ParsedMarkdown};
pub use source_map::SourceMap;
pub use streaming::StreamingMarkdownRenderer;
pub use style::{MarkdownStyle, TableBorders};
pub use syntax::Syntect;
// Re-export test helpers when fuzzing
#[cfg(fuzzing)]
pub use syntax::test_syntect;
/// Render markdown to ratatui Lines with full output including checkpoint.
///
/// Runs the parser pass followed by the `url_scan` pass so the returned
/// output's `hyperlinks` mirrors what `StreamingMarkdownRenderer::finish()`
/// produces for the same input (plain-URL detection for the pretty-mode
/// `(url)` suffix and bare URLs in prose).
pub fn render_markdown_ratatui_full(
text: &str,
ms: MarkdownStyle,
pretty: bool,
syntect: Option<&Syntect>,
) -> (MarkdownRenderOutput, Option<Checkpoint>) {
let mut buffers = MarkdownBuffers::new();
render_markdown_ratatui_with_buffers(text, ms, pretty, &mut buffers, syntect)
}
/// Render markdown to ratatui Lines, reusing the provided buffers.
pub fn render_markdown_ratatui_with_buffers(
text: &str,
ms: MarkdownStyle,
pretty: bool,
buffers: &mut MarkdownBuffers,
syntect: Option<&Syntect>,
) -> (MarkdownRenderOutput, Option<Checkpoint>) {
render_markdown_ratatui_with_buffers_width(text, ms, pretty, buffers, syntect, None)
}
/// Render markdown to ratatui Lines, reusing the provided buffers,
/// with an optional maximum table width.
pub fn render_markdown_ratatui_with_buffers_width(
text: &str,
ms: MarkdownStyle,
pretty: bool,
buffers: &mut MarkdownBuffers,
syntect: Option<&Syntect>,
max_table_width: Option<usize>,
) -> (MarkdownRenderOutput, Option<Checkpoint>) {
// Normalize LaTeX delimiters (`\(…\)`/`\[…\]`/`\begin{equation}`) into the
// canonical `$`/`$$` forms before parsing, so the math handlers convert them
// uniformly (incl. inside table cells). All offsets are in normalized space;
// `StreamingMarkdownRenderer` normalizes at ingestion so its stored source
// matches. Streaming tail renders (`render_markdown_ratatui_with_link_id`)
// do NOT re-normalize — they receive already-normalized source.
let normalized = latex_delimiters::normalize_latex_delimiters(text);
let mut parsed = MarkdownParser::new(&normalized, ms, buffers, syntect)
.max_table_width(max_table_width)
.parse();
let next_link_id = parsed.next_link_id;
let (mut output, checkpoint) = parsed.render_ratatui(pretty);
// Mirror `StreamingMarkdownRenderer::finish()`: detect plain URLs
// so a one-shot full render produces the same hyperlinks a
// `push_and_render` + `finish()` sequence would.
let (extra_links, _post_scan_next_id) =
url_scan::detect_plain_urls(&output.lines, &output.hyperlinks, next_link_id);
output.hyperlinks.extend(extra_links);
output
.hyperlinks
.sort_by_key(|h| (h.line_index, h.column_range.start));
(output, checkpoint)
}
/// Render markdown to ratatui Lines and provide `next_link_id` so the
/// streaming renderer can resume link ID assignment across tail re-renders.
///
/// `open_code` threads an optional incremental highlighter for the trailing
/// still-open fenced code block: only the streaming tail re-render passes
/// `Some(cache)`; `finish()` and non-streaming callers pass `None`. Everything
/// other than that one open block (closed code blocks, HTML, math, tables,
/// inline) always goes through the unchanged batch highlighter, so output is
/// byte-for-byte identical to the cache-less path. See [`open_code_highlighter`].
#[allow(clippy::too_many_arguments)]
pub(crate) fn render_markdown_ratatui_with_link_id(
text: &str,
ms: MarkdownStyle,
pretty: bool,
buffers: &mut MarkdownBuffers,
syntect: Option<&Syntect>,
max_table_width: Option<usize>,
link_id_start: u32,
collapse_soft_breaks: bool,
open_code: Option<&mut open_code_highlighter::OpenCodeHighlighter>,
) -> (MarkdownRenderOutput, Option<Checkpoint>, u32) {
let mut parsed = MarkdownParser::new(text, ms, buffers, syntect)
.max_table_width(max_table_width)
.link_id_start(link_id_start)
.collapse_soft_breaks(collapse_soft_breaks)
.open_code(open_code)
.parse();
// NOTE: There can be multiple links in a tail, hence next_link_id is the return.
let next_link_id = parsed.next_link_id;
let (output, checkpoint) = parsed.render_ratatui(pretty);
(output, checkpoint, next_link_id)
}
/// Render markdown to an ANSI-styled string.
pub fn render_markdown(
text: &str,
ms: MarkdownStyle,
pretty: bool,
syntect: Option<&Syntect>,
) -> (String, SourceMap) {
let mut buffers = MarkdownBuffers::new();
let normalized = latex_delimiters::normalize_latex_delimiters(text);
MarkdownParser::new(&normalized, ms, &mut buffers, syntect)
.parse()
.render_ansi(pretty)
}
/// Render markdown to ratatui Lines (simple API).
pub fn render_markdown_ratatui(
text: &str,
ms: MarkdownStyle,
pretty: bool,
syntect: Option<&Syntect>,
) -> (Vec<ratatui::text::Line<'static>>, Vec<usize>) {
let (out, _checkpoint) = render_markdown_ratatui_full(text, ms, pretty, syntect);
(out.lines, out.line_source_map)
}