원클릭으로
x-scraper
X (Twitter) 抓取 skill - 通过 agent-browser (CDP) 抓取指定用户推文或首页推荐流,支持关键词过滤、Tab 切换、多格式输出。使用场景:按用户/关键词抓取时间线、查看首页推荐流、生成 RSS/JSON/Markdown。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
X (Twitter) 抓取 skill - 通过 agent-browser (CDP) 抓取指定用户推文或首页推荐流,支持关键词过滤、Tab 切换、多格式输出。使用场景:按用户/关键词抓取时间线、查看首页推荐流、生成 RSS/JSON/Markdown。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use for framework-gated self-evolve workflows in AWorld: evolve skills, create trajectory-backed proposals, inspect self-evolve run artifacts, run aworld-cli optimize, or prepare verified apply decisions through aworld.self_evolve gates.
Draft skill generated by self-evolve for trajectory-backed task handling.
An intelligent assistant specialized in handling media files (images/audio/video). **Only for media file analysis**, does not handle document types. Media files that can be processed: - Images: .jpg, .jpeg, .png, .gif, .bmp, .webp, .svg - Audio: .mp3, .wav, .m4a, .flac, .aac, .ogg - Video: .mp4, .avi, .mov, .mkv, .webm, .flv Files that cannot be processed (please do not trigger this skill): - Documents: .pdf, .doc, .docx, .txt, .md, .rtf - Spreadsheets: .xlsx, .xls, .csv, .tsv - Presentations: .pptx, .ppt, .key - Code: .py, .js, .ts, .java, .cpp, .go, .rs - Archives: .zip, .tar, .gz, .rar, .7z - Executables: .exe, .bin, .app, .dmg - Databases: .db, .sqlite, .sql - Configuration files: .json, .xml, .yaml, .yml, .toml, .ini - Web pages: .html, .htm, .css Trigger conditions: When the user explicitly requests to analyze image/audio/video content, or when the file extension belongs to the aforementioned media types.
Legacy demo skill for plugin discovery tests.
Create ad-ready product video from product images, with or without character/subject images. The workflow leverages AI-powered image composition, scene understanding, and video generation. Video prompts should follow commercial shot language—visual hooks, product presence, hero shots, detail showcase, function expression, and dynamic visuals.
Create ad-ready product images (single or collage) by back-solving sub-image sizes from target output ratio, grounding scene design with media_comprehension, generating images via image_generator with strict request params and actor-count control, and pairing each deliverable with a short social tagline for 小红书/抖音.
| name | x-scraper |
| description | X (Twitter) 抓取 skill - 通过 agent-browser (CDP) 抓取指定用户推文或首页推荐流,支持关键词过滤、Tab 切换、多格式输出。使用场景:按用户/关键词抓取时间线、查看首页推荐流、生成 RSS/JSON/Markdown。 |
通过已连接 CDP 的浏览器(agent-browser)抓取 X (Twitter) 内容,包含两个脚本:
输出格式统一支持 Markdown / RSS / JSON。
./scrape_x_user.sh./scrape_x_home.shagent-browser(CDP 已连接且已登录 X)、python3按用户名抓取最新帖子,可选关键词搜索过滤。
././scrape_x_user.sh [-u <username>] [-k <keyword>] [-p <cdp_port>] [-n <max_scrolls>] [-o <output_file>] [-f <format>]
| 参数 | 说明 | 默认 |
|---|---|---|
-u | X 用户名(不带 @) | Alibaba_Qwen |
-k | 搜索关键词(可选,不指定则抓取用户全部最新帖子) | - |
-p | CDP 端口 | 9222 |
-n | 最大滚动次数 | 10 |
-o | 输出文件路径 | stdout |
-f | 格式:md | rss | json | md |
././scrape_x_user.sh
././scrape_x_user.sh -k qwen3
././scrape_x_user.sh -u chenchengpro -k claw -f rss -o feed.xml
././scrape_x_user.sh -u chenchengpro -f json -n 20 -o data.json
抓取当前登录用户的 X 首页推荐内容,支持 For you / Following 两个 Tab 切换。
././scrape_x_home.sh [-t <tab>] [-p <cdp_port>] [-n <max_scrolls>] [-o <output_file>] [-f <format>]
| 参数 | 说明 | 默认 |
|---|---|---|
-t | 推荐 Tab:foryou | following | foryou |
-p | CDP 端口 | 9222 |
-n | 最大滚动次数 | 5 |
-o | 输出文件路径 | stdout |
-f | 格式:md | rss | json | md |
每条帖子包含:author(作者名 + handle)、time(ISO 时间戳)、text(正文)、link(帖子链接)、hasMedia(是否含图片/视频)、retweet(转推/置顶上下文)
././scrape_x_home.sh # 抓取 For you 推荐流
././scrape_x_home.sh -t following -n 10 # 抓取 Following 时间线
././scrape_x_home.sh -f json -o feed.json # JSON 输出到文件
././scrape_x_home.sh -n 3 -f rss -o home.xml # 少量抓取,RSS 输出