kaizen-cli 0.1.35

Distributable agent observability: real-time-tailable sessions, agile-style retros, and repo-level improvement (Cursor, Claude Code, Codex). SQLite, redact before any sync you enable.
Documentation
// SPDX-License-Identifier: AGPL-3.0-or-later
//! Redacted batch payload shared by Kaizen sync POST and pluggable exporter fan-out.

use crate::feedback::types::FeedbackRecord;
use crate::sync::outbound::EventsBatchBody;
use crate::sync::smart::{RepoSnapshotsBatchBody, ToolSpansBatchBody, WorkspaceFactsBatchBody};

#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
pub struct SessionEvalsBatchBody {
    pub evals: Vec<crate::eval::types::EvalRow>,
}

#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
pub struct SessionFeedbackBatchBody {
    pub feedback: Vec<FeedbackRecord>,
}

/// Same JSON bodies as the ingest API; used for both primary sync and optional exporters.
#[derive(Debug, Clone)]
pub enum IngestExportBatch {
    Events(EventsBatchBody),
    ToolSpans(ToolSpansBatchBody),
    RepoSnapshots(RepoSnapshotsBatchBody),
    WorkspaceFacts(WorkspaceFactsBatchBody),
    SessionEvals(SessionEvalsBatchBody),
    SessionFeedback(SessionFeedbackBatchBody),
}

impl IngestExportBatch {
    pub fn kind_name(&self) -> &'static str {
        match self {
            IngestExportBatch::Events(_) => "events",
            IngestExportBatch::ToolSpans(_) => "tool_spans",
            IngestExportBatch::RepoSnapshots(_) => "repo_snapshots",
            IngestExportBatch::WorkspaceFacts(_) => "workspace_facts",
            IngestExportBatch::SessionEvals(_) => "session_evals",
            IngestExportBatch::SessionFeedback(_) => "session_feedback",
        }
    }

    pub fn item_count(&self) -> usize {
        match self {
            IngestExportBatch::Events(b) => b.events.len(),
            IngestExportBatch::ToolSpans(b) => b.spans.len(),
            IngestExportBatch::RepoSnapshots(b) => b.snapshots.len(),
            IngestExportBatch::WorkspaceFacts(b) => b.facts.len(),
            IngestExportBatch::SessionEvals(b) => b.evals.len(),
            IngestExportBatch::SessionFeedback(b) => b.feedback.len(),
        }
    }
}