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.
128 lines
3.9 KiB
Rust
128 lines
3.9 KiB
Rust
//! Memory system tracing target and optional file-based logging layer.
|
|
//!
|
|
//! Provides a dedicated tracing target (`xai_memory`) with an optional
|
|
//! file logger that writes to `~/.kigi/logs/memory.log`.
|
|
//!
|
|
//! ## When to use
|
|
//!
|
|
//! Use `tracing::info!(target: memory_log::TARGET, ...)` at memory system
|
|
//! lifecycle points — config resolution, storage init, flush, search, etc.
|
|
//! These events are always emitted (zero cost when the layer is absent).
|
|
//!
|
|
//! ## Enabling (debug builds)
|
|
//!
|
|
//! ```bash
|
|
//! # build with memory logging enabled, then:
|
|
//! KIGI_MEMORY_LOG=0 kigi # disable even when enabled
|
|
//! tail -f ~/.kigi/logs/memory.log # watch in another terminal
|
|
//! ```
|
|
|
|
/// Tracing target for all memory system operations.
|
|
pub const TARGET: &str = "xai_memory";
|
|
|
|
#[cfg(feature = "memory-log")]
|
|
mod inner {
|
|
use std::fmt;
|
|
use std::path::PathBuf;
|
|
use std::sync::Mutex;
|
|
use std::time::Instant;
|
|
|
|
use tracing::Subscriber;
|
|
use tracing_subscriber::fmt::format::Writer;
|
|
use tracing_subscriber::fmt::time::FormatTime;
|
|
use tracing_subscriber::fmt::writer::BoxMakeWriter;
|
|
use tracing_subscriber::layer::Layer;
|
|
use tracing_subscriber::registry::LookupSpan;
|
|
|
|
use super::TARGET;
|
|
use kigi_config::kigi_home;
|
|
|
|
const ENV_MEMORY_LOG: &str = "KIGI_MEMORY_LOG";
|
|
|
|
static LOG_GUARD: std::sync::OnceLock<
|
|
Mutex<Option<tracing_appender::non_blocking::WorkerGuard>>,
|
|
> = std::sync::OnceLock::new();
|
|
|
|
#[derive(Clone)]
|
|
struct UptimeTimer {
|
|
epoch: Instant,
|
|
}
|
|
|
|
impl UptimeTimer {
|
|
fn new() -> Self {
|
|
Self {
|
|
epoch: Instant::now(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl FormatTime for UptimeTimer {
|
|
fn format_time(&self, w: &mut Writer<'_>) -> fmt::Result {
|
|
let elapsed = self.epoch.elapsed();
|
|
write!(w, "+{}.{:03}s", elapsed.as_secs(), elapsed.subsec_millis())
|
|
}
|
|
}
|
|
|
|
/// Build the memory log layer.
|
|
///
|
|
/// Writes to `~/.kigi/logs/memory.log`. Filters to `xai_memory=trace`.
|
|
/// Set `KIGI_MEMORY_LOG=0` to disable, `KIGI_MEMORY_LOG=/path` to redirect.
|
|
pub fn layer<S>() -> Option<impl Layer<S>>
|
|
where
|
|
S: Subscriber + for<'span> LookupSpan<'span>,
|
|
{
|
|
let path = resolve_log_path()?;
|
|
|
|
if let Some(parent) = path.parent() {
|
|
let _ = std::fs::create_dir_all(parent);
|
|
}
|
|
|
|
let file = match std::fs::OpenOptions::new()
|
|
.create(true)
|
|
.append(true)
|
|
.open(&path)
|
|
{
|
|
Ok(f) => f,
|
|
Err(e) => {
|
|
tracing::warn!("[memory-log] Failed to open {:?}: {}", path, e);
|
|
return None;
|
|
}
|
|
};
|
|
|
|
let (non_blocking, guard) = tracing_appender::non_blocking(file);
|
|
let guard_slot = LOG_GUARD.get_or_init(|| Mutex::new(None));
|
|
if let Ok(mut slot) = guard_slot.lock() {
|
|
*slot = Some(guard);
|
|
}
|
|
|
|
let filter = tracing_subscriber::filter::EnvFilter::new(format!("{TARGET}=trace"));
|
|
let fmt_layer = tracing_subscriber::fmt::layer()
|
|
.with_target(true)
|
|
.with_ansi(false)
|
|
.with_thread_ids(true)
|
|
.with_timer(UptimeTimer::new())
|
|
.with_writer(BoxMakeWriter::new(non_blocking))
|
|
.with_filter(filter);
|
|
|
|
tracing::info!("[memory-log] Memory logging enabled");
|
|
Some(fmt_layer)
|
|
}
|
|
|
|
fn resolve_log_path() -> Option<PathBuf> {
|
|
let default_path = || kigi_home().join("logs").join("memory.log");
|
|
let raw = match std::env::var(ENV_MEMORY_LOG) {
|
|
Ok(val) => val,
|
|
Err(_) => return Some(default_path()),
|
|
};
|
|
let raw = raw.trim();
|
|
match raw {
|
|
"" | "0" | "false" | "off" | "no" => None,
|
|
"1" | "true" | "on" | "yes" => Some(default_path()),
|
|
path => Some(PathBuf::from(path)),
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "memory-log")]
|
|
pub use inner::layer;
|