Claim this agent
Agent DossierCLAWHUBSafety 84/100

Xpersona Agent

Twitter Command Center

Search X (Twitter) in real time, extract relevant posts, and publish tweets/replies instantly—perfect for social listening, engagement, and rapid content ops. Skill: Twitter Command Center Owner: bowen-dotcom Summary: Search X (Twitter) in real time, extract relevant posts, and publish tweets/replies instantly—perfect for social listening, engagement, and rapid content ops. Tags: latest:1.0.0 Version history: v1.0.0 | 2026-02-10T07:57:47.752Z | user Search X (Twitter) in real time, extract relevant posts, and publish tweets/replies instantly. Perfect for social listening,

OpenClaw · self-declared
508 downloadsTrust evidence available
clawhub skill install kn74pdks0k3ghs09pk2axym55h80xn01:aisa-twitter-skill

Overall rank

#62

Adoption

508 downloads

Trust

Unknown

Freshness

Mar 1, 2026

Freshness

Last checked Mar 1, 2026

Best For

Twitter Command Center is best for general automation workflows where OpenClaw compatibility matters.

Not Ideal For

Contract metadata is missing or unavailable for deterministic execution.

Evidence Sources Checked

editorial-content, CLAWHUB, runtime-metrics, public facts pack

Overview

Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.

Verifiededitorial-content

Overview

Executive Summary

Search X (Twitter) in real time, extract relevant posts, and publish tweets/replies instantly—perfect for social listening, engagement, and rapid content ops. Skill: Twitter Command Center Owner: bowen-dotcom Summary: Search X (Twitter) in real time, extract relevant posts, and publish tweets/replies instantly—perfect for social listening, engagement, and rapid content ops. Tags: latest:1.0.0 Version history: v1.0.0 | 2026-02-10T07:57:47.752Z | user Search X (Twitter) in real time, extract relevant posts, and publish tweets/replies instantly. Perfect for social listening, Capability contract not published. No trust telemetry is available yet. 508 downloads reported by the source. Last updated 4/15/2026.

No verified compatibility signals508 downloads

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Mar 1, 2026

Vendor

Clawhub

Artifacts

0

Benchmarks

0

Last release

1.0.0

Install & run

Setup Snapshot

clawhub skill install kn74pdks0k3ghs09pk2axym55h80xn01:aisa-twitter-skill
  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.

Evidence & Timeline

Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.

Verifiededitorial-content

Public facts

Evidence Ledger

Vendor (1)

Vendor

Clawhub

profilemedium
Observed Apr 15, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

OpenClaw

contractmedium
Observed Apr 15, 2026Source linkProvenance
Release (1)

Latest release

1.0.0

releasemedium
Observed Feb 10, 2026Source linkProvenance
Adoption (1)

Adoption signal

508 downloads

profilemedium
Observed Apr 15, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance

Artifacts & Docs

Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.

Self-declaredCLAWHUB

Captured outputs

Artifacts Archive

Extracted files

3

Examples

2

Snippets

0

Languages

Unknown

Executable Examples

bash

export AISA_API_KEY="your-key"

bash

# Get user info
python scripts/twitter_client.py user-info --username elonmusk

# Search tweets
python scripts/twitter_client.py search --query "AI agents"

# Get trends
python scripts/twitter_client.py trends
Extracted Files

SKILL.md

---
name: Twitter Command Center (Search + Post)
description: "Search X (Twitter) in real time, extract relevant posts, and publish tweets/replies instantly—perfect for social listening, engagement, and rapid content ops."
homepage: https://openclaw.ai
metadata: {"openclaw":{"emoji":"🐦","requires":{"bins":["curl","python3"],"env":["AISA_API_KEY"]},"primaryEnv":"AISA_API_KEY"}}
---

# OpenClaw Twitter 🐦

**Twitter/X data access and automation for autonomous agents. Powered by AIsa.**

One API key. Full Twitter intelligence.

## 🔥 What Can You Do?

### Monitor Influencers
```
"Get Elon Musk's latest tweets and notify me of any AI-related posts"
```

### Track Trends
```
"What's trending on Twitter worldwide right now?"
```

### Social Listening
```
"Search for tweets mentioning our product and analyze sentiment"
```

### Automated Engagement
```
"Like and retweet posts from @OpenAI that mention GPT-5"
```

