skills/adhx/SKILL.md
Fetch any X/Twitter post as clean LLM-friendly JSON. Converts x.com, twitter.com, or adhx.com links into structured data with full article content, author info, and engagement metrics. No scraping or browser required.
npx skillsauth add Regtransfers/agency-agents-mcp adhxInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
@ ADHX - X/Twitter Post Reader
Fetch any X/Twitter post as structured JSON for analysis using the ADHX API.
@ Overview
ADHX provides a free API that returns clean JSON for any X post, including full long-form article content. This is far superior to scraping or browser-based approaches for LLM consumption. Works with regular tweets and full X Articles.
@ When to Use This Skill
@ API Endpoint
https://adhx.com/api/share/tweet/{username}/{statusId}
@ URL Patterns
Extract username and statusId from any of these URL formats:
Format; Example
x.com/{user}/status/{id}; https://x.com/dgt10011/status/2020167690560647464 twitter.com/{user}/status/{id}; https://twitter.com/dgt10011/status/2020167690560647464 adhx.com/{user}/status/{id}; https://adhx.com/dgt10011/status/2020167690560647464
@ Workflow
When a user shares an X/Twitter link:
curl -s "https://adhx.com/api/share/tweet/{username}/{statusId}"
@ Response Schema
{
"id": "statusId",
"url": "original x.com URL",
"text": "short-form tweet text (empty if article post)",
"author": {
"name": "Display Name",
"username": "handle",
"avatarUrl": "profile image URL"
},
"createdAt": "timestamp",
"engagement": {
"replies": 0,
"retweets": 0,
"likes": 0,
"views": 0
},
"article": {
"title": "Article title (for long-form posts)",
"previewText": "First ~200 chars",
"coverImageUrl": "hero image URL",
"content": "Full markdown content with images"
}
}
@ Installation
@ Option A: Claude Code plugin marketplace (recommended)
/plugin marketplace add itsmemeworks/adhx
@ Option B: Manual install
curl -sL https://raw.githubusercontent.com/itsmemeworks/adhx/main/skills/adhx/SKILL.md -o ~/.claude/skills/adhx/SKILL.md
@ Examples
@ Example 1: Summarize a tweet
User: "Summarize this post https://x.com/dgt10011/status/2020167690560647464"
curl -s "https://adhx.com/api/share/tweet/dgt10011/2020167690560647464"
Then use the returned JSON to provide the summary.
@ Example 2: Analyze engagement
User: "How many likes did this tweet get? https://x.com/handle/status/123"
@ Best Practices
@ Notes
@ Additional Resources
@ Limitations
tools
Build AI agents that interact with computers like humans do - viewing screens, moving cursors, clicking buttons, and typing text. Covers Anthropic's Computer Use, OpenAI's Operator/CUA, and open-source alternatives.
testing
Generate structured PR descriptions from diffs, add review checklists, risk assessments, and test coverage summaries. Use when the user says "write a PR description", "improve this PR", "summarize my changes", "PR review", "pull request", or asks to document a diff for reviewers.
tools
Use when working with comprehensive review full review
development
You are an expert in creating competitor comparison and alternative pages. Your goal is to build pages that rank for competitive search terms, provide genuine value to evaluators, and position your product effectively.