New to Claude Skills? Learn how to install them →

browser-act on GitHub

X Tweet by Conversation

Free

Extract complete Twitter conversation threads effortlessly.

by browser-act5.3k stars on browser-act/skills
2 views
Updated Aug 5, 2026
Get this skill

Free · Opens the source repo

What X Tweet by Conversation does

The X Tweet by Conversation skill allows users to collect and normalize every tweet in a given Twitter conversation thread, starting from a specified root tweet ID. This includes the focal tweet as well as all replies, sub-replies, and quote chains, providing a comprehensive view of the conversation. The skill returns structured data for each tweet, including text, author information, engagement metrics, media attachments, hashtags, and mentions, along with pagination support for large threads.

To utilize this skill, users must have an active Twitter session in their browser, ensuring that all data collected is accessible and visible to the logged-in user. The skill operates by constructing a URL for the conversation root, navigating to it, and capturing the response data through network requests. The Python scripts included in the package handle the URL construction and response parsing, facilitating a seamless experience for users looking to analyze Twitter conversations.

This skill is particularly useful for developers and researchers interested in sentiment analysis, community discussions, and the dynamics of Twitter conversations. By extracting full threads, users can engage in deeper analysis of viral tweets, controversies, and community Q&A threads, making it a valuable tool for anyone looking to harvest insights from social media interactions.

However, it is important to note that the skill is limited to data visible to the logged-in user and will not bypass any authentication barriers. This means that if a tweet is deleted, protected, or if the user is not logged in, the skill will not be able to retrieve the relevant data. Users should ensure they are logged in to Twitter and that their session is active to make the most of this skill.

When to use it

Use this skill when you need to analyze or collect data from a specific Twitter conversation thread, especially for research or sentiment analysis.

When not to use it

This skill is not suitable for collecting data from private accounts or when the user is not logged into Twitter, as it relies on visible data in the user's session.

What you can build with it

Analyzing Viral Tweets

Use the skill to extract and analyze all replies to a viral tweet for sentiment analysis and engagement metrics.

Community Q&A Harvesting

Collect and structure data from community Q&A threads on Twitter to understand public opinion and trends.

Researching Controversial Topics

Gather full conversation threads around controversial tweets to study public discourse and reactions.

How to install X Tweet by Conversation

View source

1. Install with the skills CLI

npx skills add browser-act/skills/x-tweet-by-conversation --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by browser-act

X — Tweets by Conversation

Conversation id (root tweet id) → normalized list of every tweet in the thread (focal tweet + replies + sub-replies), with author, engagement, media, cursor.

Language

All process output to user (progress updates, process notifications) follows the user's language.

Objective

Given an X conversation id (which equals the root tweet id), collect the focal tweet and every reply / sub-reply visible to the logged-in session, returning structured per-tweet data with pagination cursors.

Prerequisites

  • Active X session in the browser (left sidebar shows logged-in avatar / @handle).
  • Network capture is enabled in the browser-act session.

Pre-execution Checks

1. Tool Readiness

If browser-act has been confirmed available in the current session → skip this step.

Invoke browser-act via Skill tool to load usage. If installation or configuration issues arise, follow its guidance to resolve then retry.

2. Login Verification

If login status for X has been confirmed in the current session → skip this step.

Otherwise: open https://x.com and observe the left sidebar:

  • User avatar or @handle visible → logged in, continue
  • "Sign in" / "Log in" prompt visible → not logged in, inform the user and assist the login flow

User refuses or cannot log in → terminate execution.

Capability Components

This Skill's operational boundary = what the user can manually do in their browser. It only reads tweet data already shown to the user, never bypassing authentication. The browser's own JS signs the GraphQL request; the Skill triggers it via URL navigation and reads the response from network traffic. Python scripts under scripts/ only build URLs and parse responses — they do not call X directly. Run them through the bash tool.

Network Capture: full conversation thread

Step 1 — build the tweet-detail URL for the conversation root:

URL=$(python scripts/build-conversation-url.py '{conversation_id}' [--handle {handle}])

