Files
Kigi-CLI/crates/codegen/kigi-shell/build.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

167 lines
6.6 KiB
Rust

//! Build script for bundling ripgrep for the kigi-shell crate.
//!
//! - If `KIGI_SHELL_BUNDLE_RG_PATH` is set, always bundle it
//! - Otherwise, only bundle in release builds
use std::env;
use std::fs;
use std::io;
use std::path::{Path, PathBuf};
const RG_VER: &str = "15.0.0";
fn main() -> Result<(), Box<dyn std::error::Error>> {
// Only bundle in release builds to avoid slowing down cargo check.
println!("cargo:rerun-if-env-changed=KIGI_SHELL_BUNDLE_RG_PATH");
println!("cargo:rerun-if-env-changed=KIGI_SHELL_RG_DOWNLOAD_BASE");
// Declare our custom cfg to the compiler so cfg(bundle_rg) is recognized by lints
println!("cargo:rustc-check-cfg=cfg(bundle_rg)");
// Decide whether to bundle: path override OR release build. Bail before
// touching the filesystem so debug `cargo check` needs no environment.
let path_override = env::var("KIGI_SHELL_BUNDLE_RG_PATH").ok();
let is_release = env::var("PROFILE").as_deref() == Ok("release");
if path_override.is_none() && !is_release {
return Ok(());
}
// In Bazel builds, write into OUT_DIR (which is writable) rather than
// XAI_ROOT/target/tmp (which is read-only inside the sandbox). Outside
// Bazel, prefer XAI_ROOT's shared cache dir (monorepo behavior) and fall
// back to OUT_DIR for standalone checkouts where XAI_ROOT is not a thing.
let manifest_dir = PathBuf::from(env::var("CARGO_MANIFEST_DIR")?);
let in_bazel = is_bazel_build(&manifest_dir);
let gen_dir = if in_bazel {
// OUT_DIR is always set by Cargo/Bazel for build scripts.
PathBuf::from(env::var("OUT_DIR")?)
} else if let Ok(xai_root) = env::var("XAI_ROOT") {
PathBuf::from(xai_root).join("target/tmp/kigi-shell-bundle-rg")
} else {
PathBuf::from(env::var("OUT_DIR")?)
};
fs::create_dir_all(&gen_dir)?;
// Skip auto-bundling on Windows: ripgrep ships .zip there (not .tar.gz)
// and we do not yet have a zip-extraction path. Returning here BEFORE
// emitting `cargo:rustc-cfg=bundle_rg` keeps the include_bytes! macros
// gated on cfg(bundle_rg) compiled-out, so the runtime falls back to
// `rg` on PATH (see src/util/ripgrep.rs::rg_path). Users install via
// `winget install BurntSushi.ripgrep.MSVC` or `scoop install ripgrep`.
// An explicit KIGI_SHELL_BUNDLE_RG_PATH still bundles on Windows (the
// override path below copies any binary regardless of target).
let target_os = env::var("CARGO_CFG_TARGET_OS").unwrap_or_default();
if target_os == "windows" && path_override.is_none() {
return Ok(());
}
// Expose cfg so the crate can include the bundled bytes.
println!("cargo:rustc-cfg=bundle_rg");
println!("cargo:rustc-env=KIGI_SHELL_RG_VER={}", RG_VER);
println!(
"cargo:rustc-env=KIGI_SHELL_RG_GEN_DIR={}",
gen_dir.display()
);
// If a local rg binary is provided, copy it directly (skips target check).
if let Some(path) = path_override {
let dest = gen_dir.join(format!("rg-{}-override.bin", RG_VER));
println!("cargo:rustc-env=KIGI_SHELL_RG_TARGET=override");
let _ = fs::remove_file(&dest);
fs::copy(PathBuf::from(path.clone()), &dest).map_err(|e| {
format!(
"Failed copying KIGI_SHELL_BUNDLE_RG_PATH: {e} from path {path} to dest {}",
dest.display()
)
})?;
return Ok(());
}
// Determine supported ripgrep asset triple for auto-download.
let target_arch = env::var("CARGO_CFG_TARGET_ARCH").unwrap_or_default();
let asset_triple = match (target_os.as_str(), target_arch.as_str()) {
("macos", "aarch64") => "aarch64-apple-darwin",
("macos", "x86_64") => "x86_64-apple-darwin",
("linux", "x86_64") => "x86_64-unknown-linux-musl",
("linux", "aarch64") => "aarch64-unknown-linux-gnu",
_ => {
return Err(format!(
"Unsupported target for ripgrep bundling: {os}-{arch}. Set KIGI_SHELL_BUNDLE_RG_PATH to a local rg binary for offline or unsupported builds.",
os = target_os,
arch = target_arch
).into());
}
};
println!("cargo:rustc-env=KIGI_SHELL_RG_TARGET={}", asset_triple);
let dest = gen_dir.join(format!("rg-{}-{}.bin", RG_VER, asset_triple));
let _ = fs::remove_file(&dest);
// Download base is overridable so sandboxed/offline CI can point at an
// internal mirror (e.g. KIGI_SHELL_RG_DOWNLOAD_BASE=http://<mirror>/github/
// BurntSushi/ripgrep/releases/download). Defaults to the public GitHub
// releases URL.
let download_base = env::var("KIGI_SHELL_RG_DOWNLOAD_BASE")
.unwrap_or_else(|_| "https://github.com/BurntSushi/ripgrep/releases/download".to_string());
let url = format!(
"{base}/{v}/ripgrep-{v}-{t}.tar.gz",
base = download_base.trim_end_matches('/'),
v = RG_VER,
t = asset_triple
);
let bytes: Vec<u8> = {
let resp = reqwest::blocking::get(&url).map_err(|e| {
format!(
"Failed to download ripgrep: {}\nSet KIGI_SHELL_BUNDLE_RG_PATH to a local rg for offline builds.",
e
)
})?;
if !resp.status().is_success() {
return Err(format!(
"HTTP {} downloading ripgrep. Set KIGI_SHELL_BUNDLE_RG_PATH for offline builds.",
resp.status()
)
.into());
}
resp.bytes()?.to_vec()
};
let gz = flate2::read::GzDecoder::new(&bytes[..]);
let mut ar = tar::Archive::new(gz);
let mut found = false;
for entry in ar.entries()? {
let mut e = entry?;
let p = e.path()?;
if p.file_name().is_some_and(|n| n == "rg") {
let data: Vec<u8> = {
let mut v = Vec::new();
io::copy(&mut e, &mut v)?;
v
};
fs::write(&dest, &data)?;
found = true;
break;
}
}
if !found {
return Err(format!(
"Could not find 'rg' in ripgrep archive {}. Set KIGI_SHELL_BUNDLE_RG_PATH for offline builds.",
url
)
.into());
}
Ok(())
}
fn is_bazel_build(manifest_dir: &Path) -> bool {
let manifest_dir_str = manifest_dir.to_string_lossy();
env::var_os("BAZEL_WORKSPACE").is_some()
|| env::var_os("BUILD_WORKSPACE_DIRECTORY").is_some()
|| env::var_os("BAZEL_EXECUTION_ROOT").is_some()
|| env::var_os("BAZEL_OUTPUT_BASE").is_some()
|| manifest_dir_str.contains("/execroot/")
|| manifest_dir_str.contains("/bazel-out/")
}