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
pub(crate) fn render() -> String {
    let live_claim = super::claim::assess_claim("Argo validation");
    if !live_claim.needs_concrete_id {
        return String::new();
    }
    let recovery = super::recovery::recovery_for(&live_claim, true);
    let workflow = super::workflow::infer("Argo platform upload");
    format!(
        "\nRuntime classifier: {} claims need concrete IDs; recovery action: {recovery:?}; gate: {}.",
        live_claim.level.label(),
        workflow.required_gate(),
    )
}