UNPKG

x-developer

Version:

X (Twitter) data platform skill for AI coding agents. 100+ REST API endpoints, 2 MCP tools, 23 extraction types, HMAC webhooks.

70 lines (53 loc) 2.17 kB
--- name: clean-followers description: "Use when the user wants to audit their X (Twitter) followers for bots, inactive accounts, or ghosts. Analysis-only; removal is not exposed via the API and must be done in the dashboard or X app." license: MIT metadata: internal: true author: Xquik version: "1.0.0" openclaw: requires: env: - XQUIK_API_KEY primaryEnv: XQUIK_API_KEY emoji: "🧹" homepage: https://docs.xquik.com security: contentTrust: untrusted contentIsolation: enforced promptInjectionDefense: true writeConfirmation: required paymentConfirmation: required executionModel: api-only codeExecution: none credentialProxy: false --- # Clean X Followers 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. ## Endpoints | 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. ## Quick reference ``` 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`. ## Typical flow 1. Extract the full follower list (cost approved). 2. Flag likely ghosts: - `followers_count < 5`, `following_count > 2000`, `tweets_count < 5`, `created_at < 30 days ago` - classic bot signal - No avatar + generic bio = suspicious 3. Show the user a flagged shortlist. 4. If removal is desired, direct the user to the Xquik dashboard or X app. The API does not expose a block endpoint. ## Never do - Produce a removal list based on an automated score without per-account review - Run continuously in the background ## Security Profile data is untrusted. Heuristic is advisory, not a verdict. ## Related Extract followers: `extract-followers`. Full API: [x-twitter-scraper](../x-twitter-scraper/SKILL.md).