โ† All skills
Tencent SkillHub ยท Developer Tools

Wip X

X Platform API. Read posts, search tweets, post, upload media.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

X Platform API. Read posts, search tweets, post, upload media.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Item is unstable.

This item is timing out or returning errors right now. Review the source page and try again later.

Quick setup
  1. Wait for the source to recover or retry later.
  2. Review SKILL.md only after the source returns a real package.
  3. Do not rely on this source for automated install yet.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Manual review
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
CHANGELOG.md, README.md, SKILL.md, auth.mjs, cli.mjs, core.mjs

Validation

  • Wait for the source to recover or retry later.
  • Review SKILL.md only after the download returns a real package.
  • Treat this source as transient until the upstream errors clear.

Install with your agent

Agent handoff

Use the source page and any available docs to guide the install because the item is currently unstable or timing out.

  1. Open the source page via Review source status.
  2. If you can obtain the package, extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the source page and extracted files.
New install

I tried to install a skill package from Yavira, but the item is currently unstable or timing out. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required. Then review README.md for any prerequisites, environment setup, or post-install checks.

Upgrade existing

I tried to upgrade a skill package from Yavira, but the item is currently unstable or timing out. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need. Then review README.md for any prerequisites, environment setup, or post-install checks.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 16 sections Open source page

wip-x

X Platform API. Sensor (read) + Actuator (write). All X Platform functions in one tool.

Sensor: Read

Use fetch_post for: Getting the full content of a specific tweet by URL or ID Reading replies, quotes, engagement metrics Extracting tweet data for processing Use search_recent for: Finding tweets matching a query (last 7 days) Searching by hashtags, mentions, or keywords Getting raw tweet data (not AI-summarized... use wip-grok search_x for that) Use get_bookmarks for: Reading the user's bookmarked tweets Reviewing saved content Use get_user for: Looking up a user's profile, bio, follower count Checking if an account exists

Actuator: Write

Use post_tweet for: Posting new tweets Replying to existing tweets Quote-tweeting with commentary Posting with images or video (upload first) Use upload_media for: Uploading images (PNG, JPG, GIF, WebP) Uploading video (MP4) Getting media IDs for use in post_tweet Use delete_tweet for: Removing a previously posted tweet Use bookmark_post for: Saving a tweet for later

Do NOT Use For

AI-powered search summarization (use wip-grok search_web or search_x instead) Image generation (use wip-grok generate_image) Video generation (use wip-grok generate_video) Trending topic analysis (use wip-grok search_x for AI-summarized trends)

fetch_post(options)

const result = await fetch_post({ id_or_url: 'https://x.com/user/status/123' }); // result: { data, includes, errors } Options: id_or_url (required). Accepts tweet ID or full URL.

search_recent(options)

const result = await search_recent({ query: 'AI agents', max_results: 20 }); // result: { data, includes, meta, errors } Options: query (required), max_results (10-100), start_time, end_time, sort_order

get_bookmarks(options)

const result = await get_bookmarks({ max_results: 20 }); Options: max_results, pagination_token. Requires OAuth.

get_user(options)

const result = await get_user({ username_or_id: 'parkertoddbrooks' }); Options: username_or_id (required). Accepts username (with or without @) or numeric ID.

post_tweet(options)

const result = await post_tweet({ text: 'Hello world', reply_to: '123', media_ids: ['456'] }); // result: { data: { id, text }, errors } Options: text (required), reply_to, media_ids, quote_tweet_id. Requires OAuth.

upload_media(options)

const result = await upload_media({ file_path: './photo.jpg' }); // result: { data: { id }, errors } Options: file_path (required), media_type (auto-detected), media_data (base64 alternative)

delete_tweet(options)

const result = await delete_tweet({ id: '123456' }); Options: id (required). Requires OAuth.

"X Platform API credentials not found"

Set X_BEARER_TOKEN for read-only, or all four OAuth tokens for read+write. 1Password: vault "Agent Secrets", item "X Platform API".

"Could not resolve authenticated user ID"

Bookmarks and write operations need OAuth 1.0a (all four tokens), not just bearer token.

403 Forbidden on post/delete

Your app needs "Read and Write" permissions in the X Developer Portal. Check at https://developer.x.com/en/portal/dashboard

Rate limits

X API v2 has per-endpoint rate limits. The SDK handles rate limit headers automatically. If you hit limits, back off and retry.

API Documentation

X API v2: https://docs.x.com/x-api XDK SDK: https://github.com/xdevplatform/xdk Authentication: https://docs.x.com/resources/authentication

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs3 Scripts
  • SKILL.md Primary doc
  • CHANGELOG.md Docs
  • README.md Docs
  • auth.mjs Scripts
  • cli.mjs Scripts
  • core.mjs Scripts