Huginn is an open source system for building agents that automate tasks online: reading the web, watching for events, and acting on your behalf. Agents create and consume events and pass them along a directed graph, so the output of one agent becomes the input of the next. The project describes itself as a hackable version of IFTTT or Zapier that you run on your own server, so you control the data instead of a third party. It has been actively developed since well before either of those commercial services existed in their current form, and the agent graph model still underpins every workflow.
Each Agent either produces events, such as watching an RSS feed or a Twitter search term, consumes events, such as sending an email or posting to Slack, or both. Agents are wired together through a web UI, and Huginn runs scheduled checks in the background to move events through the graph you've built. Agents can also be published as separate Ruby gems using the huginn_agent tooling, which keeps the core project focused on general-purpose building blocks while specialized integrations live outside it.
The quickest path is the official Docker image, documented in doc/docker/install.md. For a local Rails setup, fork the repository, copy .env.example to .env, set APP_SECRET_TOKEN, install MySQL or PostgreSQL, run bundle to install dependencies, then run the database rake tasks (db:create, db:migrate, db:seed) before starting the app with bundle exec foreman start. That seeded database ships with example agents already configured, so a new install has something to inspect and modify instead of an empty dashboard. Deployment guides also cover Heroku (paid plan required) and OpenShift, and manual installation on any server is documented separately for teams that want to run Huginn outside of a managed platform. In development, outgoing email is intercepted and viewable at /letter_opener instead of actually being sent, which keeps local testing of email-based agents from spamming real inboxes.