
Retweet
- 37 installs
- Updated May 12, 2026
- tryshift-sh/skills-store
Helps with ai & agent building tasks.
About
retweet is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- retweet
- AI & Agent Building
- AI-coding skill
Retweet by the numbers
- 37 all-time installs (skills.sh)
- Ranked #8,545 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/tryshift-sh/skills-store --skill retweetAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 37 |
|---|---|
| Last updated | May 12, 2026 |
| Repository | tryshift-sh/skills-store ↗ |
What it does
Helps with ai & agent building tasks.
Files
X Repost
Use this managed skill for reposting and undoing reposts on X through Shift.
When to use
- The user wants to repost a post
- The user wants to undo a repost
How to invoke
Send a POST request to ${SHIFT_LOCAL_GATEWAY}/skill-router/invoke with:
{
"skillProvider": "x",
"skill": "retweet",
"action": "create",
"input": {
"userId": "123",
"tweetId": "456"
}
}To undo a repost, use:
{
"skillProvider": "x",
"skill": "retweet",
"action": "delete",
"input": {
"userId": "123",
"tweetId": "456"
}
}Notes
- This skill requires X to be connected in Shift.
- Do not ask the user to paste raw credentials into chat.
{
"id": "retweet",
"name": "Retweet",
"description": "Retweet and unretweet tweets.",
"actions": {
"create": {
"upstream": {
"method": "POST",
"baseUrl": "https://api.x.com",
"path": "/2/users/{userId}/retweets",
"auth": { "mode": "bearer" }
},
"input": {
"bodyTemplate": {
"tweet_id": "$input.tweetId"
}
},
"output": {
"responseSelect": "data",
"responseMap": {
"retweeted": {
"$value": "$data.retweeted",
"$default": false
}
}
}
},
"delete": {
"upstream": {
"method": "DELETE",
"baseUrl": "https://api.x.com",
"path": "/2/users/{userId}/retweets/{tweetId}",
"auth": { "mode": "bearer" }
},
"output": {
"responseSelect": "data",
"responseMap": {
"retweeted": {
"$not": "$data.retweeted",
"$default": true
}
}
}
}
}
}
Related skills
AI & Agent Buildingagents