A framework for building bots on Bluesky.
npm install @skyware/bot
import { Bot } from "@skyware/bot";
const bot = new Bot();
await bot.login({ identifier: "···", password: "···" });
bot.on("reply", async (post) => {
await post.reply({ text: "Thanks for replying to my post!" });
await post.like();
await post.author.follow();
})