kwaak 0.16.2

Run a team of autonomous agents on your code, right from your terminal
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Kwaak uses a command pattern to handle the backend asynchroniously.
mod command;
mod handler;
mod responder;

pub use command::{Command, CommandEvent, CommandEventBuilder, CommandEventBuilderError};
pub use handler::CommandHandler;
pub use responder::{CommandResponse, DebugResponder, Responder};

#[cfg(test)]
pub use responder::MockResponder;