skyware-js / bot

A framework for building bots on Bluesky.
Mozilla Public License 2.0
27 stars 5 forks source link
Skyware # @skyware/bot

A framework for building bots on Bluesky.

Documentation

Features

Installation

npm install @skyware/bot

Example Usage

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();
})