/install oo-twitter
Operate Twitter through your OOMOL-connected account. This skill calls the twitter connector with the oo CLI; OOMOL injects credentials server-side, so you never handle raw tokens.
Category: Social, Marketing. Exposes 71 action(s).
Running an action
Assume the user has already installed the oo CLI, signed in, and connected Twitter. Do not run oo auth login or open the connection URL proactively — just run the action. Fall back to First-time setup only when a command actually fails with an auth or connection error.
1. Inspect the contract to get the authoritative input/output schema before building a payload:
oo connector schema "twitter" --action "\x3Caction_name>"
2. Run the action with a JSON payload that matches the input schema:
oo connector run "twitter" --action "\x3Caction_name>" --data '\x3Cjson>' --json
--datatakes a JSON object string or@path/to/file.json; omit it to send{}.- The response is
{ "data": ..., "meta": { "executionId": "..." } }; the execution id lives undermeta.executionId.
Each action below links to a reference file with its purpose and exact commands. Read the linked file, then fetch the live schema with oo connector schema before constructing --data.
Available actions
add_list_member— Add a user account as a member of an X List.add_post_to_bookmarks— Add a Tweet to bookmarks for the authenticated user account.bookmarks_by_user— Get bookmarked Tweets for a user account.create_compliance_job— Create a compliance job using app-only auth.create_dm_conversation— Create a new group Direct Message conversation with an initial message.create_list— Create a new X List for the authenticated user account.creation_of_a_post— Create a Tweet for the authenticated X user.delete_dm— Delete a Direct Message event from the authenticated user account.delete_list— Delete a List owned by the authenticated user account.follow_list— Follow an X List from the authenticated user account.follow_user— Follow a target user from the authenticated user account.followers_by_user_id— Get followers for a user account.following_by_user_id— Get followed accounts for a user account.full_archive_search— Search the full public Tweet archive using app-only auth.get_compliance_job— Get a compliance job by job ID using app-only auth.get_compliance_jobs— List compliance jobs using app-only auth.get_dm_conversation_events— Get Direct Message events for a one-to-one conversation with a participant.get_dm_event— Get a Direct Message event by event ID and optional expanded objects.get_list— Get a List by List ID and optional expanded owner objects.get_list_followers— Get users who follow a given X List.get_list_members— Get users who are members of a given X List.get_media_upload_status— Get the processing status for a chunked X media upload.get_muted_users— Get muted accounts for a user account.get_post_retweeters_action— Get users who retweeted a given Tweet ID.get_post_retweets— Get Tweet objects that retweeted a given Tweet ID.get_recent_dm_events— Get recent Direct Message events for the authenticated user account.get_space_by_id— Get a Space by Space ID and optional expanded objects.get_space_posts— Get Tweets that were shared in a given X Space.get_space_ticket_buyers— Get ticket buyers for a ticketed X Space.get_spaces_by_creators— Get Spaces created by up to 100 user accounts.get_spaces_by_ids— Get up to 100 Spaces by Space ID and optional expanded objects.get_user_by_id— Get a public X user profile by user ID and optional expanded objects.get_user_followed_lists— Get Lists followed by a user account.get_user_list_memberships— Get Lists that include a given user as a member.get_user_owned_lists— Get Lists owned by a given user account.get_user_pinned_lists— Get Lists pinned by a given user account.get_users_by_ids— Get up to 100 public X user profiles by user ID and optional expanded objects.hide_replies— Hide or unhide replies for a Tweet authored by the authenticated X user.list_post_likers— Get users who liked a given Tweet ID.list_posts_timeline_by_list_id— Get Tweets from a given X List timeline.mute_user— Mute a target user from the authenticated user account.pin_list— Pin an X List for the authenticated user account.post_delete_by_post_id— Delete a Tweet authored by the authenticated X user.post_lookup_by_post_id— Get a public Tweet by Tweet ID and optional expanded objects.post_lookup_by_post_ids— Get up to 100 public Tweets by Tweet ID and optional expanded objects.recent_search— Search recent Tweets from the last seven days using X search syntax.remove_list_member— Remove a user account from an X List.remove_post_from_bookmarks— Remove a Tweet from bookmarks for the authenticated user account.retrieve_dm_conversation_events— Get Direct Message events for a Direct Message conversation ID.retrieve_posts_that_quote_a_post— Get Tweets that quote a given Tweet ID.returns_post_objects_liked_by_the_provided_user_id— Get Tweets liked by a user account.retweet_post— Retweet a Tweet from the authenticated user account.search_full_archive_counts— Count Tweets over the full public archive using app-only auth.search_recent_counts— Count recent Tweets from the last seven days using X search syntax.search_spaces— Search X Spaces by query text and optional Space filters.send_a_new_message_to_a_user— Send a new Direct Message to a user account.send_dm_to_conversation— Send a new Direct Message to an existing conversation.unfollow_list— Unfollow an X List from the authenticated user account.unfollow_user— Unfollow a target user from the authenticated user account.unlike_post— Unlike a Tweet from the authenticated user account.unmute_user— Unmute a target user from the authenticated user account.unpin_list— Unpin an X List for the authenticated user account.unretweet_post— Undo a Retweet from the authenticated user account.update_list— Update List attributes for a List owned by the authenticated user account.upload_large_media— Upload a video or other large media file to X from a temporary HTTP URL using chunked media upload.upload_media— Upload a single image to X and return the created media identifiers.user_home_timeline_by_user_id— Get the reverse chronological home timeline for a user account.user_like_post— Like a Tweet from the authenticated user account.user_lookup_by_username— Get a public X user profile by username and optional expanded objects.user_lookup_by_usernames— Get up to 100 public X user profiles by username and optional expanded objects.user_lookup_me— Get the currently authenticated X user profile and optional expanded objects.
Safety
- Read actions (get / list / search) are safe to run directly.
- Create, update, send, or post actions change Twitter state — confirm the exact payload and effect with the user before running.
- Delete or remove actions are destructive — always confirm the target and get explicit approval first.
First-time setup
These are one-time steps — do not repeat them on every call. Run a step only when a command fails for the matching reason.
-
oo: command not found— install the oo CLI (other platforms: \x3Chttps://cli.oomol.com/install-guide.md>):curl -fsSL https://cli.oomol.com/install.sh | bash # macOS / Linuxirm https://cli.oomol.com/install.ps1 | iex # Windows PowerShell -
Not signed in / authentication error — sign in to your OOMOL account once:
oo auth login -
scope_missing/credential_expired/app_not_ready/app_not_found— Twitter is not connected, or the connection expired or lacks a scope. Connect once (auth type: OAuth2) at:https://console.oomol.com/app-connections?provider=twitter -
HTTP 402 /
OOMOL_INSUFFICIENT_CREDIT— billing stop. Recharge athttps://console.oomol.com/billing/token-rechargebefore retrying.
Resources
- Twitter homepage: https://x.com
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install oo-twitter - After installation, invoke the skill by name or use
/oo-twitter - Provide required inputs per the skill's parameter spec and get structured output
What is Twitter?
Twitter (x.com). Use this skill for ANY Twitter request — reading, creating, updating, and deleting data. Whenever a task involves Twitter, use this skill in... It is an AI Agent Skill for Claude Code / OpenClaw, with 35 downloads so far.
How do I install Twitter?
Run "/install oo-twitter" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Twitter free?
Yes, Twitter is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Twitter support?
Twitter is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Twitter?
It is built and maintained by OOMOL (@oomol); the current version is v1.0.0.