vex-adversarial 1.7.0

Adversarial (Red/Blue) agent pairing for VEX
Documentation

vex-adversarial

Adversarial (Red/Blue) agent pairing for the VEX Protocol.

Features

  • Shadow Agents - Monitor and challenge primary agent decisions
  • Debate System - Structured adversarial dialogues between agents
  • Consensus - Multi-agent agreement protocols

Installation

[dependencies]
vex-adversarial = "0.1"

Quick Start

use vex_adversarial::{ShadowAgent, Debate};
use vex_core::Agent;

#[tokio::main]
async fn main() {
    let primary = Agent::new("primary");
    let shadow = ShadowAgent::new("shadow", &primary);
    
    // Shadow agent monitors and challenges primary decisions
}

License

Apache-2.0 License - see LICENSE for details.