← ClaudeAtlas

bluesky-researchlisted

Researches Bluesky profiles, posts, follower/follows graphs, account search, and trending topics via the Crawlora API, returning clean JSON. Use when the user wants a Bluesky account's stats, a post's thread/engagement, a Bluesky account search, or what's trending on Bluesky — instead of scraping the app or the AT Protocol API directly.
Crawlora-org/crawlora-skills · ★ 0 · Data & Documents · score 72
Install: claude install-skill Crawlora-org/crawlora-skills
# Bluesky research Look up public Bluesky profiles, author feeds, post threads, follower/follows graphs, account search, and trending topics — all as normalized JSON from the Crawlora API, no app scraping or direct AT Protocol client needed. ## When to use this skill - "What's <handle>'s profile / follower count on Bluesky?" - "Pull <handle>'s recent posts on Bluesky." - "Show this Bluesky post's replies / thread." - "Who follows <handle> on Bluesky?" / "Who does <handle> follow?" - "Search Bluesky for accounts about <topic>." - "What's trending on Bluesky right now?" ## Setup (one-time) - Get a free Crawlora API key (2,000 credits/mo, no card) at [https://crawlora.net](https://crawlora.net?utm_source=github&utm_medium=referral&utm_campaign=crawlora-skills). - `export CRAWLORA_API_KEY=sk_your_key_here` - All requests: `x-api-key: $CRAWLORA_API_KEY` against `https://api.crawlora.net/api/v1`. Missing/invalid key → `401`. ## How it works Pick the job: 1. **Profile** — `/bluesky/profile` (`actor` = handle or DID). Display name, description, avatar/banner, follower/follows/posts counts. 2. **Author feed** — `/bluesky/author-feed` (`actor`, optional `cursor`, `limit`). A page of an account's posts, newest first, with engagement counts and any attached images/link card/quoted post. 3. **Post thread** — `/bluesky/post-thread` (`uri` = the post's `at://` URI, optional `depth`). The post plus its nested replies and, if it's a reply, its parent chain. 4. **Follo