codetether-agent 4.7.0-a-002.2

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
fn allow_path(path) {
    if path.contains(".env") {
        return Ok(false)
    }

    if path.contains("id_rsa") {
        return Ok(false)
    }

    return Ok(true)
}

fn scan_text(text) {
    if text.contains("sk-") {
        return Err("possible API key detected")
    }

    if text.contains("BEGIN PRIVATE KEY") {
        return Err("private key detected")
    }

    return Ok("clean")
}