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.
···160160 console.error(`❌ Failed to migrate ${file}:`, err);
161161 }
162162 }
163163+164164+ // REPAIR STEP: Fix any 'unknown' records in SQLite that came from the broken schema migration
165165+ for (const mapping of config.mappings) {
166166+ dbService.repairUnknownIdentifiers(mapping.twitterUsername, mapping.bskyIdentifier);
167167+ }
168168+163169 console.log('✅ Migration complete.');
164170}
165171