§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:
@@ -1,4 +1,4 @@
|
||||
//! `grok completions <shell>` — generate shell completion scripts.
|
||||
//! `kigi completions <shell>` — generate shell completion scripts.
|
||||
//!
|
||||
//! Used by the installers and npm postinstall; must stay side-effect free
|
||||
//! (no network, auth, tracing, or tokio).
|
||||
@@ -10,16 +10,16 @@ use crate::app::PagerArgs;
|
||||
|
||||
/// Generate and print the completion script for the given shell.
|
||||
pub fn run(shell: Shell) {
|
||||
// Ensure the script always uses the public "grok" name (matches historical
|
||||
// Ensure the script always uses the public "kigi" name (matches historical
|
||||
// behavior and what the installers + docs expect).
|
||||
let mut cmd = PagerArgs::command().name("grok");
|
||||
let mut cmd = PagerArgs::command().name("kigi");
|
||||
if shell != Shell::Zsh {
|
||||
generate(shell, &mut cmd, "grok", &mut std::io::stdout());
|
||||
generate(shell, &mut cmd, "kigi", &mut std::io::stdout());
|
||||
return;
|
||||
}
|
||||
// zsh needs post-processing (see fix_zsh_root_prompt_positional).
|
||||
let mut buf = Vec::new();
|
||||
generate(shell, &mut cmd, "grok", &mut buf);
|
||||
generate(shell, &mut cmd, "kigi", &mut buf);
|
||||
match String::from_utf8(buf) {
|
||||
Ok(script) => print!("{}", fix_zsh_root_prompt_positional(&script)),
|
||||
// clap_complete output is generated from Rust strings, so this arm is
|
||||
@@ -39,7 +39,7 @@ pub fn run(shell: Shell) {
|
||||
/// The generated root `_arguments` spec emits a `'::prompt …'` slot before
|
||||
/// the subcommand slot but dispatches subcommands with `case $line[2]`. zsh
|
||||
/// assigns the typed subcommand to the *prompt* slot (`$line[1]`), leaves
|
||||
/// `$line[2]` empty, and the dispatch falls through — so `grok worktree <TAB>`
|
||||
/// `$line[2]` empty, and the dispatch falls through — so `kigi worktree <TAB>`
|
||||
/// re-offers every top-level command. (`hide = true` on the positional does
|
||||
/// not change the generated script.)
|
||||
///
|
||||
@@ -64,8 +64,8 @@ fn fix_zsh_root_prompt_positional(script: &str) -> String {
|
||||
r#"words=($line[1] "${words[@]}")"#,
|
||||
),
|
||||
(
|
||||
r#"curcontext="${curcontext%:*:*}:grok-command-$line[2]:""#,
|
||||
r#"curcontext="${curcontext%:*:*}:grok-command-$line[1]:""#,
|
||||
r#"curcontext="${curcontext%:*:*}:kigi-command-$line[2]:""#,
|
||||
r#"curcontext="${curcontext%:*:*}:kigi-command-$line[1]:""#,
|
||||
),
|
||||
(r#"case $line[2] in"#, r#"case $line[1] in"#),
|
||||
] {
|
||||
@@ -80,15 +80,15 @@ mod tests {
|
||||
|
||||
/// Generate the zsh completion script exactly like `run` does.
|
||||
fn zsh_script() -> String {
|
||||
let mut cmd = PagerArgs::command().name("grok");
|
||||
let mut cmd = PagerArgs::command().name("kigi");
|
||||
let mut buf = Vec::new();
|
||||
generate(Shell::Zsh, &mut cmd, "grok", &mut buf);
|
||||
generate(Shell::Zsh, &mut cmd, "kigi", &mut buf);
|
||||
String::from_utf8(buf).expect("completion script is UTF-8")
|
||||
}
|
||||
|
||||
// The optional `[PROMPT]` positional (app/cli.rs) makes clap_complete emit
|
||||
// a `::prompt` slot before the subcommand slot and dispatch on `$line[2]`,
|
||||
// so `grok worktree <TAB>` re-offered every top-level command (upstream
|
||||
// so `kigi worktree <TAB>` re-offered every top-level command (upstream
|
||||
// clap-rs/clap#6282).
|
||||
#[test]
|
||||
fn zsh_completions_drop_prompt_slot_and_dispatch_on_line_1() {
|
||||
@@ -112,15 +112,15 @@ mod tests {
|
||||
"root dispatch must be shifted to $line[1]"
|
||||
);
|
||||
assert!(
|
||||
fixed.contains(r#"curcontext="${curcontext%:*:*}:grok-command-$line[1]:""#),
|
||||
fixed.contains(r#"curcontext="${curcontext%:*:*}:kigi-command-$line[1]:""#),
|
||||
"root dispatch context must use $line[1]"
|
||||
);
|
||||
// Subcommand dispatch blocks (already on $line[1]) must survive.
|
||||
assert!(
|
||||
fixed.contains("grok-worktree-command-$line[1]"),
|
||||
fixed.contains("kigi-worktree-command-$line[1]"),
|
||||
"nested subcommand dispatch must be untouched"
|
||||
);
|
||||
// The subcommand list itself must still be offered at the root.
|
||||
assert!(fixed.contains("_grok_commands"), "root command list intact");
|
||||
assert!(fixed.contains("_kigi_commands"), "root command list intact");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user