Parameters:

  • conversation_id (positional): the X conversation id, which equals the root tweet id (the same number you would see in https://x.com/i/status/<conversation_id>).
  • --handle: the root tweet's author handle if known; if unknown, leave the default — x.com/i/status/<id> resolves to the same focal tweet because X canonicalises the URL.

Step 2 — navigate and capture the first page:

  1. network requests --clear
  2. navigate "$URL"
  3. wait stable --timeout 25000 (timeout is normal on X; proceed)
  4. network requests --type xhr,fetch --filter TweetDetail → take the latest entry's request_id
  5. network request <request_id> → save full output to a file (e.g. tmp/x-conversation-page-1.txt)
  6. python scripts/parse-tweets.py --json-file tmp/x-conversation-page-1.txt --source tweet_detail → emits JSON {tweets, count, cursor_top, cursor_bottom}. The focal tweet is the first element; subsequent elements are replies (in display order). Each reply carries is_reply: true, in_reply_to_id, in_reply_to_user, and conversation_id == <root tweet id>, which makes the reply tree reconstructable downstream.

Endpoint characteristic: URL contains /i/api/graphql/<hash>/TweetDetail. The query hash rotates; always filter by name.

Step 3 — paginate via scroll to load deeper replies and sub-replies:

  1. network requests --clear
  2. scroll down --amount 5000
  3. wait stable --timeout 10000
  4. network requests --type xhr,fetch --filter TweetDetail → newest entry's request_id
  5. network request <request_id> → save to tmp/x-conversation-page-N.txt
  6. python scripts/parse-tweets.py --json-file tmp/x-conversation-page-N.txt --source tweet_detail

Repeat Step 3 until any termination condition is met:

  • Accumulated unique reply count reaches the user's target.
  • count == 0 on the current page.
  • cursor_bottom is unchanged across two consecutive pages.
  • The page shows a "Show more replies" button gated by visibility filters — state reveals it; the Agent may click <index> to expand more, then resume scrolling.

Error handling:

  • If the focal tweet is deleted or protected, the response carries a TweetTombstone entry; parse-tweets.py filters tombstones, so the result will be count: 0 — report to the user and stop.
  • If no TweetDetail request appears after a scroll, wait 3 s and retry once. Persistent absence after two scrolls means the thread has been fully loaded.
  • If a captcha challenge appears (visible in state as an authorization prompt), pause and ask the user.

Output example:

{
  "tweets": [
    {
      "type": "tweet",
      "id": "2069990565530214798",
      "url": "https://x.com/Rothmus/status/2069990565530214798",
      "twitter_url": "https://twitter.com/Rothmus/status/2069990565530214798",
      "text": "\"We are going to have a multi-racial nation in Singapore. ...\"",
      "created_at": "Tue Jun 24 23:01:50 +0000 2026",
      "lang": "en",
      "source": "Twitter Web App",
      "retweet_count": 91,
      "reply_count": 84,
      "like_count": 567,
      "quote_count": 12,
      "bookmark_count": 50,
      "view_count": 64140,
      "is_reply": false,
      "is_retweet": false,
      "is_quote": false,
      "quote_id": null,
      "quote_url": null,
      "in_reply_to_id": null,
      "in_reply_to_user": null,
      "in_reply_to_user_id": null,
      "conversation_id": "2069990565530214798",
      "hashtags": [],
      "mentions": [],
      "urls": [],
      "media": [],
      "card": null,
      "place": null,
      "author": {
        "id": "987654321",
        "user_name": "Rothmus",
        "name": "Rothmus",
        "url": "https://x.com/Rothmus",
        "is_verified": false,
        "is_blue_verified": true,
        "verified_type": null,
        "profile_picture": "https://pbs.twimg.com/profile_images/.../photo.jpg",
        "description": "Singapore observer ...",
        "location": "Singapore",
        "followers": 12345,
        "following": 678,
        "created_at": "Wed Jun 16 10:00:00 +0000 2021"
      }
    },
    {
      "type": "tweet",
      "id": "2070027327409655973",
      "url": "https://x.com/DinoLeadingNews/status/2070027327409655973",
      "text": "@Rothmus @elonmusk Singapore proves that identity ...",
      "is_reply": true,
      "in_reply_to_id": "2069990565530214798",
      "in_reply_to_user": "Rothmus",
      "in_reply_to_user_id": "987654321",
      "conversation_id": "2069990565530214798",
      "like_count": 0,
      "reply_count": 0,
      "retweet_count": 0,
      "quote_count": 0,
      "bookmark_count": 0,
      "view_count": 19,
      "author": {"user_name": "DinoLeadingNews", "name": "Dino Leading News", "...": "..."},
      "...": "..."
    }
  ],
  "count": 40,
  "cursor_top": null,
  "cursor_bottom": "DAACCgABHLoz..."
}

Pagination

Network Capture Pagination: triggered by scroll down. X's page JS inserts the previous response's cursor_bottom into the next TweetDetail request's variables.cursor. Some sub-reply branches require clicking an in-page "Show replies" expander (state to locate, click <index>) before the next scroll surfaces them. Termination: count == 0, cursor_bottom does not advance across two consecutive pages, or user target reached.

Success Criteria

count >= 1 on the first page (the focal tweet must be present unless the conversation root is deleted) AND every tweet has non-null id, text, created_at, author.user_name, like_count, retweet_count, reply_count, conversation_id AND each reply tweet has is_reply == true and in_reply_to_id pointing to a tweet inside the thread.

Known Limitations

  • Only replies visible to the logged-in session are returned; X enforces visibility filters (blocked accounts, soft-blocked replies, "Show additional replies, including those that may contain offensive content").
  • Deleted root tweets return a tombstone; the Skill terminates with count: 0.
  • Quote tweets that reference this conversation are NOT included — they live in a separate timeline; collect them via x-tweet-search-by-query with filter:quote conversation_id:<id> if needed.
  • view_count is null for very new replies where X has not emitted views.count.
  • Sustained polling triggers per-session throttling; stay under ~150 timeline calls per 15-minute window per session.
  • The page may never reach network-idle; wait stable will frequently time out — proceed to read network anyway.

Execution Efficiency

  • Batch orchestration: write a bash script that iterates conversation ids serially in one session. For parallelism, fan out across multiple stealth browsers each with its own login.
  • Test before batch execution: run one conversation end-to-end (page 1 + at least one paginated page) first.
  • Reduce redundant pre-operations: keep the same session for many sequential conversations.
  • Error resumption: persist cursor_bottom and accumulated reply IDs per conversation after every page.
  • De-duplicate by id: the focal tweet may appear in multiple paginated responses (some endpoints repeat the focal tweet at the top of every page); merge by id.

Experience Notes

Path: {working-directory}/browser-act-skill-forge-memories/x-tweet-scraper-x-tweet-by-conversation.memory.md (working directory is determined by the Agent running the Skill, typically the project root or current working directory)

Before execution: If the file exists, read it first — it records unexpected situations encountered during past executions (e.g., a strategy has become ineffective); adjust strategy order accordingly.

After execution: If an unexpected situation is encountered (strategy became ineffective, page redesigned, anti-scraping upgraded, better path discovered), append a line: {YYYY-MM-DD}: {what happened} → {conclusion}

Normal execution does not write to the file. Do not record which conversation was scraped or how many replies were returned — those are task outputs, not experience.

Frequently asked questions about X Tweet by Conversation

Similar skills