Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

x-scannerx 扫描仪

Agent Skill

x-scanner 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

238

周安装

10

GitHub Stars

31

下载量

83
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:x-scanner(x 扫描仪)
来源仓库:https://github.com/reymerekar7/rm-skills
仓库路径:skills/x-scanner
安装命令:
npx skills add https://github.com/reymerekar7/rm-skills --skill x-scanner
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/reymerekar7/rm-skills --skill x-scanner

简介

x-scanner 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配或来源线索梳理等研究检索场景。
  • 通过关键词、任务描述或来源仓库提供上下文,由 Agent 执行信息聚合与过滤。
  • 安装前需确认权限范围、维护状态,注意是否触发联网、命令执行或文件读写操作。
  • 建议结合原始 README 和仓库路径进一步核验具体用法和功能边界。

SKILL.md

X/Twitter Scanner

What This Does

Uses xAI's Grok API with the built-in x_search tool to scan X/Twitter for recent posts from AI-focused accounts. Grok has native access to X data, so one API call handles search, filtering, and summarization. No separate Twitter API credentials needed.

Setup

The script reads the xAI API key from the .env file in your project root.

Expected .env entry:

XAI_API_KEY=your_xai_api_key_here

Get an API key from https://x.ai/api.

How It Works

The script calls https://api.x.ai/v1/responses with the x_search tool enabled. Grok searches X in real-time and returns a summarized digest of what the specified accounts have been posting. This is much simpler than the Twitter API v2 approach — no user ID lookups, no pagination, no OAuth.

Accounts to Monitor

These are the default accounts baked into the script. Edit the DEFAULT_HANDLES list in scan_x.py to change them.

AI Labs / Products:

  • @AnthropicAI — Claude updates, product launches
  • @OpenAI — GPT updates, industry moves
  • @GoogleAI — Gemini, DeepMind, research
  • @cursor_ai — Cursor editor updates, agentic coding
  • @peraborgen — Perplexity AI

AI Practitioners / Researchers:

  • @karpathy — deep LLM insights, tutorials
  • @AndrewYNg — practical AI, education
  • @sama — OpenAI CEO, industry direction
  • @vasuman — Vasu, ex-Meta, founder of Varick Agents AI agency
  • @OfficialLoganK — Logan Kilpatrick, Google AI, ex-OpenAI DevRel
  • @mattshumer_ — Matt Shumer, CEO HyperWrite, AI agent builder

Builders / Solopreneurs:

  • @AlexFinn — vibe coding, Creator Buddy, X growth strategies
  • @ErnestoSOFTWARE — Ernesto Lopez, 21yo, 11 apps, $73k MRR, mobile app tactics
  • @gregisenberg — startup ideas, community-led growth
  • @levelsio — building in public, one-person companies
  • @itsolelehmann — Ole Lehmann, AI agents for non-technical people
  • @PrajwalTomar_ — Prajwal Tomar, MVPs in 21 days, vibe coding
  • @JosephKChoi — Joseph Choi, consumer apps, viral growth
  • @trq212 — content creator

AI News / Commentary:

  • @AIHighlight — daily AI tools and prompts
  • @TheRundownAI — daily AI news digest
  • @aakashg0 — Aakash Gupta, AI/growth/product analysis
  • @WesRoth — Wes Roth, AI commentary, automation, optimism
  • @Scobleizer — Robert Scoble, tech/AI news aggregator

Flagging System

Posts are marked [FLAGGED] and surfaced at the top of the output when they hit:

  • Breaking product launch or major feature drop
  • Real revenue/growth numbers shared publicly
  • Genuinely contrarian take on AI narratives
  • Workflow or system that fits "1 person + AI > 10 people"
  • High engagement: viral post, >500 likes, or replies blowing up
  • Directly relevant to: lean ops, solopreneurship, AI implementation, vibe coding, mobile apps

How to Use

Quick scan (default — last 12 hours)

python <skill-directory>/scripts/scan_x.py

Custom time window

python <skill-directory>/scripts/scan_x.py --hours 6

Specific accounts only

python <skill-directory>/scripts/scan_x.py --handles karpathy sama AnthropicAI

Freeform X search

python <skill-directory>/scripts/scan_x.py --query "Claude Code update"

Summary only (no JSON wrapper)

python <skill-directory>/scripts/scan_x.py --summary-only

Output is JSON to stdout with a summary field containing Grok's digest.

Filtering What Matters

Not every tweet is content-worthy. Prioritize:

  • Product launches and feature announcements
  • Data, stats, or research worth breaking down
  • Hot takes you can respond to or riff on
  • Trends connecting to "1 person + AI > 10 people"
  • Anything contrarian or surprising

Skip: retweets of old news, generic motivational AI tweets, pure promotional content.

Default Workflow

  1. Run scan_x.py to pull recent posts via xAI Grok API
  2. If the script fails (key expired, rate limited), fall back to Tavily search with queries like "AI news today", "Claude update", "OpenAI announcement"
  3. Summarize top 5-8 stories (1-2 sentences each, with source link)
  4. Present digest to the user
  5. STOP here. Do NOT generate content ideas or push to Notion unless the user explicitly asks.

Content Ideas + Notion Push (only when explicitly asked)

When the user asks to generate content ideas or push to Notion:

  • Map interesting tweets to content pillars:

- AI Implementation Reality (35%) - Behind the Scenes (25%) - Industry Hot Takes (25%) - Democratizing Expertise (15%)

  • For each idea, create a Notion page in the content calendar:

- data_source_id: <your-notion-database-id> - Status: "Backlog" - Content Format: based on best platform fit - Funnel Stage: "TOFU" - Include source tweet links in the Notes section

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.4%
按下载量换算29

Claude

29.07%
按下载量换算24

Cursor

20.43%
按下载量换算17

Gemini CLI

9.37%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills