customisable clippy bot for mastodon
Go to file
2024-08-10 12:19:11 +10:00
index.js add some more options 2024-08-10 12:09:36 +10:00
LICENSE Initial commit 2021-05-15 14:42:51 +10:00
mastodon-clippy.service.example first code commit 2021-05-15 15:03:59 +10:00
package-lock.json Bump ws from 7.5.2 to 7.5.10 2024-06-29 02:12:09 +00:00
package.json update readme and deps 2024-08-10 11:44:48 +10:00
README.md Merge branch 'main' into update 2024-08-10 12:18:25 +10:00

mastodon-clippy

A customisable nodejs clippy bot for mastodon.

mastodon-clippy notices when you are tooting about a topic that is bad for your health, and gently suggests you stop.

See an example in action at auspol_clippy.

configuration

mastodon-clippy takes all configuration as ENV variables:

  • CLIPPY_TOPIC is the topic your clippy bot makes suggestions for. e.g. "auspol".
  • CLIPPY_DOMAIN is the base domain for the Mastodon server your bot runs on without a protocol. e.g. "botsin.space"
  • CLIPPY_USER is the username of the bot, e.g. "auspol_clippy".
  • CLIPPY_ACCESS_TOKEN is the API access token for your bot.

auto-config

Some settings for your bot account will be automatically set/overridden whenever the bot starts. These are:

locked: false,
bot: true,
discoverable: true,
source: { privacy: 'private' }

That is, your bot must always:

  • accept new followers
  • declare it is a bot
  • be discoverable on the server suggestions page
  • post messages in "followers only" mode

manual config

It does not appear to be possible to use the API to set accounts to hide their social graph. users should be able to use your bot without other people necessarily knowing, but the bot needs to follow them in order to work. Therefore you should manually select Hide your network in https://example.com/settings/preferences/other.

setup

You can use the example systemd file at mastodon-clippy.service.example tweaked to suit your setup. This will keep the bot running and set your environment variables as above.

Then run npm install . to install npm modules axios and ws.

running

Start the bot with the traditional node index.js.

However, you probably want this to run automatically on a web server. You can do this with systemd using the example unit file: mastodon-clippy.service.example. Adjust this for your user and paths, and then activate it:

sudo cp mastodon-clippy.service.example /etc/systemd/system/mastodon-clippy.service
sudo systemctl enable mastodon-clippy.service
sudo systemctl start mastodon-clippy service

interacting with the bot

To "sign up" for notification from your bot, users have two options:

  1. follow the bot account
  2. send a toot to the bot with the word START in capital letters. e.g. @auspol_clippy START

To "unsubscribe" from the bot, users can send a toot with the word STOP in capital letters. e.g. @auspol_clippy STOP