From x-twitter-scraper
Finds X (Twitter) influencers in a niche by bio keyword search, filters by follower count and engagement, surfaces active accounts for outreach research. Read-only Xquik API.
npx claudepluginhub xquik-dev/x-twitter-scraper --plugin x-twitter-scraperThis skill uses the workspace's default tool permissions.
Find active X accounts in a niche by bio/handle search with follower and activity filters. Read-only.
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.
Find active X accounts in a niche by bio/handle search with follower and activity filters. Read-only.
| Endpoint | Purpose | Cost |
|---|---|---|
| POST /extractions with toolType=people_search | User search by keyword/bio | Per-row |
| POST /extractions/estimate | Preview credit cost before running | Free |
| GET /x/users/{username} | Profile snapshot for shortlisted accounts | Read tier |
Base URL: https://xquik.com/api/v1. Auth: x-api-key: xq_... header.
POST /extractions/estimate
{ "toolType": "people_search", "searchQuery": "crypto trader" }
POST /extractions
{ "toolType": "people_search", "searchQuery": "crypto trader" }
-> 202 { "id": "<extractionId>", "toolType": "people_search", "status": "running" }
The server only accepts toolType and searchQuery. Follower-count filters and verified-only shortlists happen after extraction, on the returned rows.
POST /extractions/estimate, show the cost.POST /extractions.GET /extractions/{id} until completed.GET /extractions/{id}/results?cursor=<cursor> and filter locally by followers_count range and verified flag.GET /x/users/{username} for recency signals.GET /extractions/{id}/export?format=csv if raw data is needed.This skill is for discovery and research. Do not use to mass-DM, mass-follow, or run automated outreach. If the user wants outreach, they must review each target before any action.
Reach out: send-dms (single DM with confirmation). Full API: x-twitter-scraper.