Skip to content
Jammerware edited this page May 1, 2015 · 21 revisions

Welcome to MargieBot

MargieBot is a very simple bot framework for Slack, one of the coolest free chat and collaboration web applications in the history of time. MargieBot is written in C#.NET, and it's designed to make creating bots for Slack accessible to anyone who knows a little C# or VB and has a vision for fun and/or helpful bot interactions.

Programmer-intuitive

MargieBot is designed to be easy to understand, quick to get started with, and fun to use.

Bot myBot = new Bot("<your bot's slack API token>");
myBot.MessageReceived += (string message) => { Console.Debug.WriteLine(message); };

Flexible & Powerful

If you can write it in C# or VB, MargieBot can bring it to life in Slack. Want to call a coworker a scruffy-looking nerf-herder every time he says the phrase "technical debt" in a public channel, but only if it's at the bottom of the hour? MargieBot has your back.