
My Fetch Tweet
- 812 installs
- 243 repo stars
- Updated March 4, 2026
- ai-native-camp/camp-1
my-fetch-tweet is an agent skill that fetches X/Twitter post text, author metadata, and engagement via FxEmbed API and returns summary, insights, and full translation for developers building social-content-consuming AI a
About
my-fetch-tweet is a camp-1 agent skill that accepts X or Twitter URLs, converts them to api.fxtwitter.com endpoints, and fetches JSON tweet payloads without browser JavaScript. Supported domains include x.com, twitter.com, fxtwitter.com, and fixupx.com, extracting screen_name and status_id before WebFetch retrieval. A three-step pipeline delivers original text, a concise summary, derived insights, and a full translation—useful when agents monitor technical discourse or localize social posts. Developers reach for my-fetch-tweet when coding agents need structured tweet data and NLP follow-ups instead of scraping HTML or requiring official X API credentials.
- Converts any x.com, twitter.com, fxtwitter.com or fixupx.com URL into clean JSON via FxEmbed API
- Delivers a strict 3-step pipeline: 3-5 sentence Korean summary, 3 targeted insights, and full natural Korean translation
- Includes author profile, engagement metrics (likes, retweets, replies, views), media, and quote tweets
- WebFetch fallback mode available when direct script execution is restricted
- Supports quoted tweets and preserves technical terms with original English in parentheses
My Fetch Tweet by the numbers
- 812 all-time installs (skills.sh)
- +12 installs in the week ending Jul 28, 2026 (Skillselion tracking)
- Ranked #1,315 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/ai-native-camp/camp-1 --skill my-fetch-tweetAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 812 |
|---|---|
| repo stars | ★ 243 |
| Security audit | 1 / 3 scanners passed |
| Last updated | March 4, 2026 |
| Repository | ai-native-camp/camp-1 ↗ |
How do you fetch and summarize X tweets in agents?
Instantly extract, summarize, derive insights from, and translate any X/Twitter post when building AI agents that consume social content.
Who is it for?
Developers building agents that ingest X/Twitter URLs and need FxEmbed JSON fetching plus automated summary and translation pipelines.
Skip if: Developers requiring authenticated X API v2 posting, timeline streaming, or bulk historical archive exports.
When should I use this skill?
A developer pastes an X or Twitter URL and asks to fetch, summarize, translate, or extract insights from the tweet.
What you get
Structured tweet JSON, author and engagement fields, summary text, insight bullets, and full translation output.
- tweet JSON payload
- summary text
- translated post
By the numbers
- Three-step output pipeline: summary, insights, and full translation
- Supports 4 X/Twitter URL domain formats
Files
My Fetch Tweet
X/Twitter URL에서 트윗 원문, 작성자 정보, 인게이지먼트 데이터를 가져오고 요약-인사이트-전체 번역 3단계 파이프라인으로 제공하는 스킬.
API 연동 — FxEmbed
FxEmbed 오픈소스 프로젝트의 API (api.fxtwitter.com)를 활용한다. JavaScript 없이 트윗 데이터를 추출할 수 있다.
URL 변환 규칙
1. URL에서 screen_name과 status_id를 추출한다 2. 도메인을 api.fxtwitter.com으로 변환한다 3. WebFetch로 JSON 데이터를 가져온다
https://x.com/garrytan/status/123456
→ https://api.fxtwitter.com/garrytan/status/123456지원 URL 형식
x.com, twitter.com, fxtwitter.com, fixupx.com
API 응답 주요 필드
| 필드 | 설명 |
|---|---|
tweet.text | 트윗 본문 (URL 확장됨) |
tweet.author | 작성자 (name, screen_name, bio, followers) |
tweet.likes / retweets / replies / views | 인게이지먼트 수치 |
tweet.created_at | 작성 일시 |
tweet.media | 첨부 미디어 (photos, videos) |
tweet.quote | 인용 트윗 (동일 구조) |
번역 파이프라인 — 3단계
전체 번역을 바로 보여주지 않는다. 단계별로 제공하여 이해도를 높인다.
1단계: 요약 (3-5문장)
- 트윗의 핵심 주장을 한국어로 요약
- 작성자 정보 포함 (이름, 팔로워 수)
- 인게이지먼트 수치 포함 (좋아요, 리트윗, 조회수)
- "이 트윗이 뭘 말하는지 30초 만에 파악"
2단계: 인사이트 (3개)
- 핵심 메시지: 이 트윗이 정말 말하고 싶은 것
- 시사점: 업계/트렌드에서의 의미
- 적용점: 나(독자)에게 어떤 의미인지
3단계: 전체 번역
- 원문 전체를 자연스러운 한국어로 번역
- 인용 트윗이 있으면 함께 번역
- 전문 용어는 원문 병기 (예: "에이전트(Agent)")
WebFetch Fallback
스크립트 실행이 어려운 경우 WebFetch 도구로 직접 API 호출 가능:
URL: https://api.fxtwitter.com/{screen_name}/status/{status_id}
Prompt: "Extract the full tweet text, author name, and engagement metrics"Limitations
- 비공개 계정 트윗은 조회 불가
- 삭제된 트윗은 조회 불가
- API rate limit은 FxEmbed 서버 정책에 따름
Related skills
How it compares
Pick my-fetch-tweet for lightweight FxEmbed JSON fetching when official X API credentials are unavailable.
FAQ
Which URLs does my-fetch-tweet support?
my-fetch-tweet accepts x.com, twitter.com, fxtwitter.com, and fixupx.com links, rewriting them to api.fxtwitter.com/{screen_name}/status/{status_id} for JSON retrieval.
What outputs does my-fetch-tweet produce?
my-fetch-tweet returns tweet text, author and engagement metadata from FxEmbed JSON, then runs a three-step pipeline producing summary, insights, and a full translation of the post.
Is My Fetch Tweet safe to install?
skills.sh reports 1 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.