Fetches public posts from a Threads user's profile page, extracting post text, engagement metrics, and media info from SSR-embedded JSON. Use when user asks to scrape Threads posts, get someone's Threads feed, pull posts from a Threads account, collect Threads content by username, download Threads user posts, extract Threads profile posts, monitor a Threads user's activity, retrieve recent posts from a Threads handle, gather Threads post data for a creator, or fetch all posts from a specific Threads profile.
npx skills add https://github.com/browser-act/skills --skill threads-user-posts
> username → list of public posts with engagement metrics (SSR + scroll pagination)
All process output to user (progress updates, process notifications) follows the user's language.
Extract public posts from a given Threads user's profile page using SSR-embedded JSON data, with optional scroll-triggered pagination to load more posts.
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.
If login status for Threads has been confirmed in the current session → skip this step.
Otherwise: navigate https://www.threads.com and check page state:
If not logged in and user cannot log in → the capability may still work on some proxy/IP configurations; attempt navigate https://www.threads.com/@{username} and check if profile content loads. If the page redirects to /login/, terminate and inform the user that a logged-in session is required.
> This Skill's operational boundary = what the user can manually do in their browser. It only reads data already displayed to the user on the page. JS code is encapsulated in Python files under the scripts/ directory, invoked via eval "$(python scripts/xxx.py {params})". $(...) is bash syntax; it is recommended to use the bash tool for execution.
Navigate to the user's profile page first, then extract all posts embedded in the initial page HTML:
navigate https://www.threads.com/@{username}wait stableeval "$(python scripts/extract-posts.py)"Output example:
{
"posts": [
{
"id": "3936653356768062022", // post internal ID (pk)
"code": "DKmzN8wJzFG", // post short code for URL
"url": "https://www.threads.com/@zuck/post/DKmzN8wJzFG", // direct post link
"text": "Excited to share...", // post text content, null if no caption
"taken_at": 1780953646, // Unix timestamp of post creation
"like_count": 3583, // number of likes
"reply_count": 3039, // number of direct replies
"repost_count": 232, // number of reposts
"quote_count": 114, // number of quote posts
"reshare_count": 460, // number of reshares
"is_reply": false, // true if this post is a reply to another
"media_type": 19, // 1=photo, 2=video, 8=carousel, 19=text-only
"has_media": false, // true if post contains image/video/carousel
"user": {
"pk": "63055343223", // Threads-specific user ID
"username": "zuck",
"full_name": "Mark Zuckerberg",
"is_verified": true
}
}
],
"count": 4, // number of posts in this batch
"page_info": {
"end_cursor": "QVFES...", // cursor for next page (null when no more)
"has_next_page": true, // whether more posts are available
"has_previous_page": false,
"start_cursor": null
}
}
Error handling: If error: true is returned, check that the profile page was fully loaded (navigate and wait stable completed without timeout). If mediaData not found, the page may have redirected to a login wall or the username is invalid.
When page_info.has_next_page is true, scroll the page to trigger GraphQL auto-load:
eval "$(python scripts/scroll-load-more.py)"
Then wait stable and read the new batch from network traffic:
network requests --type xhr,fetch --filter threads.com
Find the POST https://www.threads.com/graphql/query request(s) that appeared after the scroll. Read the response:
network request <id>
The response body contains data.mediaData.edges[] with the same post structure as the SSR extraction output. Each edge has node.thread_items[0].post with the same field layout (id/pk, code, caption.text, taken_at, like_count, text_post_app_info.direct_reply_count, etc.).
Error handling: If no new graphql/query requests appear after scrolling, the user may have reached the login wall (~15 posts without authentication) or all posts have loaded. Check for a "Log in to see more" message on screen via screenshot.
To collect all available posts for a user:
navigate https://www.threads.com/@{username} → wait stableeval "$(python scripts/extract-posts.py)" → collect initial posts, note page_infopage_info.has_next_page == true:a. eval "$(python scripts/scroll-load-more.py)"
b. wait stable
c. network requests --type xhr,fetch --filter threads.com → locate new graphql/query POST
d. network request <id> → extract data.mediaData.edges[] posts
e. Check data.mediaData.page_info.has_next_page in response to decide whether to continue
has_next_page == false or login wall encountered (~15 posts without login)DOM Pagination: Scroll #scrollview via eval "$(python scripts/scroll-load-more.py)", then wait stable and read new POST /graphql/query response from network traffic. Termination: page_info.has_next_page == false in the GraphQL response, or login wall visible on screen (approximately 15 posts without authentication).
result.count >= 1 and result.posts[0].id != null and result.posts[0].user.username != null
mediaData not found error.taken_at is a Unix timestamp; convert to readable date with new Date(taken_at * 1000).toISOString().Path: {working-directory}/browser-act-skill-forge-memories/threads-scraper-threads-user-posts.memory.md
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 what keywords were used or how many results were returned — those are task outputs, not experience.
Scrapes content based on a preset URL list, filters high-quality technical information, and generates daily Markdown reports.
Scrapes content based on a preset URL list, filters high-quality technical information, and generates daily Markdown reports.
> Lead qualification engine with conversational intake. Asks structured questions to understand your qualification criteria, generates a reusable qualification prompt, then batch-enriches leads via Apify LinkedIn scraping and scores them with parallel processing. Outputs qualified/disqualified verdicts with confidence scores and reasoning to CSV or whatever output format the user prefers. Supports calibration mode for prompt refinement.
Analyze Google Maps review data from CSV exports. Sentiment analysis, trend detection, competitor review comparison, and reputation insights — no API key needed.
微信公众号文章抓取与导出。自动处理 mp.weixin.qq.com 的登录态获取与续期, 支持按公众号搜索、抓取文章列表与正文、按日期窗口导出 Markdown / JSON / CSV。 Trigger when the user wants to crawl a WeChat public account, export recent articles, or 提到 "wcx"、"微信公众号"、"公众号文章"、"mp.weixin"、"抓公众号"、 "crawl wechat official account"、"wxmp"、"最近十天的文章"。
| web-data agents, scrapes into Delta tables, and produces an AI/BI dashboard and/or a deployed Databricks App — a table → dashboard → app workflow, for production data products or quick demos. Use whenever a request pairs live or scraped web data WITH a Databricks destination — e.g. "scrape Amazon/Walmart prices into a Delta table and build a dashboard", "load Zillow/Instagram/Maps/search results into Databricks and build a dashboard or app", "showcase Nimble + Databricks to a prospect". Prefer it over nimble-web-expert or competitor-intel when the data lands in Databricks. Do NOT use for one-off web fetches or CSV exports with no Databricks destination — use nimble-web-expert instead. Do NOT use for competitor or company research briefings — use competitor-intel or company-deep-dive instead. Do NOT use for generic Databricks work with no Nimble/web-data angle — use the official databricks-* skills instead.
Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas
Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or from other data sources; or convert between tabular file formats. Trigger especially when the user references a spreadsheet file by name or path — even casually (like \"the xlsx in my downloads\") — and wants something done to it or produced from it. Also trigger for cleaning or restructuring messy tabular data files (malformed rows, misplaced headers, junk data) into proper spreadsheets. The deliverable must be a spreadsheet file. Do NOT trigger when the primary deliverable is a Word document, HTML report, standalone Python script, database pipeline, or Google Sheets API integration, even if tabular data is involved.
Take browser-act/threads-user-posts from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.