codetether-agent 4.7.0-a-002.4

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Serialize, Deserialize)]
pub(crate) struct EvidenceRecord {
    pub kind: String,
    pub level: String,
    pub value: String,
}

impl EvidenceRecord {
    pub(crate) fn new(kind: &str, level: &str, value: impl Into<String>) -> Self {
        Self {
            kind: kind.to_string(),
            level: level.to_string(),
            value: value.into(),
        }
    }
}