thinkfleetai/thinkfleet-engine

twitch

Query Twitch — streams, users, games, and clips via the Helix API.

First seen Mar 1, 2026

Installation

$ npx skills add thinkfleetai/thinkfleet-engine --skill twitch

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from thinkfleetai/thinkfleet-engine · top by installs.

npx skills add thinkfleetai/thinkfleet-engine

Browse all from thinkfleetai/thinkfleet-engine

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,386 B
  • docs SUMMARY.md 82 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 3 installs

SKILL.md

Twitch

Query streams, users, games, and clips via the Twitch Helix API.

Environment Variables

  • TWITCHCLIENTID - Client ID
  • TWITCHACCESSTOKEN - 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.