runx-contracts 0.6.19

Shared Rust contract types for runx JSON and host protocol boundaries.
Documentation
//! Review-receipt output contract: the diagnosis the managed reviewer produces
//! for the review-receipt skill, consumed by write-harness downstream.
//!
//! Identity is the legacy bare `runx.ai/schemas` `$id` (no `x-runx-schema`,
//! no `schema` discriminant). The document is open (`additionalProperties:
//! true`).
use serde::{Deserialize, Serialize};

use crate::schema::RunxSchema;

#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize, RunxSchema)]
#[serde(rename_all = "snake_case")]
pub enum ReviewReceiptVerdict {
    Pass,
    NeedsUpdate,
    Blocked,
}

/// A bounded improvement proposal. Open (`additionalProperties: true`).
#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize, RunxSchema)]
pub struct ReviewReceiptImprovementProposal {
    pub target: String,
    pub change: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub rationale: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub risk: Option<String>,
}

#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize, RunxSchema)]
#[runx_schema(spec_id = "https://runx.ai/schemas/review-receipt-output.schema.json")]
pub struct ReviewReceiptOutput {
    pub verdict: ReviewReceiptVerdict,
    pub failure_summary: String,
    pub improvement_proposals: Vec<ReviewReceiptImprovementProposal>,
    pub next_harness_checks: Vec<String>,
}