Install
$ agentstack add skill-lnvestor-twitr-skills-x-twitter-research ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
X research — bulk exports
Extractions run asynchronously: the call returns a claim check, you poll, and you get a download URL — not inline rows. That's deliberate; a 5,000-row dataset would swamp context.
Run one
POST https://twitr.sh/api/tools/x_extract
Idempotency-Key:
{ "tool": "follower_explorer", "targetUsername": "vercel", "resultsLimit": 500 }
→ { "snapshot_id": "sd_…", "status": "pending", "status_url": "/api/snapshots/sd_…" }
Then poll (free, wallet-signed) until ready:
GET https://twitr.sh/api/snapshots/sd_…
→ { "status": "ready", "record_count": 500, "download_url": "https://…" }
Picking the target field
The tool decides which target you must supply — getting this wrong is the most common error:
| Target field | Used by | |---|---| | targetUsername | follower / following / verified-follower / post / mention / likes / media | | targetTweetId | reply / repost / quote / thread / article / favoriters | | targetCommunityId | community members / moderators / posts | | targetListId | list members / followers | | targetSpaceId | space extractors | | searchQuery | people_search, tweet_search_extractor |
Gotchas
resultsLimitis mandatory and it is the price. Billed per returned record at ~$0.0012, so
5,000 records ≈ $6. Quote the cost before running, and confirm above ~$1.
article_extractorbills 5× per record. Budget accordingly.Idempotency-Keyis required. Retrying without the same key starts — and charges for — a
second job.
- The response is a claim check, not data. Don't try to read rows from the create response.
- Don't poll in a tight loop. Hand the user the
snapshot_idand check when they ask;
spinning burns tokens for no benefit. Large jobs take minutes.
- When ready, the data is behind
download_url. Fetch and summarise, or hand over the URL —
never paste a large dataset into context.
GET /api/snapshotslists every dataset this wallet has paid for, so past exports are free
to re-find.
Avoid
- Don't export 5,000 records when 200 answers the question. Sample first, then scale.
- Don't use extractions to build a follow list — automated following is prohibited by X and
unsupported by these skills (see x-twitter-publish).
- Don't re-run an export you've already paid for; check
/api/snapshotsfirst.
Full API: https://twitr.sh/skill.md · https://twitr.sh/docs
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: lnvestor
- Source: lnvestor/twitr-skills
- License: MIT
- Homepage: twitr.sh
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.