### Competitor Intel
```
"Monitor @anthropic and @GoogleAI - alert me on new announcements"
```

## Quick Start

```bash
export AISA_API_KEY="your-key"
```

## Core Capabilities

### Read Operations (No Login Required)

```bash
# Get user info
curl "https://api.aisa.one/apis/v1/twitter/user/info?userName=elonmusk" \
  -H "Authorization: Bearer $AISA_API_KEY"

# Get user's latest tweets
curl "https://api.aisa.one/apis/v1/twitter/user/user_last_tweet?userName=elonmusk" \
  -H "Authorization: Bearer $AISA_API_KEY"

# Advanced tweet search (queryType is required: Latest or Top)
curl "https://api.aisa.one/apis/v1/twitter/tweet/advanced_search?query=AI+agents&queryType=Latest" \
  -H "Authorization: Bearer $AISA_API_KEY"

# Search top tweets
curl "https://api.aisa.one/apis/v1/twitter/tweet/advanced_search?query=AI+agents&queryType=Top" \
  -H "Authorization: Bearer $AISA_API_KEY"

# Get trending topics (worldwide)
curl "https://api.aisa.one/apis/v1/twitter/trends?woeid=1" \
  -H "Authorization: Bearer $AISA_API_KEY"

# Search users by keyword
curl "https://api.aisa.one/apis/v1/twitter/user/search_user?keyword=AI+researcher" \
  -H "Authorization: Bearer $AISA_API_KEY"

# Get tweets by ID
curl "https://api.aisa.one/apis/v1/twitter/tweet/tweetById?tweet_ids=123456789" \
  -H "Authorization: Bearer $AISA_API_KEY"

# Get user followers
curl "https://api.aisa.one/apis/v1/twitter/user/user_followers?userName=elonmusk" \
  -H "Authorization: Bearer $AISA_API_KEY"

# Get user followings
curl "https://api.aisa.one/apis/v1/twitter/user/user_followings?userName=elonmusk" \
  -H "Authorization: Bearer $AISA_API_KEY"
```

### Write Operations (Requires Login)

> ⚠️ **Warning**: Posting requires account login. Use responsibly to avoid rate limits or account suspension.

```bash
# Step 1: Login first (async, check status after)
curl -X POST "https://api.aisa.one/apis/v1/twitter/user_login_v3" \
  -H "Authorization: Bearer $AISA_API_KEY" \
  -H "Content-Type: application

README.md

# OpenClaw Twitter 🐦

Twitter/X data and automation for autonomous agents. Powered by AIsa.

## Installation

```bash
export AISA_API_KEY="your-key"
```

## Quick Start

```bash
# Get user info
python scripts/twitter_client.py user-info --username elonmusk

# Search tweets
python scripts/twitter_client.py search --query "AI agents"

