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.
124 lines
3.6 KiB
Rust
124 lines
3.6 KiB
Rust
//! Hooks and plugins tracing target and optional file-based logging layer.
|
|
//!
|
|
//! A dedicated tracing target for hooks and plugins subsystems with an optional
|
|
//! file logger that writes to `~/.kigi/logs/hooks.log`.
|
|
//!
|
|
//! ## When to use
|
|
//!
|
|
//! Use regular `tracing::info!` / `tracing::debug!` / `tracing::warn!` with
|
|
//! targets `kigi_hooks` or `kigi_agent::plugins` at key lifecycle
|
|
//! points — discovery, dispatch, execution, errors.
|
|
//!
|
|
//! ## Enabling
|
|
//!
|
|
//! ```bash
|
|
//! KIGI_HOOKS_LOG=1 kigi # enable, write to ~/.kigi/logs/hooks.log
|
|
//! KIGI_HOOKS_LOG=/tmp/h.log kigi # write to custom path
|
|
//! KIGI_HOOKS_LOG=0 kigi # explicitly disable
|
|
//! tail -f ~/.kigi/logs/hooks.log # watch in another terminal
|
|
//! ```
|
|
|
|
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 kigi_config::kigi_home;
|
|
|
|
const ENV_HOOKS_LOG: &str = "KIGI_HOOKS_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 hooks/plugins log layer.
|
|
///
|
|
/// Writes to `~/.kigi/logs/hooks.log` (or custom path via `KIGI_HOOKS_LOG`).
|
|
/// Filters to hooks (`kigi_hooks`) and plugins (`kigi_agent::plugins`) targets.
|
|
/// Set `KIGI_HOOKS_LOG=0` to disable, `KIGI_HOOKS_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!("[hooks-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);
|
|
}
|
|
|
|
// Filter for both hooks and plugins targets at debug level
|
|
let filter =
|
|
tracing_subscriber::filter::EnvFilter::new("kigi_hooks=debug,kigi_agent::plugins=debug");
|
|
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!(
|
|
"[hooks-log] Hooks/plugins logging enabled: {}",
|
|
path.display()
|
|
);
|
|
Some(fmt_layer)
|
|
}
|
|
|
|
fn resolve_log_path() -> Option<PathBuf> {
|
|
let default_path = || kigi_home().join("logs").join("hooks.log");
|
|
let raw = match std::env::var(ENV_HOOKS_LOG) {
|
|
Ok(val) => val,
|
|
Err(_) => return None, // opt-in only
|
|
};
|
|
let raw = raw.trim();
|
|
match raw {
|
|
"" | "0" | "false" | "off" | "no" => None,
|
|
"1" | "true" | "on" | "yes" => Some(default_path()),
|
|
other => Some(PathBuf::from(other)),
|
|
}
|
|
}
|