GitHub Gist is a service provided by GitHub that allows users to share code snippets, notes, and other text-based content. It supports both public and private gists, enabling easy sharing and collaboration.
Tool to check if a gist is starred. Use when you need to determine if the authenticated user has starred a specific gist.
Tool to delete a comment on a gist. Use when you have both the gist_id and comment_id and want to remove that comment. Example prompt: "Delete comment 42 from gist 'aa5a315d61ae9438b18d'".
Tool to retrieve a specific gist by its ID. Use when you have a gist_id and need complete gist details.
Tool to get a specific comment on a gist. Use when you need to retrieve details of a particular comment given gist_id and comment_id.
Tool to retrieve a specific gist revision. Use when you need details of a past state for an existing gist by commit SHA.
Tool to list comments on a gist. Use after confirming the gist_id to retrieve comments for a specific gist. Example: 'List comments for gist abc123'.