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

twitter-search-skill推特搜索技巧

Agent Skill

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

总安装

83,624

周安装

3,416

GitHub Stars

1

下载量

26,781
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:twitter-search-skill(推特搜索技巧)
来源仓库:https://github.com/flyfoxci/twitter-search-skill
安装命令:
openclaw skills install twitter-search-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install twitter-search-skill

简介

高级 Twitter 搜索和社交媒体数据分析。使用 Twitter API 按关键字获取推文,处理多达 1000 个结果,并生成包含见解和可行建议的专业数据分析报告。当用户请求 Twitter/X 社交媒体搜索、社交媒体趋势分析、推文数据挖掘、社交聆听、影响者识别、推文主题情绪分析或任何涉及收集和分析 Twitter 数据以获得见解的任务时使用。

SKILL.md

name
twitter-search
description
Advanced Twitter search and social media data analysis. Fetches tweets by keywords using Twitter API, processes up to 1000 results, and generates professional data analysis reports with insights and actionable recommendations. Use when user requests Twitter/X social media search, social media trend analysis, tweet data mining, social listening, influencer identification, topic sentiment analysis from tweets, or any task involving gathering and analyzing Twitter data for insights.

Twitter Search and Analysis

Overview

Search Twitter for keywords using advanced search syntax, fetch up to 1000 relevant tweets, and analyze the data to produce professional reports with insights, statistics, and actionable recommendations.

Prerequisites

API Key Required: Users must configure their Twitter API key from https://twitterapi.io

The API key can be provided in three ways:

  1. Environment variable (recommended): Set TWITTER_API_KEY in your ~/.bashrc or ~/.zshrc
   echo 'export TWITTER_API_KEY="your_key_here"' >> ~/.bashrc
   source ~/.bashrc
  1. As an argument: Use --api-key YOUR_KEY with the wrapper script
  2. Passed directly: As first argument to the Python script

Quick Start

Using the Wrapper Script (Recommended)

The wrapper script automatically handles environment variable loading and dependency checks:

# Basic search (uses TWITTER_API_KEY from shell config)
./scripts/run_search.sh "AI"

# With custom API key
./scripts/run_search.sh "AI" --api-key YOUR_KEY

# With options
./scripts/run_search.sh "\"Claude AI\"" --max-results 100 --format summary

# Advanced query
./scripts/run_search.sh "from:elonmusk since:2024-01-01" --query-type Latest

Direct Python Script Usage

# Search for a keyword
scripts/twitter_search.py "$API_KEY" "AI"

# Search with multiple keywords
scripts/twitter_search.py "$API_KEY" "\"ChatGPT\" OR \"Claude AI\""

# Search from specific user
scripts/twitter_search.py "$API_KEY" "from:elonmusk"

# Search with date range
scripts/twitter_search.py "$API_KEY" "Bitcoin since:2024-01-01"

Advanced Queries

# Complex query: AI tweets from verified users, English only
scripts/twitter_search.py "$API_KEY" "AI OR \"machine learning\" lang:en filter:verified"

# Recent crypto tweets with minimum engagement
scripts/twitter_search.py "$API_KEY" "Bitcoin min_retweets:10 lang:en"

# From specific influencers
scripts/twitter_search.py "$API_KEY" "from:elonmusk OR from:VitalikButerin since:2024-01-01"

Output Format

# Full JSON with all tweets
scripts/twitter_search.py "$API_KEY" "AI" --format json

# Summary with statistics (default)
scripts/twitter_search.py "$API_KEY" "AI" --format summary

Options

  • --max-results N: Maximum tweets to fetch (default: 1000)
  • --query-type Latest|Top: Sort order (default: Top for relevance)
  • --format json|summary: Output format (default: summary)

Workflow

1. Understand User Requirements

Clarify the analysis goal:

  • What topic/keyword to search?
  • Date range preference?
  • Specific users to include/exclude?
  • Language preference?
  • Type of insights needed (trends, sentiment, influencers)?

2. Build the Search Query

Use Twitter Advanced Search syntax:

SyntaxExampleDescription
keywordAISingle keyword
"phrase""machine learning"Exact phrase
ORAI OR ChatGPTEither term
from:userfrom:elonmuskFrom specific user
to:userto:elonmuskReply to user
since:DATEsince:2024-01-01After date
until:DATEuntil:2024-12-31Before date
lang:xxlang:enLanguage code
#hashtag#AIHashtag
filter:linksfilter:linksTweets with links
min_retweets:Nmin_retweets:100Minimum retweets

3. Fetch Data

Execute the search script:

