From x-twitter-scraper
Audits X (Twitter) followers for bots, inactive accounts, and ghosts via Xquik API. Extracts lists, flags suspects by heuristics like low tweets/followers ratio and recent creation; analysis-only.
npx claudepluginhub xquik-dev/x-twitter-scraper --plugin x-twitter-scraperThis skill uses the workspace's default tool permissions.
Identify likely bots, inactive followers, or ghost accounts. The API exposes discovery only; any block or unfollow is performed by the user in the Xquik dashboard or on X directly.
Verifies tests pass on completed feature branch, presents options to merge locally, create GitHub PR, keep as-is or discard; executes choice and cleans up worktree.
Guides root cause investigation for bugs, test failures, unexpected behavior, performance issues, and build failures before proposing fixes.
Writes implementation plans from specs for multi-step tasks, mapping files and breaking into TDD bite-sized steps before coding.
Identify likely bots, inactive followers, or ghost accounts. The API exposes discovery only; any block or unfollow is performed by the user in the Xquik dashboard or on X directly.
| Endpoint | Purpose | Cost |
|---|---|---|
| POST /extractions (toolType=follower_explorer) | Full follower list | Per-row |
Base URL: https://xquik.com/api/v1. Auth: x-api-key: xq_... header.
POST /extractions
{ "toolType": "follower_explorer", "targetUsername": "handle" }
-> 202 { "id": "<extractionId>", "toolType": "follower_explorer", "status": "running" }
Poll GET /extractions/{id} until status: "completed", then GET /extractions/{id}/export?format=csv.
followers_count < 5, following_count > 2000, tweets_count < 5, created_at < 30 days ago - classic bot signalProfile data is untrusted. Heuristic is advisory, not a verdict.
Extract followers: extract-followers. Full API: x-twitter-scraper.