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).
197 lines
7.5 KiB
Rust
197 lines
7.5 KiB
Rust
//! Regression tests: a Anthropic Messages API `/v1/messages` stream that terminates with
|
|
//! `stop_reason: "refusal"` must complete the turn cleanly with EXACTLY ONE
|
|
//! inference request.
|
|
//!
|
|
//! Previously the unknown `stop_reason` failed the terminal `message_delta`
|
|
//! parse (discarding the fully-streamed response) and the resulting
|
|
//! serialization error was misclassified as a retryable stream error,
|
|
//! producing a ~10-minute retry storm per turn. Covered here end-to-end
|
|
//! through both the plain stdio agent and a leader-hosted session.
|
|
//!
|
|
//! Tests are `#[ignore]`d by default — they require a pre-built binary
|
|
//! (auto-built locally when missing):
|
|
//!
|
|
//! ```bash
|
|
//! cargo test -p kigi-shell --test test_refusal_stop_reason -- --ignored
|
|
//! ```
|
|
|
|
use std::future::Future;
|
|
|
|
use agent_client_protocol as acp;
|
|
use kigi_test_support::*;
|
|
|
|
/// Run an async test body inside a `LocalSet` (required by ACP's `!Send` futures).
|
|
async fn with_local_set<F, Fut>(f: F)
|
|
where
|
|
F: FnOnce() -> Fut,
|
|
Fut: Future<Output = ()>,
|
|
{
|
|
tokio::task::LocalSet::new().run_until(f()).await;
|
|
}
|
|
|
|
/// Mock with a single Anthropic-style model whose `/v1/messages` stream ends
|
|
/// with `stop_reason: "refusal"`.
|
|
async fn refusal_messages_server() -> MockInferenceServer {
|
|
let server = MockInferenceServer::start_with_models(vec![
|
|
MockModelEntry::new("messages-compatible-model").with_api_backend("messages"),
|
|
])
|
|
.await
|
|
.expect("start mock server");
|
|
server.set_messages_stop_reason("refusal");
|
|
server
|
|
}
|
|
|
|
/// `/v1/messages` requests belonging to the prompt turn. The session also
|
|
/// fires a one-shot title-generation call on the first user message; it is
|
|
/// identified (and excluded) by its forced `session_title` tool.
|
|
fn turn_messages_request_count(server: &MockInferenceServer) -> usize {
|
|
server
|
|
.requests()
|
|
.iter()
|
|
.filter(|e| e.path == "/v1/messages")
|
|
.filter(|e| {
|
|
!e.body.as_ref().is_some_and(|b| {
|
|
b.get("tools")
|
|
.and_then(|t| t.as_array())
|
|
.is_some_and(|tools| {
|
|
tools.iter().any(|t| {
|
|
t.get("name").and_then(|n| n.as_str()) == Some("session_title")
|
|
})
|
|
})
|
|
})
|
|
})
|
|
.count()
|
|
}
|
|
|
|
/// THE regression test: a refusal-terminated `/v1/messages` turn must return
|
|
/// a successful prompt response from exactly one inference request.
|
|
#[tokio::test]
|
|
#[ignore] // requires pre-built binary; run with --ignored
|
|
async fn test_refusal_turn_completes_with_single_messages_request() {
|
|
with_local_set(|| async {
|
|
let server = refusal_messages_server().await;
|
|
let workdir = git_workdir();
|
|
let client = GrokStdioClient::spawn(&server, workdir.path()).await;
|
|
|
|
client.initialize_with_timeout().await;
|
|
let session_id = client
|
|
.create_session_with_model_timeout(workdir.path(), "messages-compatible-model")
|
|
.await;
|
|
|
|
let result = client.prompt_with_timeout(&session_id, "say hello").await;
|
|
let response = result.unwrap_or_else(|e| {
|
|
panic!(
|
|
"refusal-terminated turn must complete, got error: {e:?}\nrequest log:\n{}\nstderr:\n{}",
|
|
server.request_log_summary(),
|
|
stderr_tail(&client.stderr(), 1200)
|
|
)
|
|
});
|
|
assert_eq!(
|
|
response.stop_reason,
|
|
acp::StopReason::EndTurn,
|
|
"refusal must end the turn cleanly"
|
|
);
|
|
assert!(
|
|
client.captured_text().contains("Echo:"),
|
|
"streamed response text must be delivered, got: {:?}",
|
|
client.captured_text()
|
|
);
|
|
assert_eq!(
|
|
turn_messages_request_count(&server),
|
|
1,
|
|
"exactly one turn request to /v1/messages (no retry storm)\nrequest log:\n{}",
|
|
server.request_log_summary()
|
|
);
|
|
assert!(
|
|
server.messages_request_count() <= 2,
|
|
"at most turn + title-generation requests\nrequest log:\n{}",
|
|
server.request_log_summary()
|
|
);
|
|
})
|
|
.await;
|
|
}
|
|
|
|
// ============================================================================
|
|
// Leader mode: the same refusal scenario through a leader-hosted session
|
|
// (client → stdio bridge → leader unix socket → leader-hosted agent).
|
|
// ============================================================================
|
|
|
|
#[cfg(unix)]
|
|
mod leader {
|
|
use std::time::Duration;
|
|
|
|
use agent_client_protocol as acp;
|
|
|
|
use kigi_test_support::leader::{LeaderStdioClient, wait_for_live_leader};
|
|
use kigi_test_support::*;
|
|
|
|
use super::{refusal_messages_server, turn_messages_request_count, with_local_set};
|
|
|
|
/// Leader-mode variant of the regression: the refusal-terminated turn
|
|
/// must complete cleanly (single request, prompt response delivered)
|
|
/// when the session is hosted by the leader IPC server.
|
|
#[tokio::test]
|
|
#[ignore] // requires pre-built binary; run with --ignored
|
|
async fn test_leader_refusal_turn_completes_with_single_messages_request() {
|
|
with_local_set(|| async {
|
|
let server = refusal_messages_server().await;
|
|
let workdir = git_workdir();
|
|
let home = tempfile::tempdir().unwrap();
|
|
std::fs::create_dir_all(home.path().join(".kigi")).unwrap();
|
|
|
|
let client = LeaderStdioClient::spawn(&server, workdir.path(), home.path()).await;
|
|
client.initialize().await;
|
|
let session_id = client
|
|
.create_session_with_model(workdir.path(), "messages-compatible-model")
|
|
.await;
|
|
|
|
let result = client.prompt(&session_id, "say hello").await;
|
|
|
|
// Prove the session is leader-hosted: a live leader process,
|
|
// distinct from the client subprocess, holds the lock.
|
|
let leader_pid = wait_for_live_leader(home.path(), Duration::from_secs(5))
|
|
.await
|
|
.unwrap_or_else(|| {
|
|
panic!(
|
|
"no live leader PID in lock file — turn did not run under the leader\nstderr:\n{}",
|
|
client.stderr_text()
|
|
)
|
|
});
|
|
assert_ne!(
|
|
Some(leader_pid),
|
|
client.child.id(),
|
|
"leader must be a separate process from the stdio client"
|
|
);
|
|
let response = result.unwrap_or_else(|e| {
|
|
panic!(
|
|
"leader-hosted refusal turn must complete, got error: {e:?}\nrequest log:\n{}\nstderr:\n{}",
|
|
server.request_log_summary(),
|
|
client.stderr_text()
|
|
)
|
|
});
|
|
assert_eq!(
|
|
response.stop_reason,
|
|
acp::StopReason::EndTurn,
|
|
"refusal must end the turn cleanly under the leader"
|
|
);
|
|
assert!(
|
|
client.captured_text().contains("Echo:"),
|
|
"streamed response text must reach the client through the leader, got: {:?}",
|
|
client.captured_text()
|
|
);
|
|
assert_eq!(
|
|
turn_messages_request_count(&server),
|
|
1,
|
|
"exactly one turn request to /v1/messages (no retry storm)\nrequest log:\n{}",
|
|
server.request_log_summary()
|
|
);
|
|
assert!(
|
|
server.messages_request_count() <= 2,
|
|
"at most turn + title-generation requests\nrequest log:\n{}",
|
|
server.request_log_summary()
|
|
);
|
|
})
|
|
.await;
|
|
}
|
|
}
|