codetether-agent 4.7.0-a-002.2

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
const TEMPLATES: &[&str] = &[
    "live Argo proof requires app/job/pod identity plus success state",
    "Playwright proof requires command, exit state, and artifact path",
    "platform upload proof requires artifact path plus platform video ID",
    "DB migration proof requires environment, migration name, and row/query evidence",
    "deploy proof requires commit/image identity plus smoke-test evidence",
    "TetherScript parsers live at examples/tetherscript/evidence_ids.tether and evidence_argo.tether",
];

pub(crate) fn render() -> String {
    let mut out = String::from("Workflow evidence templates:");
    for template in TEMPLATES {
        out.push_str("\n- ");
        out.push_str(template);
    }
    out
}