Install
First, install the AIsa CLI if you have not already:What can agents do with it?
Post tweets
Publish new posts or replies with user authorization.
Like tweets
Like or unlike tweets from a linked account.
Follow users
Follow, unfollow, and check follow relationships.
Engagement workflows
Coordinate lightweight social actions safely.
When to use
- The user wants Twitter/X research plus posting, liking, unliking, following, or unfollowing workflows.
- The task can use a Python client with
AISA_API_KEYand explicit OAuth approval. - The workflow needs a single package that covers read, post, and engagement actions.
When NOT to use
- The user needs cookie extraction, password login, or a fully local Twitter client.
- The workflow must avoid relay-based network calls or media upload through
api.aisa.one. - The task needs undocumented secrets or browser-derived auth values.
Quick Reference
- Required environment variable:
AISA_API_KEY - Read client:
scripts/twitter_client.py - Post client:
scripts/twitter_oauth_client.py - Engage client:
scripts/twitter_engagement_client.py - References:
references/post_twitter.md,references/engage_twitter.md
Setup
https://api.aisa.one/apis/v1/....
Capabilities
- Read user, tweet, trend, list, community, and Spaces data.
- Publish text, image, and video posts after explicit OAuth approval.
- Like, unlike, follow, and unfollow through the engagement client once authorization exists.
Common Commands
Workflow
- Use
references/post_twitter.mdfor post, reply, quote, and media-upload actions. - Use
references/engage_twitter.mdfor likes, unlikes, follows, and unfollows. - Obtain OAuth authorization before any write action.
Guardrails
- Do not ask for passwords, browser cookies, or undocumented secrets.
- Do not guess target accounts or tweet IDs when multiple candidates exist.
- Do not claim engagement or posting succeeded unless the relay request returns success.
Get started
- Sign up at aisa.one (new accounts start with $2 free credit).
- Generate an API key from the console.
- Set your key and install the skill:
- Start a new agent session so the runtime loads the updated skill instructions.
Related
Link an X Account
Start the OAuth flow for write actions.
Post a Tweet
Endpoint reference for posting.
AIsa Twitter Command Center
Search and engagement workflow hub.