# Get trends
python scripts/twitter_client.py trends
```

## Features

- **Read Operations**: User info, tweets, search, trends, followers, followings
- **Write Operations**: Post tweets, like, retweet (requires login)

## Get API Key

Sign up at [aisa.one](https://aisa.one)

## Links

- [ClawHub](https://www.clawhub.com/aisa-one/openclaw-twitter)
- [API Reference](https://aisa.mintlify.app/api-reference/introduction)

_meta.json

{
  "ownerId": "kn74pdks0k3ghs09pk2axym55h80xn01",
  "slug": "aisa-twitter-skill",
  "version": "1.0.0",
  "publishedAt": 1770710267752
}

Editorial read

Docs & README

Docs source

CLAWHUB

Editorial quality

ready

Search X (Twitter) in real time, extract relevant posts, and publish tweets/replies instantly—perfect for social listening, engagement, and rapid content ops. Skill: Twitter Command Center Owner: bowen-dotcom Summary: Search X (Twitter) in real time, extract relevant posts, and publish tweets/replies instantly—perfect for social listening, engagement, and rapid content ops. Tags: latest:1.0.0 Version history: v1.0.0 | 2026-02-10T07:57:47.752Z | user Search X (Twitter) in real time, extract relevant posts, and publish tweets/replies instantly. Perfect for social listening,

Full README

Skill: Twitter Command Center

Owner: bowen-dotcom

Summary: Search X (Twitter) in real time, extract relevant posts, and publish tweets/replies instantly—perfect for social listening, engagement, and rapid content ops.

Tags: latest:1.0.0

Version history:

v1.0.0 | 2026-02-10T07:57:47.752Z | user

Search X (Twitter) in real time, extract relevant posts, and publish tweets/replies instantly. Perfect for social listening, engagement, and rapid content operations. Monitor trends, competitors, and automate interactions.

Archive index:

Archive v1.0.0: 4 files, 6017 bytes

Files: README.md (760b), scripts/twitter_client.py (12112b), SKILL.md (6616b), _meta.json (137b)

File v1.0.0:SKILL.md


name: Twitter Command Center (Search + Post) description: "Search X (Twitter) in real time, extract relevant posts, and publish tweets/replies instantly—perfect for social listening, engagement, and rapid content ops." homepage: https://openclaw.ai metadata: {"openclaw":{"emoji":"🐦","requires":{"bins":["curl","python3"],"env":["AISA_API_KEY"]},"primaryEnv":"AISA_API_KEY"}}

OpenClaw Twitter 🐦

Twitter/X data access and automation for autonomous agents. Powered by AIsa.

One API key. Full Twitter intelligence.

🔥 What Can You Do?

Monitor Influencers

"Get Elon Musk's latest tweets and notify me of any AI-related posts"

Track Trends

"What's trending on Twitter worldwide right now?"

Social Listening

"Search for tweets mentioning our product and analyze sentiment"

Automated Engagement

"Like and retweet posts from @OpenAI that mention GPT-5"

Competitor Intel

"Monitor @anthropic and @GoogleAI - alert me on new announcements"

Quick Start

export AISA_API_KEY="your-key"

Core Capabilities

Read Operations (No Login Required)

# Get user info
curl "https://api.aisa.one/apis/v1/twitter/user/info?userName=elonmusk" \
  -H "Authorization: Bearer $AISA_API_KEY"

# Get user's latest tweets
curl "https://api.aisa.one/apis/v1/twitter/user/user_last_tweet?userName=elonmusk" \
  -H "Authorization: Bearer $AISA_API_KEY"

# Advanced tweet search (queryType is required: Latest or Top)
curl "https://api.aisa.one/apis/v1/twitter/tweet/advanced_search?query=AI+agents&queryType=Latest" \
  -H "Authorization: Bearer $AISA_API_KEY"

# Search top tweets
curl "https://api.aisa.one/apis/v1/twitter/tweet/advanced_search?query=AI+agents&queryType=Top" \
  -H "Authorization: Bearer $AISA_API_KEY"

# Get trending topics (worldwide)
curl "https://api.aisa.one/apis/v1/twitter/trends?woeid=1" \
  -H "Authorization: Bearer $AISA_API_KEY"

# Search users by keyword
curl "https://api.aisa.one/apis/v1/twitter/user/search_user?keyword=AI+researcher" \
  -H "Authorization: Bearer $AISA_API_KEY"

# Get tweets by ID
curl "https://api.aisa.one/apis/v1/twitter/tweet/tweetById?tweet_ids=123456789" \
  -H "Authorization: Bearer $AISA_API_KEY"

# Get user followers
curl "https://api.aisa.one/apis/v1/twitter/user/user_followers?userName=elonmusk" \
  -H "Authorization: Bearer $AISA_API_KEY"

# Get user followings
curl "https://api.aisa.one/apis/v1/twitter/user/user_followings?userName=elonmusk" \
  -H "Authorization: Bearer $AISA_API_KEY"

Write Operations (Requires Login)

⚠️ Warning: Posting requires account login. Use responsibly to avoid rate limits or account suspension.

# Step 1: Login first (async, check status after)
curl -X POST "https://api.aisa.one/apis/v1/twitter/user_login_v3" \
  -H "Authorization: Bearer $AISA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"user_name":"myaccount","email":"me@example.com","password":"xxx","proxy":"http://user:pass@ip:port"}'

# Step 2: Check login status
curl "https://api.aisa.one/apis/v1/twitter/get_my_x_account_detail_v3?user_name=myaccount" \
  -H "Authorization: Bearer $AISA_API_KEY"

# Send tweet
curl -X POST "https://api.aisa.one/apis/v1/twitter/send_tweet_v3" \
  -H "Authorization: Bearer $AISA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"user_name":"myaccount","text":"Hello from OpenClaw!"}'

# Like a tweet
curl -X POST "https://api.aisa.one/apis/v1/twitter/like_tweet_v3" \
  -H "Authorization: Bearer $AISA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"user_name":"myaccount","tweet_id":"1234567890"}'

# Retweet
curl -X POST "https://api.aisa.one/apis/v1/twitter/retweet_v3" \
  -H "Authorization: Bearer $AISA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"user_name":"myaccount","tweet_id":"1234567890"}'

# Update profile
curl -X POST "https://api.aisa.one/apis/v1/twitter/update_profile_v3" \
  -H "Authorization: Bearer $AISA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"user_name":"myaccount","name":"New Name","bio":"New bio"}'

Python Client

# User operations
python3 {baseDir}/scripts/twitter_client.py user-info --username elonmusk
python3 {baseDir}/scripts/twitter_client.py tweets --username elonmusk
python3 {baseDir}/scripts/twitter_client.py followers --username elonmusk
python3 {baseDir}/scripts/twitter_client.py followings --username elonmusk

# Search & Discovery
python3 {baseDir}/scripts/twitter_client.py search --query "AI agents"
python3 {baseDir}/scripts/twitter_client.py user-search --keyword "AI researcher"
python3 {baseDir}/scripts/twitter_client.py trends --woeid 1

# Post operations (requires login)
python3 {baseDir}/scripts/twitter_client.py login --username myaccount --email me@example.com --password xxx --proxy "http://user:pass@ip:port"
python3 {baseDir}/scripts/twitter_client.py post --username myaccount --text "Hello!"
python3 {baseDir}/scripts/twitter_client.py like --username myaccount --tweet-id 1234567890
python3 {baseDir}/scripts/twitter_client.py retweet --username myaccount --tweet-id 1234567890

API Endpoints Reference

| Endpoint | Method | Description | |----------|--------|-------------| | /twitter/user/info | GET | Get user profile | | /twitter/user/user_last_tweet | GET | Get user's recent tweets | | /twitter/user/user_followers | GET | Get user followers | | /twitter/user/user_followings | GET | Get user followings | | /twitter/user/search_user | GET | Search users by keyword | | /twitter/tweet/advanced_search | GET | Advanced tweet search | | /twitter/tweet/tweetById | GET | Get tweets by IDs | | /twitter/trends | GET | Get trending topics | | /twitter/user_login_v3 | POST | Login to account | | /twitter/send_tweet_v3 | POST | Send a tweet | | /twitter/like_tweet_v3 | POST | Like a tweet | | /twitter/retweet_v3 | POST | Retweet |

Pricing

| API | Cost | |-----|------| | Twitter read query | ~$0.0004 | | Twitter post/like/retweet | ~$0.001 |

Every response includes usage.cost and usage.credits_remaining.

Get Started

  1. Sign up at aisa.one
  2. Get your API key
  3. Add credits (pay-as-you-go)
  4. Set environment variable: export AISA_API_KEY="your-key"

Full API Reference

See API Reference for complete endpoint documentation.

File v1.0.0:README.md

OpenClaw Twitter 🐦

Twitter/X data and automation for autonomous agents. Powered by AIsa.

Installation

export AISA_API_KEY="your-key"

Quick Start

# Get user info
python scripts/twitter_client.py user-info --username elonmusk

# Search tweets
python scripts/twitter_client.py search --query "AI agents"

# Get trends
python scripts/twitter_client.py trends

Features

  • Read Operations: User info, tweets, search, trends, followers, followings
  • Write Operations: Post tweets, like, retweet (requires login)

Get API Key

Sign up at aisa.one

Links

File v1.0.0:_meta.json

{ "ownerId": "kn74pdks0k3ghs09pk2axym55h80xn01", "slug": "aisa-twitter-skill", "version": "1.0.0", "publishedAt": 1770710267752 }

API & Reliability

Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.

MissingCLAWHUB

Machine interfaces

Contract & API

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/clawhub-bowen-dotcom-aisa-twitter-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-bowen-dotcom-aisa-twitter-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-bowen-dotcom-aisa-twitter-skill/trust"

Operational fit

Reliability & Benchmarks

Trust signals

Handshake

UNKNOWN

Confidence

unknown

Attempts 30d

unknown

Fallback rate

unknown

Runtime metrics

Observed P50

unknown

Observed P95

unknown

Rate limit

unknown

Estimated cost

unknown

Do not use if

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Machine Appendix

Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.

MissingCLAWHUB

Contract JSON

{
  "contractStatus": "missing",
  "authModes": [],
  "requires": [],
  "forbidden": [],
  "supportsMcp": false,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": null,
  "outputSchemaRef": null,
  "dataRegion": null,
  "contractUpdatedAt": null,
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/clawhub-bowen-dotcom-aisa-twitter-skill/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/clawhub-bowen-dotcom-aisa-twitter-skill/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/clawhub-bowen-dotcom-aisa-twitter-skill/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/clawhub-bowen-dotcom-aisa-twitter-skill/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/clawhub-bowen-dotcom-aisa-twitter-skill/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/clawhub-bowen-dotcom-aisa-twitter-skill/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "OPENCLEW"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "CLAWHUB",
      "generatedAt": "2026-04-17T04:49:25.584Z"
    }
  },
  "retryPolicy": {
    "maxAttempts": 3,
    "backoffMs": [
      500,
      1500,
      3500
    ],
    "retryableConditions": [
      "HTTP_429",
      "HTTP_503",
      "NETWORK_TIMEOUT"
    ]
  }
}

Trust JSON

{
  "status": "unavailable",
  "handshakeStatus": "UNKNOWN",
  "verificationFreshnessHours": null,
  "reputationScore": null,
  "p95LatencyMs": null,
  "successRate30d": null,
  "fallbackRate": null,
  "attempts30d": null,
  "trustUpdatedAt": null,
  "trustConfidence": "unknown",
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Capability Matrix

{
  "rows": [
    {
      "key": "OPENCLEW",
      "type": "protocol",
      "support": "unknown",
      "confidenceSource": "profile",
      "notes": "Listed on profile"
    }
  ],
  "flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}

Facts JSON

[
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Clawhub",
    "href": "https://clawhub.ai/bowen-dotcom/aisa-twitter-skill",
    "sourceUrl": "https://clawhub.ai/bowen-dotcom/aisa-twitter-skill",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T00:45:39.800Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/clawhub-bowen-dotcom-aisa-twitter-skill/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-bowen-dotcom-aisa-twitter-skill/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-04-15T00:45:39.800Z",
    "isPublic": true
  },
  {
    "factKey": "traction",
    "category": "adoption",
    "label": "Adoption signal",
    "value": "508 downloads",
    "href": "https://clawhub.ai/bowen-dotcom/aisa-twitter-skill",
    "sourceUrl": "https://clawhub.ai/bowen-dotcom/aisa-twitter-skill",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T00:45:39.800Z",
    "isPublic": true
  },
  {
    "factKey": "latest_release",
    "category": "release",
    "label": "Latest release",
    "value": "1.0.0",
    "href": "https://clawhub.ai/bowen-dotcom/aisa-twitter-skill",
    "sourceUrl": "https://clawhub.ai/bowen-dotcom/aisa-twitter-skill",
    "sourceType": "release",
    "confidence": "medium",
    "observedAt": "2026-02-10T07:57:47.752Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/clawhub-bowen-dotcom-aisa-twitter-skill/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-bowen-dotcom-aisa-twitter-skill/trust",
    "sourceType": "trust",
    "confidence": "medium",
    "observedAt": null,
    "isPublic": true
  }
]

Change Events JSON

[
  {
    "eventType": "release",
    "title": "Release 1.0.0",
    "description": "Search X (Twitter) in real time, extract relevant posts, and publish tweets/replies instantly. Perfect for social listening, engagement, and rapid content operations. Monitor trends, competitors, and automate interactions.",
    "href": "https://clawhub.ai/bowen-dotcom/aisa-twitter-skill",
    "sourceUrl": "https://clawhub.ai/bowen-dotcom/aisa-twitter-skill",
    "sourceType": "release",
    "confidence": "medium",
    "observedAt": "2026-02-10T07:57:47.752Z",
    "isPublic": true
  }
]

Sponsored

Ads related to Twitter Command Center and adjacent AI workflows.