
Timeline
- 37 installs
- Updated May 12, 2026
- tryshift-sh/skills-store
Helps with ai & agent building tasks.
About
timeline is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- timeline
- AI & Agent Building
- AI-coding skill
Timeline by the numbers
- 37 all-time installs (skills.sh)
- Ranked #8,516 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Jul 27, 2026 (Skillselion catalog sync)
npx skills add https://github.com/tryshift-sh/skills-store --skill timelineAdd 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 Timeline
Use this managed skill for reading X timelines and mentions through Shift.
When to use
- The user wants to read their home timeline
- The user wants to read a user's tweets
- The user wants to read mentions
How to invoke
Send a POST request to ${SHIFT_LOCAL_GATEWAY}/skill-router/invoke.
Home timeline:
{
"skillProvider": "x",
"skill": "timeline",
"action": "home",
"input": {
"userId": "123"
}
}User tweets:
{
"skillProvider": "x",
"skill": "timeline",
"action": "user-tweets",
"input": {
"userId": "123"
}
}Mentions:
{
"skillProvider": "x",
"skill": "timeline",
"action": "mentions",
"input": {
"userId": "123"
}
}Notes
- This skill requires X to be connected in Shift.
- Do not ask the user to paste raw credentials into chat.
{
"id": "timeline",
"name": "Timeline",
"description": "Read home timeline, user tweets, and mentions.",
"actions": {
"home": {
"upstream": {
"method": "GET",
"baseUrl": "https://api.x.com",
"path": "/2/users/{userId}/timelines/reverse_chronological",
"auth": { "mode": "bearer" }
},
"output": {
"responseSelect": "data",
"responseMap": {
"tweets": {
"$each": "$data",
"map": {
"id": "$item.id",
"text": "$item.text",
"createdAt": "$item.created_at"
}
},
"count": {
"$length": "$data"
},
"nextToken": {
"$value": "$response.meta.next_token",
"$default": null
}
}
}
},
"user-tweets": {
"upstream": {
"method": "GET",
"baseUrl": "https://api.x.com",
"path": "/2/users/{userId}/tweets",
"auth": { "mode": "bearer" }
},
"output": {
"responseSelect": "data",
"responseMap": {
"tweets": {
"$each": "$data",
"map": {
"id": "$item.id",
"text": "$item.text",
"createdAt": "$item.created_at"
}
},
"count": {
"$length": "$data"
},
"nextToken": {
"$value": "$response.meta.next_token",
"$default": null
}
}
}
},
"mentions": {
"upstream": {
"method": "GET",
"baseUrl": "https://api.x.com",
"path": "/2/users/{userId}/mentions",
"auth": { "mode": "bearer" }
},
"output": {
"responseSelect": "data",
"responseMap": {
"tweets": {
"$each": "$data",
"map": {
"id": "$item.id",
"text": "$item.text",
"createdAt": "$item.created_at"
}
},
"count": {
"$length": "$data"
},
"nextToken": {
"$value": "$response.meta.next_token",
"$default": null
}
}
}
}
}
}
Related skills
AI & Agent Buildingagents