用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/aibot88/sec_skill_store --skill ingest-tweet命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | ingest-tweet |
| description | Extract full text from X/Twitter posts for wiki ingestion. Uses FXTwitter API, no auth required. |
| user-invocable | false |
| allowed-tools | Bash(curl *) |
Extract the full text of an X/Twitter post.
Parse the URL to extract username and tweet ID:
https://x.com/{user}/status/{id} or https://twitter.com/{user}/status/{id}?s=46, ?t=...)Fetch via FXTwitter API (free, no auth, returns full text including long "note tweets"):
curl -s "https://api.fxtwitter.com/{user}/status/{id}"
tweet.text — full tweet text (with expanded URLs, not t.co links)tweet.author.name / tweet.author.screen_name — authortweet.created_at — datetweet.likes, tweet.retweets, tweet.replies — engagementtweet.quote — quoted tweet (if present)tweet.media — images/videos (if present)raw/<author>-tweet-<id>.md with YAML header:---
source-url: <tweet-url>
title: "<author> tweet on <topic>"
author: "<name> (@<screen_name>)"
date-fetched: <today>
source-type: tweet
---
If FXTwitter fails, use oEmbed (truncates long tweets):
curl -s "https://publish.x.com/oembed?url=<original-url>"
None — uses only curl.
ronan-skills/x-scan — generic sibling for browsing tweets (URL, user timeline, topic search) without vault persistence. Use this skill when you want to keep the content.