Skip to main content Skills Marketplace コミュニティが作成したAIスキルを発見・探索
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/KunanonJ/ai-skills-hub --skill aside-x-twitterコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Zipをダウンロード ダウンロード中... cursor-plugin-cf-agents-sdk Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, chat applications, voice agents, or browser automation. Covers Agent class, state management, callable RPC, Workflows, durable execution, queues, retries, observability, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.
cursor-plugin-cf-cloudflare Comprehensive Cloudflare platform skill covering Workers, Pages, storage (KV, D1, R2), AI (Workers AI, Vectorize, Agents SDK), feature flags (Flagship), networking (Tunnel, Spectrum), security (WAF, DDoS), and infrastructure-as-code (Terraform, Pulumi). Use for any Cloudflare development task. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.
name aside-x-twitter description Read this skill when you need to use X (Twitter). Don't have to open a browser tab. metadata {"version":"0.1.0"}
Twitter / X
Use the twitter global in the REPL tool. It allows you to control the X/Twitter website with API interface- no tab open needed.
Quick Reference
const me = await twitter.getMe ();
console .log (me);
const timeline = await twitter.getTimeline ({ count : 20 });
console .log (timeline.tweets .map (t => `@${t.author.screenName} : ${t.text.slice(0 , 80 )} ` ));
const results = twitter. ( , { : , : });
. (results. );
tweet = twitter. ( );
. (tweet);
thread = twitter. ( );
. (thread. );
user = twitter. ( );
. (user);
posted = twitter. ( );
. (posted. );
reply = twitter. ( , );
twitter. ( );
twitter. ( );
twitter. ( );
twitter. ( );
twitter. ( );
inbox = twitter. ();
. (inbox. );
history = twitter. ( );
. (history. );
twitter. ( , );
twitter. ( );
twitter. ( );
notifs = twitter. ({ : });
. (notifs. );
await
search
'AI agents'
count
20
product
'Latest'
console
log
tweets
const
await
getTweet
'1234567890'
console
log
const
await
getTweetThread
'1234567890'
console
log
tweets
const
await
getUser
'steipete'
console
log
const
await
tweet
'Hello from Aside!'
console
log
id
const
await
reply
'1234567890'
'Great thread!'
await
like
'1234567890'
await
retweet
'1234567890'
await
bookmark
'1234567890'
await
follow
'123456'
await
unfollow
'123456'
const
await
getDmInbox
console
log
conversations
const
await
getDmConversation
'123-456'
console
log
messages
await
sendDm
'123456'
'Hello!'
await
block
'123456'
await
mute
'123456'
const
await
getNotifications
count
10
console
log
notifications
Methods
twitter.getMe(): Promise<XUser>Get the authenticated user's profile.
twitter.getUser(screenName: string): Promise<XUser>Get a user profile by screen name (handle, without @).
twitter.getTweet(tweetId: string): Promise<XTweet>Get a single tweet by ID.
twitter.getTweetThread(tweetId: string): Promise<XTimelineResponse>Get the focal tweet plus visible same-author replies in the thread. Use this for X status pages when the user asks what the current page/thread is about.
twitter.getTimeline(opts?): Promise<XTimelineResponse>Get home timeline (Following tab, chronological).
opts.count — Number of tweets (default 20).
opts.cursor — Pagination cursor from previous response's nextCursor.
twitter.search(query: string, opts?): Promise<XTimelineResponse>
query — Search query (supports X search operators like from:user, to:user, since:2026-01-01).
opts.count — Number of results (default 20).
opts.product — 'Latest' (default), 'Top', 'People', 'Photos', 'Videos'.
opts.cursor — Pagination cursor.
twitter.getUserTweets(screenName: string, opts?): Promise<XTimelineResponse>Get a user's tweets by screen name.
opts.count — Number of tweets (default 20).
opts.cursor — Pagination cursor.
twitter.getBookmarks(opts?): Promise<XTimelineResponse>
twitter.tweet(text: string, opts?): Promise<XTweet>Post a new tweet. Returns the created tweet.
opts.mediaIds — Array of media IDs (from media upload) to attach.
twitter.reply(tweetId: string, text: string, opts?): Promise<XTweet>Reply to a tweet. Returns the reply.
twitter.deleteTweet(tweetId: string): Promise<void>
twitter.like(tweetId: string): Promise<void>
twitter.unlike(tweetId: string): Promise<void>
twitter.retweet(tweetId: string): Promise<void>
twitter.unretweet(tweetId: string): Promise<void>
twitter.bookmark(tweetId: string): Promise<void>
twitter.unbookmark(tweetId: string): Promise<void>
twitter.follow(userId: string): Promise<void>Follow by user ID. Get user ID from twitter.getUser(screenName).id.
twitter.unfollow(userId: string): Promise<void>
twitter.getDmInbox(): Promise<XDmInbox>Get DM inbox (list of conversations with last message preview).
twitter.getDmConversation(conversationId: string, opts?): Promise<XDmHistory>Get messages in a DM conversation. Conversation ID format: "{lowerUserId}-{higherUserId}".
opts.maxId — Pagination cursor for older messages (from nextCursor).
twitter.sendDm(userId: string, text: string, opts?): Promise<any>Send a DM to a user by their user ID. Conversation ID is auto-constructed.
opts.mediaId — Attach media (from media upload).
opts.replyToId — Reply to a specific message.
twitter.block(userId: string): Promise<void>
twitter.unblock(userId: string): Promise<void>
twitter.mute(userId: string): Promise<void>
twitter.unmute(userId: string): Promise<void>
twitter.getNotifications(opts?): Promise<{ notifications: XNotification[]; nextCursor?: string }>Get recent notifications.
opts.count — Number of notifications (default 20).
opts.cursor — Pagination cursor.
Types interface XUser {
id : string ;
screenName : string ;
name : string ;
description : string ;
followersCount : number ;
followingCount : number ;
tweetCount : number ;
profileImageUrl : string ;
isBlueVerified : boolean ;
}
interface XTweet {
id : string ;
text : string ;
author : XUser ;
createdAt : Date ;
likes : number ;
retweets : number ;
replies : number ;
bookmarks : number ;
views : number ;
media : XMedia [];
inReplyToId ?: string ;
quotedTweet ?: XTweet ;
}
interface XMedia {
type : 'photo' | 'video' | 'animated_gif' ;
url : string ;
width : number ;
height : number ;
}
interface XTimelineResponse {
tweets : XTweet [];
nextCursor ?: string ;
}
interface XDmMessage {
id : string ;
text : string ;
senderId : string ;
recipientId : string ;
createdAt : Date ;
mediaUrl ?: string ;
}
interface XDmConversation {
conversationId : string ;
participants : string [];
lastMessage ?: XDmMessage ;
}
interface XDmInbox { conversations : XDmConversation [] }
interface XDmHistory { messages : XDmMessage []; nextCursor ?: string }
interface XNotification {
id : string ;
type : string ;
timestamp : Date ;
message : string ;
raw : any ;
}