Bundle Pluginstructural

Twitter Command Centerv0.1.4

Bundle plugin: Twitter/X search, monitoring, and OAuth posting via AIsa endpoints

@aisa/twitter-command-center·runtime @aisa/twitter-command-center·by @aisa
openclaw bundles install clawhub:@aisa/twitter-command-center
Latest release: v0.1.4Download zip

Capabilities

Bundle format
generic
Host targets
openclaw
Runtime ID
@aisa/twitter-command-center

Compatibility

Built With Open Claw Version
0.1.4
Security Scan
VirusTotalVirusTotal
stale
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
The advertised capabilities—Twitter/X search, monitoring, and OAuth posting—match the SKILL.md, metadata, and Python client. Public posting is high-impact but is disclosed and tied to user authorization.
Instruction Scope
Posting instructions are scoped to cases where the user asks to publish, and the skill says not to claim success until the API confirms it. Users should still review any generated post text before allowing publication.
Install Mechanism
The registry-level requirements say no required env vars or binaries, while the skill itself documents AISA_API_KEY, python3, and curl. This appears to be under-declared metadata rather than hidden behavior.
Credentials
The code shown uses the disclosed AIsa API endpoint and the AISA_API_KEY for Twitter/X operations. No broad local file access, shell execution, or unrelated endpoints are shown in the provided artifacts.
Persistence & Privilege
The skill claims not to store local Twitter credentials and the shown code does not write tokens locally. However, browser OAuth grants posting authority through AIsa’s relay, so users should understand and manage that delegated access.
Assessment
This appears purpose-aligned for Twitter/X search and posting. Install it only if you trust AIsa with your API key and OAuth-mediated posting access, and review posts carefully before publishing because they can become public on your X/Twitter account.

Verification

Tier
structural
Scope
artifact only
Summary
Validated package structure and extracted metadata.
Scan status
clean

Tags

latest
0.1.4

Twitter Command Center 🐦

Search, monitor, and publish on X/Twitter from Claude Code — powered by AIsa.

What it does

Full Twitter/X data access through a single API key. No passwords, no cookies, no proxies.

Read (no login required):

  • User profiles, timelines, mentions, followers, followings
  • Tweet search (Latest / Top), replies, quotes, retweeters, threads
  • Trending topics, Lists, Communities, Spaces

Write (OAuth relay):

  • Publish tweets after one-time browser authorization
  • No credentials stored — uses AIsa's OAuth relay

Installation

In Claude Code

/plugin install twitter-command-center

In OpenClaw

openclaw bundles install clawhub:@aisa/twitter-command-center

Setup

export AISA_API_KEY="your-key"

Get your API key at aisa.one. ~$0.0004 per read query, pay-as-you-go.

Usage

Automatic skill activation

Claude detects when you're working with Twitter/X and loads the skill context:

  • "What's trending on Twitter right now?"
  • "Get @anthropic's latest tweets"
  • "Search for tweets about AI agents"
  • "Post this to X: we shipped v2.0"

Python Client

Note: Use python3 or python depending on your system.

# Get user info
python3 skills/twitter-command-center/scripts/twitter_client.py user-info --username elonmusk

# Search tweets
python3 skills/twitter-command-center/scripts/twitter_client.py search --query "AI agents" --type Latest

# Get trends
python3 skills/twitter-command-center/scripts/twitter_client.py trends --woeid 1

# Authorize and post
python3 skills/twitter-command-center/scripts/twitter_client.py authorize
python3 skills/twitter-command-center/scripts/twitter_client.py post --text "Hello from OpenClaw!"

(Replace python3 with python if the command is not available on your system.)

See SKILL.md for full API documentation.

Components

twitter-command-center/
├── .codex-plugin/
│   └── plugin.json
├── skills/
│   └── twitter-command-center/
│       ├── SKILL.md
│       └── scripts/
│           └── twitter_client.py
├── openclaw.plugin.json
├── package.json
└── README.md

License

MIT