Drafts for Bluesky.social ๐ฆ
Busqued is a tiny, fast web app for writing and saving Bluesky post drafts before you publish them. It looks and feels like the Bluesky app โ centered feed, post cards, a compose box with a live character ring โ and lets you post a draft straight to your account over the AT Protocol when you're ready.
๐ Live: https://davecaos.github.io/busqued/
- ๐ Draft management โ create, edit, and delete drafts; everything is saved locally in
localStorage(no backend, no account needed to start). - ๐ฆ Bluesky-style UI โ circular avatar, display name ยท
@handleยท timestamp, and edge-to-edge post cards in a centered feed. - โ๏ธ Composer with a live character ring โ a Bluesky-style circle that counts down the remaining characters (300 โ 0) as you type.
- ๐ Post to Bluesky โ sign in with your handle + an app password and publish a draft over the AT Protocol (
@atproto/api). Your session is persisted and restored on reload. - ๐ค Real profile โ once logged in, your actual avatar and display name appear on the cards and in the composer.
- ๐ Light / dark mode โ a sun/moon toggle with a Bluesky-accurate dark theme.
- ๐ฑ Responsive โ full-width edge-to-edge on phones and tablets, centered column on desktop.
- React 18 + TypeScript
- Vite 6 (build & dev server)
- Chakra UI v3 + next-themes for theming
- @atproto/api for Bluesky auth & posting (lazy-loaded)
- react-icons (Lucide set)
npm i
npm run dev # start the dev server
npm run dev -- --host # also expose it on your local networkThen open the printed URL (e.g. http://localhost:5173/busqued/).
| Command | What it does |
|---|---|
npm run dev |
Start the Vite dev server with HMR |
npm run build |
Type-check (tsc -b) and build to dist/ |
npm run preview |
Serve the production build locally |
npm run lint |
Run ESLint |
npm run format |
Format src/ with Prettier |
npm run deploy |
Build and publish dist/ to GitHub Pages |
- All drafts live in
localStorageunderbusqued.v0.1; the Bluesky session is stored underbusqued.bsky.session.v1. - Login uses Bluesky app passwords via
BskyAgentโ your main account password is never used. - The app is a single-page client deployed to GitHub Pages under the
/busqued/base path; there is no server.
Personal project โ use at your own risk.

