Read Gist
SkillDev toolsFetch and display a GitHub gist. Triggers when the user asks to read, fetch, or view a URL from gist.github.com.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Read Gist skill
What this skill tells your AI
The instructions your AI receives, as published by aztec-labs-eng/aztec-node in yarn-project/.claude/skills/read-gist/SKILL.md and read by ahel’s review.
Fetch and display the contents of a GitHub gist.
Trigger
Activate this skill when the user provides a URL matching gist.github.com or asks to fetch/read a gist by ID.
Parameters
The argument is a gist URL or gist ID: $ARGUMENTS
Steps
-
Extract the gist ID from the input. It can be:
- A full URL like
https://gist.github.com/<user>/<id>-> extract<id> - A full URL like
https://gist.github.com/<id>-> extract<id> - A raw URL like
https://gist.githubusercontent.com/...-> extract the gist ID segment - A bare gist ID (hex string)
- A full URL like
-
Try
gh gist viewfirst (preferred):gh gist view <id> --rawIf the gist has multiple files, list them first with
gh gist view <id>(without--raw) to show filenames, then fetch with--rawor specify a filename with-f <filename>if the user asked for a specific file. -
Fallback to WebFetch only if
ghis not available or the command fails with an auth/install error:- Fetch
https://gist.githubusercontent.com/<user>/<id>/rawfor single-file gists - Or fetch the gist API endpoint
https://api.github.com/gists/<id>and extract file contents from the JSON response
- Fetch
-
Return the contents to the caller. If there are multiple files, show each file with its filename as a header.
Signals
- GitHub stars
- 23
- Forks
- 4
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
read-gist- Source
- github.com/aztec-labs-eng/aztec-node