bsky follow audit script
1# Swab
2
3tiny script to audit who you're following based on when they recently posted and then unfollows those accounts
4
5## How to use
6
71. make copy of .env file and fill in values
8
9```bash
10cp .env.example .env
11```
12
132. run audit script to find people you follow that match criteria
14
15```bash
16bun run audit
17```
18
19this will create a ``follow.json`` in the root of the project
20
213. run unfollow script to unfollow accounts
22
23```bash
24bun run unfollow
25```