Agent skill
twitch
Query Twitch — streams, users, games, and clips via the Helix API.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/twitch
Metadata
Additional technical details for this skill
- thinkfleetbot
-
{ "emoji": "\ud83c\udfae", "requires": { "env": [ "TWITCH_CLIENT_ID", "TWITCH_ACCESS_TOKEN" ], "bins": [ "curl", "jq" ] } }
SKILL.md
Twitch
Query streams, users, games, and clips via the Twitch Helix API.
Environment Variables
TWITCH_CLIENT_ID- Client IDTWITCH_ACCESS_TOKEN- OAuth access token
Get user
curl -s -H "Client-ID: $TWITCH_CLIENT_ID" -H "Authorization: Bearer $TWITCH_ACCESS_TOKEN" \
"https://api.twitch.tv/helix/users?login=USERNAME" | jq '.data[0] | {id, login, display_name, view_count}'
Get streams
curl -s -H "Client-ID: $TWITCH_CLIENT_ID" -H "Authorization: Bearer $TWITCH_ACCESS_TOKEN" \
"https://api.twitch.tv/helix/streams?first=10" | jq '.data[] | {user_name, game_name, viewer_count, title}'
Get top games
curl -s -H "Client-ID: $TWITCH_CLIENT_ID" -H "Authorization: Bearer $TWITCH_ACCESS_TOKEN" \
"https://api.twitch.tv/helix/games/top?first=10" | jq '.data[] | {id, name}'
Get clips
curl -s -H "Client-ID: $TWITCH_CLIENT_ID" -H "Authorization: Bearer $TWITCH_ACCESS_TOKEN" \
"https://api.twitch.tv/helix/clips?broadcaster_id=BROADCASTER_ID&first=5" | jq '.data[] | {id, title, view_count, url}'
Notes
- Read-only operations. No confirmation needed for queries.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?