§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.
This commit is contained in:
@@ -27,18 +27,18 @@ fn is_container_no_display() -> bool {
|
||||
|
||||
/// Cached result of the "an upstream OSC 52 sink is capturing our output" check.
|
||||
///
|
||||
/// `grok wrap` runs a command inside a local PTY, scans its output for OSC 52
|
||||
/// `kigi wrap` runs a command inside a local PTY, scans its output for OSC 52
|
||||
/// clipboard sequences, and writes their payload to the *real* (local) system
|
||||
/// clipboard (see `kigi-tui`'s `pty_wrap` module). It advertises this to
|
||||
/// the wrapped program via an environment variable so the
|
||||
/// inner `grok` knows its OSC 52 writes are reliably intercepted and copied,
|
||||
/// inner `kigi` knows its OSC 52 writes are reliably intercepted and copied,
|
||||
/// even when the inner terminal brand is misdetected (e.g. over SSH, where only
|
||||
/// `TERM` propagates and Apple Terminal / unknown brands look OSC-52-incapable).
|
||||
///
|
||||
/// Two names are accepted: the canonical `KIGI_OSC52_SINK` (inherited by local
|
||||
/// children) and the `LC_`-prefixed `LC_KIGI_OSC52_SINK`, which the default
|
||||
/// OpenSSH client/server configs forward (`SendEnv LANG LC_*` /
|
||||
/// `AcceptEnv LANG LC_*`) so the signal survives the hop into a remote `grok`.
|
||||
/// `AcceptEnv LANG LC_*`) so the signal survives the hop into a remote `kigi`.
|
||||
pub fn osc52_sink_active() -> bool {
|
||||
static SINK: OnceLock<bool> = OnceLock::new();
|
||||
*SINK.get_or_init(|| {
|
||||
@@ -124,7 +124,7 @@ pub fn resolve_clipboard_route(ctx: &TerminalContext) -> ClipboardRoute {
|
||||
// Linux: always emit OSC 52 as a safety net. This matches other
|
||||
// terminal agent CLIs which emit OSC 52 on every copy.
|
||||
// macOS/Windows: only in tmux/SSH/container contexts, or when an
|
||||
// upstream `grok wrap` sink is capturing our output and will forward
|
||||
// upstream `kigi wrap` sink is capturing our output and will forward
|
||||
// the sequence to the real clipboard.
|
||||
osc52: cfg!(target_os = "linux")
|
||||
|| is_tmux
|
||||
|
||||
@@ -37,7 +37,7 @@ pub(crate) fn trusted_native(
|
||||
/// Normally this requires the detected terminal brand to natively apply OSC 52
|
||||
/// to the system pasteboard (fail closed). Two overrides widen the brand gate:
|
||||
///
|
||||
/// - `osc52_sink`: when `grok wrap` is capturing this process's output (see
|
||||
/// - `osc52_sink`: when `kigi wrap` is capturing this process's output (see
|
||||
/// [`super::osc52_sink_active`]) the escape sequence is intercepted upstream
|
||||
/// and copied to the *local* clipboard regardless of the (often misdetected,
|
||||
/// e.g. over SSH) inner terminal brand, so the copy is trusted.
|
||||
@@ -550,7 +550,7 @@ mod tests {
|
||||
);
|
||||
}
|
||||
|
||||
// `grok wrap` sink: a brand that does NOT natively support OSC 52 (the
|
||||
// `kigi wrap` sink: a brand that does NOT natively support OSC 52 (the
|
||||
// common SSH case where the inner terminal is misdetected as Vte/Unknown)
|
||||
// is still trusted when an upstream OSC 52 sink is capturing our output.
|
||||
#[test]
|
||||
@@ -665,7 +665,7 @@ mod tests {
|
||||
}
|
||||
|
||||
// Unknown brand over SSH (not container) keeps failing closed — the
|
||||
// container override is deliberately narrow; `grok wrap` is the SSH path.
|
||||
// container override is deliberately narrow; `kigi wrap` is the SSH path.
|
||||
#[test]
|
||||
fn ssh_unknown_brand_osc_only_still_fails() {
|
||||
let l = legs(true, false, false, false, true, "");
|
||||
|
||||
Reference in New Issue
Block a user