Files
Kigi-CLI/crates/codegen/kigi-hunk-tracker/src/lib.rs
T
ZacharyZhang-NY 6f31415ed6 §9 acceptance: grep-zero sweep — every internal x.ai/grok identifier renamed
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.
2026-07-18 02:48:46 -04:00

83 lines
3.6 KiB
Rust

//! kigi-hunk-tracker - Track file hunks (diffs) with agent/external attribution.
//!
//! This crate provides:
//! - Actor-based hunk tracking with source attribution (Agent vs External)
//! - Integration with kigi-shell sessions
//!
//! ## Actor Pattern
//!
//! The HunkTracker uses an actor pattern with message-passing via channels:
//!
//! ```text
//! ┌────────────────┐ ┌──────────────────────────────────────┐
//! │ Agent Tool │ ─── Command ───▶ │ HunkTrackerActor │
//! │ (search_ │ │ (runs in dedicated tokio task) │
//! │ replace) │ │ │
//! └────────────────┘ │ State (no locks needed): │
//! │ - file_states: HashMap │
//! ┌────────────────┐ │ - git_dirty_cache: HashSet │
//! │ fs_notify │ ─── Command ───▶ │ - mode: TrackingMode │
//! │ event loop │ │ │
//! └────────────────┘ │ │ HunkEvent │
//! │ ▼ │
//! ┌────────────────┐ │ ┌──────────────────┐ │
//! │ Query (e.g. │ ── Cmd+Oneshot ─▶│ │ event_tx │───▶ Client │
//! │ get_hunks) │ ◀── Response ────│ └──────────────────┘ │
//! └────────────────┘ └──────────────────────────────────────┘
//! ```
//!
//! ## Usage
//!
//! ```rust,ignore
//! use kigi_hunk_tracker::{HunkTrackerActor, HunkEvent, TrackingMode, HunkAction};
//! use tokio::sync::mpsc;
//!
//! // Create event channel
//! let (event_tx, mut event_rx) = mpsc::unbounded_channel();
//!
//! // Spawn actor and get handle
//! let handle = HunkTrackerActor::spawn(
//! session_id,
//! working_dir,
//! event_tx,
//! TrackingMode::AllDirty,
//! cancellation_token,
//! );
//!
//! // Record agent writes
//! handle.record_agent_write(path, content, prompt_index);
//!
//! // Query hunks
//! let hunks = handle.get_all_hunks().await;
//!
//! // Apply actions
//! handle.hunk_action(hunk_id, HunkAction::Accept).await;
//!
//! // Listen for events
//! while let Some(event) = event_rx.recv().await {
//! match event {
//! HunkEvent::HunkAdded { path, hunk } => { /* ... */ }
//! HunkEvent::HunkRemoved { path, hunk_id } => { /* ... */ }
//! _ => {}
//! }
//! }
//! ```
pub mod actor;
pub mod commands;
pub mod diff;
pub mod events;
pub mod handle;
pub mod loc;
pub mod types;
// Re-export main types for convenience
pub use actor::{HunkTrackerActor, REFRESH_SCAN_LOG_PREFIX, REFRESH_SKIP_LOG_PREFIX};
pub use events::{HunkEvent, HunkRemovalReason};
pub use handle::HunkTrackerHandle;
pub use loc::{
AuthorType, EventType, HunkRecord, HunkRecordWriter, JsonlHunkRecordWriter, LocAggregate,
LocSinkContext, SourceType, run_loc_sink,
};
pub use types::*;