Install
openclaw skills install openclaw-twitter-post-engage-slot3Search X/Twitter profiles, tweets, trends, and approved engagement actions through the AISA relay. Use when: the user asks for Twitter/X research, posting, likes, follows, or related workflows without sharing passwords. Write actions require OAuth approval plus an explicit final confirmation artifact before execution.
openclaw skills install openclaw-twitter-post-engage-slot3Runtime-focused release bundle for Twitter/X search, posting, and engagement through the AISA relay.
AISA_API_KEY and explicit OAuth approval.api.aisa.one.AISA_API_KEY./scripts/twitter_client.py./scripts/twitter_oauth_client.py./scripts/twitter_engagement_client.py./references/post_twitter.md, ./references/engage_twitter.mdexport AISA_API_KEY="your-key"
All network calls go to https://api.aisa.one/apis/v1/....
python3 scripts/twitter_client.py search --query "AI agents" --type Latest
python3 scripts/twitter_oauth_client.py authorize
# After the user approves the final confirmation artifact:
python3 scripts/twitter_oauth_client.py post --text "Hello from AIsa"
python3 scripts/twitter_engagement_client.py like-latest --user "@elonmusk"
python3 scripts/twitter_engagement_client.py follow-user --user "@elonmusk"
./references/post_twitter.md for post, reply, quote, and media-upload actions../references/engage_twitter.md for likes, unlikes, follows, and unfollows.These points summarize the common reasons similar skills are marked Suspicious and how this release addresses them:
api.aisa.one.AISA_API_KEY and does not ask for passwords, cookies, CT0, or other legacy secrets.SKILL.md, scripts/, and the required references, while omitting non-runtime files such as README.md and _meta.json.scripts/twitter_client.py preserves the read API surface from the original bundle.scripts/twitter_oauth_client.py preserves OAuth and posting behavior from the original bundle.scripts/twitter_engagement_client.py preserves like, unlike, follow, and unfollow behavior from the original bundle.