A simple tool which lets you scrape twitter accounts and crosspost them to bluesky accounts! Comes with a CLI and a webapp for managing profiles! Works with images/videos/link embeds/threads.
13
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix: Correctly map user info and filter tweets by author to prevent crossposting mentions

jack b6ef9c0f 1a83f3f5

+8
+8
src/index.ts
··· 97 97 in_reply_to_status_id?: string; 98 98 in_reply_to_user_id_str?: string; 99 99 in_reply_to_user_id?: string; 100 + user?: { 101 + screen_name?: string; 102 + id_str?: string; 103 + }; 100 104 } 101 105 102 106 interface AspectRatio { ··· 254 258 in_reply_to_status_id_str: raw.in_reply_to_status_id_str, 255 259 // biome-ignore lint/suspicious/noExplicitAny: missing in LegacyTweetRaw type 256 260 in_reply_to_user_id_str: (raw as any).in_reply_to_user_id_str, 261 + user: { 262 + screen_name: scraperTweet.username, 263 + id_str: scraperTweet.userId, 264 + }, 257 265 }; 258 266 } 259 267