
User
- 37 installs
- Updated May 12, 2026
- tryshift-sh/skills-store
Helps with ai & agent building tasks.
About
user is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- user
- AI & Agent Building
- AI-coding skill
User 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 userAdd 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 User
Use this managed skill for retrieving the authenticated X account profile through Shift.
When to use
- The user wants to inspect the connected X account
- The user asks which X account is connected
How to invoke
Send a POST request to ${SHIFT_LOCAL_GATEWAY}/skill-router/invoke with:
{
"skillProvider": "x",
"skill": "user",
"action": "me",
"input": {}
}Notes
- This skill requires X to be connected in Shift.
- Do not ask the user to paste raw credentials into chat.
{
"id": "user",
"name": "User Profile",
"description": "Retrieve the authenticated X account profile.",
"actions": {
"me": {
"upstream": {
"method": "GET",
"baseUrl": "https://api.x.com",
"path": "/2/users/me",
"auth": { "mode": "bearer" }
},
"output": {
"responseSelect": "data",
"responseMap": {
"id": "$data.id",
"name": "$data.name",
"username": "$data.username"
}
}
}
}
}
Related skills
AI & Agent Buildingagents