scripts/twitter_search.py "$API_KEY" "YOUR_QUERY" --max-results 1000 --query-type Top

Important: Default is 1000 tweets maximum. The script automatically:

  • Paginates through all available results
  • Stops at 1000 tweets (API limit consideration)
  • Handles errors gracefully

4. Analyze and Generate Report

After fetching data, produce a comprehensive professional report with:

Report Structure

  1. Executive Summary (2-3 sentences)

- What was searched - Key findings overview

  1. Data Overview

- Total tweets analyzed - Date range of data - Query parameters used

  1. Key Metrics

- Total engagement (likes, retweets, replies, quotes, views) - Average engagement per tweet - Language distribution - Reply vs. original tweet ratio

  1. Top Content Analysis

- Most retweeted tweets (with URL links to original tweets) - Most liked tweets (with URL links to original tweets) - Top hashtags with frequency - Most mentioned users - Selected tweet examples with full URL references

  1. Influencer Analysis

- Top users by follower count - Most active users - Verified user percentage

  1. Trend Insights (based on data patterns)

- Emerging themes - Sentiment indicators - Temporal patterns - Conversation drivers

  1. Key Takeaways

- 3-5 bullet points of core insights - Data-backed conclusions

  1. Actionable Recommendations

- Specific, implementable suggestions - Based on the data findings - Prioritized by impact

Analysis Guidelines

  • Be data-driven: Every claim should reference actual metrics
  • Provide context: Explain why metrics matter
  • Identify patterns: Look for trends across the dataset
  • Stay objective: Present facts, avoid speculation
  • Be specific: Recommendations should be concrete and actionable
  • Consider external context: Use web search for background when relevant

5. Output Format

Present the report in clear markdown with:

  • Headers for each section
  • Tables for structured data
  • Bullet points for lists
  • Bold for key metrics
  • Code blocks for tweet examples
  • Clickable URLs for all referenced tweets (format: [@username](https://x.com/username/status/tweet_id))

Tweet URL Format

Always include clickable links to tweets:

| Author | Tweet | URL |
|--------|-------|-----|
| @user | Summary of tweet content | [View](https://x.com/user/status/123456) |

Or inline format:

- **@username**: Tweet summary - [View Tweet](https://x.com/username/status/123456)

Query Examples by Use Case

Trend Analysis

"AI" OR "artificial intelligence" lang:en min_retweets:50

Competitor Monitoring

from:competitor1 OR from:competitor2 since:2024-01-01

Product Launch Tracking

#ProductName OR "Product Name" lang:en filter:verified

Crisis Monitoring

#BrandName OR "Brand Name" lang:en --query-type Latest

Influencer Discovery

#Topic lang:en min_retweets:100 min_faves:500

Sentiment Analysis

"brand name" OR #BrandName lang:en --max-results 1000

Resources

scripts/run_search.sh (Wrapper Script)

Convenience wrapper that handles environment variable loading and dependency checks:

  • Automatically loads TWITTER_API_KEY from ~/.bashrc or ~/.zshrc
  • Checks Python availability and installs missing dependencies
  • Provides user-friendly error messages
  • Supports all command-line options from the Python script

Usage:

./scripts/run_search.sh <query> [options]

Options:

  • --api-key KEY: Override environment variable API key
  • --max-results N: Maximum tweets to fetch (default: 1000)
  • --query-type Latest|Top: Sort order (default: Top)
  • --format json|summary: Output format (default: json)

scripts/twitter_search.py

Executable Python script that:

  • Fetches tweets from Twitter API
  • Handles pagination automatically
  • Extracts key tweet metrics
  • Calculates aggregate statistics
  • Outputs structured JSON data

Usage:

scripts/twitter_search.py <api_key> <query> [options]

references/twitter_api.md

Comprehensive API documentation including:

  • Complete parameter reference
  • Query syntax guide
  • Response structure details
  • Pagination instructions
  • Best practices for analysis
  • Error handling guide

Read this when: Building complex queries or understanding data structure.

Tips for Better Analysis

  1. Use Top query type for trend analysis (more relevant results)
  2. Set date filters for timely insights
  3. Filter by language for accurate text analysis
  4. Include minimum engagement to filter noise
  5. Combine with web search to validate trends
  6. Look beyond metrics - analyze content themes
  7. Track hashtags to identify sub-conversations
  8. Identify influencers by combining followers + engagement

Error Handling

If the script fails:

  • Check API key validity
  • Verify query syntax
  • Ensure network connectivity
  • Check rate limits (if applicable)
  • Review error messages for specific issues

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

83.18%
按下载量换算22,276

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills