Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

omni-x全向 X

Agent Skill

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

总安装

3,045

周安装

122

GitHub Stars

公开资料未说明

下载量

986
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install omni-x

简介

omni-x 用于提取 X(Twitter)数据,包括用户资料、推文、关注者和媒体信息。

  • 适合在 OpenClaw 中需要获取 Twitter 公开数据或进行社交分析时使用。
  • 通过关键词或用户 ID 发起请求,返回结构化数据供进一步处理。
  • 安装前需确认网络权限和 API 调用限制,避免触发频率管控。
  • 建议结合具体任务验证输出格式与字段含义后再集成到工作流。

SKILL.md

name
omni-x-data-extractor
description
|
version
1.0.0
author
Omni-X
category
social-media
tags
[twitter, x, social-media, data-extraction, api]

X (Twitter) Data Extractor Skill

Overview

This skill provides AI agents with the ability to extract various types of data from X (Twitter) platform, including user profiles, posts, followers, followings, media content, and search results.

Prerequisites

  • Python 3.7+ installed
  • Dependencies installed (see references/INSTALLATION.md)

Workflow

Step 1: Initialize the Skill Interface

from scripts import TwitterSkillInterface

# Method 1: Initialize with auth_token (RECOMMENDED for full access)
interface = TwitterSkillInterface(auth_token="your_auth_token_here")

# Method 2: Initialize without token (guest session - limited features)
interface = TwitterSkillInterface()

# Method 3: Set token after initialization
interface = TwitterSkillInterface()
interface.set_auth_token("your_auth_token_here")

Step 2: Discover Available Skills

# Get all available skills and their metadata
skills = interface.get_available_skills()

# Each skill contains:
# - description: What the skill does
# - parameters: Required and optional parameters
# - returns: Expected return format
# - requires_auth: Whether authentication is needed

Step 3: Execute Skills

# Execute a skill with parameters
result = interface.execute_skill(
    skill_name="get_user_tweets",
    parameters={"username": "elonmusk", "count": 10}
)

# Check result
if result["success"]:
    data = result["data"]
    print(f"Retrieved {result['count']} items")
else:
    print(f"Error: {result['error']}")

Step 4: Handle Results

All skills return a standardized response format:

Success Response:

{
    "success": True,
    "data": [...],           # The actual data
    "count": 10,             # Number of items (if applicable)
    "has_next_page": True,   # Pagination info (if applicable)
    "cursor": "...",         # Cursor for next page (if applicable)
    "skill_name": "...",     # Name of executed skill
    "parameters": {...}      # Parameters used
}

Error Response:

{
    "success": False,
    "error": "Error message",
    "skill_name": "...",
    "parameters": {...}
}

Available Skills

1. get_user_profile

Description: Extract detailed user profile information.

Authentication: Not required (works with guest session)

Parameters:

  • username (str, required): Twitter username without @ symbol

Example:

result = interface.execute_skill(
    skill_name="get_user_profile",
    parameters={"username": "elonmusk"}
)

Returns: User profile data including name, bio, followers count, following count, etc.


2. get_user_tweets

Description: Extract recent tweets from a specific user.

Authentication: Not required (works with guest session)

Parameters:

  • username (str, required): Twitter username without @ symbol
  • count (int, optional): Number of tweets to retrieve (default: 10)

Example:

result = interface.execute_skill(
    skill_name="get_user_tweets",
    parameters={"username": "elonmusk", "count": 20}
)

Returns: List of tweets with text, timestamp, engagement metrics, etc.


3. get_user_followers

Description: Extract list of users following the specified account.

Authentication: Required (auth_token needed)

Parameters:

  • username (str, required): Twitter username without @ symbol
  • count (int, optional): Number of followers to retrieve (default: 20)

Example:

result = interface.execute_skill(
    skill_name="get_user_followers",
    parameters={"username": "elonmusk", "count": 50}
)

Returns: List of follower profiles with pagination support.


4. get_user_followings

Description: Extract list of users that the specified account follows.

Authentication: Required (auth_token needed)

Parameters:

  • username (str, required): Twitter username without @ symbol
  • count (int, optional): Number of followings to retrieve (default: 20)

Example:

result = interface.execute_skill(
    skill_name="get_user_followings",
    parameters={"username": "elonmusk", "count": 50}
)

Returns: List of following profiles with pagination support.


5. get_user_media

Description: Extract media content (photos/videos) from user's tweets.

Authentication: Required (auth_token needed)

Parameters:

  • username (str, required): Twitter username without @ symbol
  • count (int, optional): Number of media items to retrieve (default: 10)

Example:

result = interface.execute_skill(
    skill_name="get_user_media",
    parameters={"username": "elonmusk", "count": 15}
)

Returns: List of media items with URLs and metadata.


6. search_tweets

Description: Search for tweets matching a query string.

Authentication: Required (auth_token needed)

Parameters:

  • query (str, required): Search query string
  • count (int, optional): Number of tweets to retrieve (default: 10)
  • search_filter (str, optional): Filter type - "Latest", "Top", "People", "Photos", "Videos" (default: "Top")

Example:

result = interface.execute_skill(
    skill_name="search_tweets",
    parameters={
        "query": "AI technology",
        "count": 20,
        "search_filter": "Latest"
    }
)

Returns: List of tweets matching the search query.


Tool Usage Instructions

For AI Agents

