2025-03-30 00:14

Automating Personal Workflows with Autokitteh

I wanted to build some workflow automation for various tasks I do often (like coming across a link that I want to share with my work after writing a little introduction message). I knew it would need to be flexible and customizable, so I wanted something I could run myself and control every aspect of.

After doing lots of investigation (primarily via the awesome-workflow-engines list), I settled on Autokitteh. It has all the features I care about:

  • Self-hosted (no SaaS)
  • Workflows can be defined and managed in plain text (so they can be versioned)
    • This eliminated most of the IFTTT and Zapier clones like Automatisch
  • Workflows can be written in Python
  • Pre-created integrations for services I use (for this purpose, mainly Slack and Todoist)
  • No "open-core" feature paywalls

The thing I liked most about it is how the workflow definitions let you set up integrations and provide them to the workflow code, so you can use the integrations in any way you can imagine instead of just the ways that come predefined. It also allows you to trivially mix and match integrations, so I can (for instance) take a Slack message and create a Todoist task from it just by smushing the two APIs together.

Read on to learn how I set everything up.

Server Installation

Autokitteh has several ways to run the backend service. I was able to experiment a bit with "Dev" mode running on my laptop, but for running unattended workflows I wanted something slightly more sturdy.

I took the docker-compose configuration Autokitteh provides and whipped up a quick Helm chart to run it. I also had to create and publish a Docker image so the Helm chart had something to pull (since the docker-compose file builds the image from a Dockerfile live).

Once I had that Helm chart created, I added it to my ArgoCD setup for my homelab and it was off to the races!

Note that the Helm chart only supports "Dev" mode right now. I'll circle back and set up the dependencies properly so it has persistence and separate PostgreSQL and Redis and Temporal instances instead of running everything in-process, but I wanted to get started quickly so I built the smallest thing I could.

Client Setup

I downloaded the ak binary from its repo and configured it to point to my server:

ak config set http.service_url https://<my-server-hostname>

Then I was able to use ak deploy --manifest <example> to deploy the example projects that Autokitteh provides. I started with the Slack project just to get a feel for how it would work. The Slack integration setup docs were straightforward and easy to follow, and in no time I had a workflow up and running that could handle slash commands and mentions!

(Note that I had to add the Slack environment variables to the backend service instead of specifying them in the config file; this is why the Helm chart I created supports a envFrom parameter in its values file.)

I also created a Makefile to help me remember how to deploy my changes:

AK=~/.local/bin/ak

# example: `make deploy-example-slack`

deploy-%:
        $(AK) deploy --manifest $*/autokitteh.yaml

And for my reference, here's how to write workflows in Python.

Workflow Ideas

I have so many workflows I want to build, I can't wait to get started:

  • Add a new link as a bookmark (in case I want to reference it later)
  • Add a new link to read later
    • This would leverage another service I wrote that downloads the plain text of the article, creates a summary, and generates a RSS feed with that summary and an estimate of the reading time that I subscribe to in Feedly
  • Add a new podcast episode I'm not subscribed to
    • Go grab the MP3 with yt-dlp and put it in a Syncthing directory my podcast app is watching

And I'm sure I'll think of more as time goes on. I'm really excited to work with this tool and I look forward to figuring out everything it can do.

Comments