An extensible chatbot written in rust.
The construction is inspired by Hubot's extensibility. There is an ever-growing list of service adapters and message handlers as part of the project.
To get started, you might make a main
function that looks like the following.
Once you get that running, check out the documentation to add more packaged
message handlers or write your own.
```rust extern crate chatbot;
use chatbot::Chatbot; use chatbot::adapter::CliAdapter; use chatbot::handler::EchoHandler;
fn main() { let mut bot = Chatbot::new();
bot.add_adapter(Box::new(CliAdapter::new()));
bot.add_handler(Box::new(EchoHandler::new()));
bot.run();
} ```
My immediate priority list looks something like the following.
RobotBrain
trait a RedisBrain
implementation, and some sort of
structured text (json/toml/yaml? tbd). The brain will be passed into to the
handlers' handle
method.There are some other miscellaneous items in the issue tracker as well.
I can imagine a time when the handlers should get moved out into their own repository so their development can continue independently. The API needs to stabilize before that's possible.
Contributions are very welcome on this project. To get started, fork the repo
and clone it locally. You should be able to just do cargo run
(assuming you're
on the nightlies) and get a working echo handler on the command line. If you
want to run the test program using the Slack adapter, do
cargo run -- --adapter slack
.