When using this skill, follow these steps:

  1. Determine the task: Analyze user request to identify which skill is needed

- Profile info → get_user_profile - Recent tweets → get_user_tweets - Follower analysis → get_user_followers - Following analysis → get_user_followings - Media extraction → get_user_media - Search tweets → search_tweets

  1. Check authentication requirements:

- If skill requires auth and no token is set, inform user to provide auth_token - Guest session works for: get_user_profile, get_user_tweets - Auth required for: get_user_followers, get_user_followings, get_user_media, search_tweets

  1. Extract parameters from user request:

- Username (remove @ if present) - Count/limit for results - Search filters (for search_tweets)

  1. Execute the skill:
   result = interface.execute_skill(skill_name="...", parameters={...})
  1. Process and present results:

- Check result["success"] first - If successful, format and present result["data"] - If failed, explain result["error"] to user - Mention pagination if result["has_next_page"] is True

Error Handling

result = interface.execute_skill(skill_name="...", parameters={...})

if not result["success"]:
    error_msg = result["error"]
    
    # Common errors and solutions:
    if "auth" in error_msg.lower() or "login" in error_msg.lower():
        # Inform user that authentication is required
        print("This feature requires authentication. Please provide auth_token.")
    elif "not found" in error_msg.lower():
        # Username doesn't exist
        print(f"User not found. Please check the username.")
    elif "rate limit" in error_msg.lower():
        # Rate limit exceeded
        print("Rate limit exceeded. Please wait before trying again.")
    else:
        # Generic error
        print(f"An error occurred: {error_msg}")

Examples

Example 1: Get User Profile and Recent Tweets

from scripts import TwitterSkillInterface

# Initialize
interface = TwitterSkillInterface()

# Get profile
profile = interface.execute_skill(
    skill_name="get_user_profile",
    parameters={"username": "elonmusk"}
)

if profile["success"]:
    print(f"User: {profile['data']['name']}")
    print(f"Followers: {profile['data']['followers_count']}")

# Get recent tweets
tweets = interface.execute_skill(
    skill_name="get_user_tweets",
    parameters={"username": "elonmusk", "count": 5}
)

if tweets["success"]:
    for tweet in tweets["data"]:
        print(f"Tweet: {tweet['text']}")

Example 2: Search and Analyze Tweets (Requires Auth)

from scripts import TwitterSkillInterface

# Initialize with auth token
interface = TwitterSkillInterface(auth_token="your_auth_token")

# Search for tweets
results = interface.execute_skill(
    skill_name="search_tweets",
    parameters={
        "query": "artificial intelligence",
        "count": 20,
        "search_filter": "Latest"
    }
)

if results["success"]:
    print(f"Found {results['count']} tweets")
    for tweet in results["data"]:
        print(f"- {tweet['text'][:100]}...")

Example 3: Analyze User Network (Requires Auth)

from scripts import TwitterSkillInterface

# Initialize with auth token
interface = TwitterSkillInterface(auth_token="your_auth_token")

username = "elonmusk"

# Get followers
followers = interface.execute_skill(
    skill_name="get_user_followers",
    parameters={"username": username, "count": 100}
)

# Get followings
followings = interface.execute_skill(
    skill_name="get_user_followings",
    parameters={"username": username, "count": 100}
)

if followers["success"] and followings["success"]:
    print(f"Followers: {followers['count']}")
    print(f"Following: {followings['count']}")
    print(f"Ratio: {followers['count'] / followings['count']:.2f}")

Best Practices

  1. Always provide auth_token when possible - Many features require authentication
  2. Check success field first - Always verify result["success"] before accessing data
  3. Handle pagination - Use cursor field for large datasets
  4. Respect rate limits - CRITICAL: Implement delays between requests to avoid account restrictions

- Recommended: 1-2 second delay between requests - For bulk operations: 2-3 second delay - Monitor for rate limit errors and back off exponentially if encountered

  1. Cache results - Avoid repeated requests for the same data
  2. Validate usernames - Remove @ symbol and validate format before calling
  3. Use appropriate count values - Start with small counts (10-20) and increase gradually as needed
  4. Handle errors gracefully - Provide meaningful feedback to users
  5. Comply with Terms of Service - Ensure all usage complies with X (Twitter) Terms of Service
  6. Educational/Research Use Only - This tool is intended for educational and research purposes only

Authentication Guide

See references/LOGIN_GUIDE.md for detailed instructions on obtaining and using auth_token.

Quick steps:

  1. Log in to Twitter/X in browser
  2. Open Developer Tools (F12)
  3. Go to Application/Storage → Cookies
  4. Find auth_token cookie
  5. Copy its value
  6. Use it to initialize: TwitterSkillInterface(auth_token="...")

Troubleshooting

Problem: "Guest session has limited access"

  • Solution: Provide auth_token for full feature access

Problem: "User not found"

  • Solution: Verify username is correct (without @ symbol)

Problem: "Rate limit exceeded"

  • Solution: Wait before making more requests, implement delays

Problem: "Authentication required"

  • Solution: Provide valid auth_token for this feature

References

  • Full API documentation: references/AI_AGENT_GUIDE.md
  • Authentication guide: references/LOGIN_GUIDE.md
  • Installation instructions: references/INSTALLATION.md
  • Example code: agent_example.py

Support

For issues or questions, refer to the documentation in the references/ directory or check the main README.md file.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

80.6%
按下载量换算795

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills