ワンクリックで
x-post
xurl CLI を使って X (Twitter) にポストする。ツイート投稿、リプライ、引用ポストに使用する。「X にポストして」「ツイートして」などのリクエストで使用する。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
xurl CLI を使って X (Twitter) にポストする。ツイート投稿、リプライ、引用ポストに使用する。「X にポストして」「ツイートして」などのリクエストで使用する。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
写真に写っている人物の顔を検出してぼかし、匿名化した画像を作成する。YuNet による 2 パス顔検出、ガウスぼかし、拡大クロップでの目視検証、取りこぼしの手動追いぼかしまでのワークフロー。「顔をぼかして」「顔にモザイク」「写真の顔を隠して」「人物を匿名化して」などのリクエストで使用する。
Analyze X creator subscription accounts through X's authenticated internal Web API. Use when asked to collect subscriber counts, subscription-only post counts, monthly prices, estimated gross monthly revenue, rankings, or summary statistics for X Subscriptions, including the user's managed set of subscribed creators.
X(Twitter)上の公開情報を検索し、投稿、アカウント、スレッド、最近の話題、評判、反応を根拠となる x.com URL 付きで調査する。「X で検索して」「X でこの投稿やアカウントを探して」「X で最近何が話題?」「X 上の反応や評判を調べて」などで使用する。投稿、返信、引用、いいね、フォロー、ブロック、ミュート、報告、削除などの書き込み操作や、指定された X URL またはログイン済み X 画面そのものを開いて閲覧・確認する依頼には使用しない。
chrome-devtools MCP でログイン済み Chrome を使い、X (Twitter) の内部 Web API (api.x.com / i/api) を fetch で呼んで一括操作する。ブロック解除、ブロック、ミュート、フォロー解除などをまとめて処理したいときに使う。X のレートリミット (短い窓あたり約 10 件) の回避方法を含む。「X で全員ブロック解除して」「まとめてミュート」「一括でフォロー解除」などのリクエストで使用する。
Check Luma event guests against X profile, follow, mutual-follow, affiliation, and recent-account-activity requirements. Use when Codex needs to review a Luma event guest table, extract pending guests and X profile links, identify missing/invalid/deleted/protected X accounts, use X relationship lookup to verify whether guests follow the logged-in organizer account, check whether candidates have posted from their own X account within the last month excluding repost-only activity using read-only internal APIs, prioritize mutual follows before followed-by-only candidates, check whether a specific X handle registered and what current Luma status it has, manage X rate limits without causing 429s, and report decline or approval-support candidates without ever performing approve, decline, or other guest write actions.
Archive only the current Codex App thread when the user invokes /archive or $archive to finish the current thread. Use the Codex App thread archive tool without passing a thread id so no other thread is archived.
| name | x-post |
| description | xurl CLI を使って X (Twitter) にポストする。ツイート投稿、リプライ、引用ポストに使用する。「X にポストして」「ツイートして」などのリクエストで使用する。 |
xurl CLI を使って X (Twitter) にポストする。
このスキルはポスト投稿専用。検索、タイムライン閲覧、リード等には使わない。xurl は X API (有料、高額) を使用するため、API コールは最小限にする。X の閲覧・検索が必要な場合は chrome-devtools MCP を使う。
brew install --cask xdevplatform/tap/xurl)xurl auth status で確認)xurl auth oauth2 でブラウザ認証が必要(ユーザーに案内する)xurl post "投稿テキスト"
改行を含む場合は JSON API を使う:
xurl -X POST /2/tweets -d '{"text":"1行目\n2行目"}'
xurl reply <tweet_id> "リプライテキスト"
xurl quote <tweet_id> "引用コメント"
xurl like <tweet_id>
xurl repost <tweet_id>
xurl read <tweet_id>
xurl search "検索クエリ" -n 20
xurl timeline
xurl mentions
xurl dm @username "メッセージ"
xurl media upload path/to/image.jpg
アップロード後に返される media_id を使って投稿:
xurl -X POST /2/tweets -d '{"text":"テキスト","media":{"media_ids":["MEDIA_ID"]}}'
xurl whoami
xurl user @username
xurl follow @username
xurl unfollow @username
xurl block @username
xurl mute @username
xurl delete <tweet_id>
xurl post で投稿https://x.com/<username>/status/<tweet_id>改行を含む場合は xurl post ではなく JSON API を使う:
xurl -X POST /2/tweets -d '{"text":"1行目\n2行目\n3行目"}'
xurl media upload <filepath> でアップロードxurl auth status で認証状態を確認する