
Gist
gistGitHub 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.
Acciones disponibles (13)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
Check Gist StarGIST_CHECK_GIST_STARAcciónTool to check if a gist is starred. Use when you need to determine if the authenticated user has starred a specific gist.
GIST_CHECK_GIST_STARAcciónTool to check if a gist is starred. Use when you need to determine if the authenticated user has starred a specific gist.
Parámetros de entrada
gist_idstringObligatorioThe unique identifier of the gist.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete Gist CommentGIST_DELETE_GIST_COMMENTAcciónTool 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'".
GIST_DELETE_GIST_COMMENTAcciónTool 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'".
Parámetros de entrada
gist_idstringObligatorioThe unique identifier of the gist.
comment_idintegerObligatorioThe unique identifier of the comment to delete.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get GistGIST_GET_GISTAcciónTool to retrieve a specific gist by its ID. Use when you have a gist_id and need complete gist details.
GIST_GET_GISTAcciónTool to retrieve a specific gist by its ID. Use when you have a gist_id and need complete gist details.
Parámetros de entrada
gist_idstringObligatorioThe unique identifier of the gist.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Gist CommentGIST_GET_GIST_COMMENTAcciónTool 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.
GIST_GET_GIST_COMMENTAcciónTool 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.
Parámetros de entrada
gist_idstringObligatorioThe ID of the gist
comment_idintegerObligatorioThe ID of the comment
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Gist RevisionGIST_GET_GIST_REVISIONAcciónTool to retrieve a specific gist revision. Use when you need details of a past state for an existing gist by commit SHA.
GIST_GET_GIST_REVISIONAcciónTool to retrieve a specific gist revision. Use when you need details of a past state for an existing gist by commit SHA.
Parámetros de entrada
shastringObligatorioThe commit SHA of the desired revision.
gist_idstringObligatorioThe unique identifier of the gist.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List Gist CommentsGIST_LIST_GIST_COMMENTSAcciónTool 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'.
GIST_LIST_GIST_COMMENTSAcciónTool 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'.
Parámetros de entrada
pageintegerPage number to fetch. Default: 1.
gist_idstringObligatorioThe ID of the gist to list comments for
per_pageintegerResults per page (max 100). Default: 30.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List Gist CommitsGIST_LIST_GIST_COMMITSAcciónTool to list the commit history of a gist. Use after you have the gist ID to review its revisions.
GIST_LIST_GIST_COMMITSAcciónTool to list the commit history of a gist. Use after you have the gist ID to review its revisions.
Parámetros de entrada
pageintegerPage number of the results to fetch
acceptstringResponse media type. Recommended: application/vnd.github+json
gist_idstringObligatorioThe unique identifier of the gist to list commits for.
per_pageintegerNumber of results per page (max 100)
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List Gist ForksGIST_LIST_GIST_FORKSAcciónTool to list forks of a gist. Use after obtaining a gist_id to retrieve all forks for the gist.
GIST_LIST_GIST_FORKSAcciónTool to list forks of a gist. Use after obtaining a gist_id to retrieve all forks for the gist.
Parámetros de entrada
pageintegerPage number to fetch. Default: 1
gist_idstringObligatorioThe ID of the gist to list forks for
per_pageintegerResults per page (max 100). Default: 30
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List GistsGIST_LIST_GISTSAcciónTool to list the authenticated user's gists or all public gists if called anonymously. Use after setting a valid GitHub token in headers.
GIST_LIST_GISTSAcciónTool to list the authenticated user's gists or all public gists if called anonymously. Use after setting a valid GitHub token in headers.
Parámetros de entrada
pageintegerPage number of results to fetch. Default: 1 if not provided.
sincestringOnly show gists last updated after this ISO 8601 timestamp (YYYY-MM-DDTHH:MM:SSZ)
acceptstringMedia type for the response. Example: 'application/vnd.github+json'
per_pageintegerNumber of results per page (1-100). Default: 30 if not provided.
Parámetros de salida
dataobject[]ObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List Starred GistsGIST_LIST_STARRED_GISTSAcciónTool to list the authenticated user's starred gists. Use when you need to retrieve all gists the user has starred.
GIST_LIST_STARRED_GISTSAcciónTool to list the authenticated user's starred gists. Use when you need to retrieve all gists the user has starred.
Parámetros de entrada
pageintegerPage number of the results to fetch
sincestringOnly list gists updated after this ISO 8601 timestamp (YYYY-MM-DDTHH:MM:SSZ)
acceptstringResponse media type. Recommended: application/vnd.github+json
per_pageintegerNumber of results per page (max 100)
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List User GistsGIST_LIST_USER_GISTSAcciónTool to list public gists for a specified GitHub user. Use when you have a username and need their gists.
GIST_LIST_USER_GISTSAcciónTool to list public gists for a specified GitHub user. Use when you have a username and need their gists.
Parámetros de entrada
pageintegerPage number of results to fetch.
sincestringOnly show gists updated after this ISO 8601 timestamp (YYYY-MM-DDTHH:MM:SSZ)
per_pageintegerNumber of results per page (1-100).
usernamestringObligatorioThe GitHub username whose public gists will be listed
Parámetros de salida
dataobject[]ObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Unstar GistGIST_UNSTAR_GISTAcciónTool to unstar a gist. Use after confirming the gist has been previously starred.
GIST_UNSTAR_GISTAcciónTool to unstar a gist. Use after confirming the gist has been previously starred.
Parámetros de entrada
gist_idstringObligatorioThe unique identifier of the gist to unstar.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update Gist CommentGIST_UPDATE_GIST_COMMENTAcciónTool to update a Gist comment. Use when you need to modify an existing comment after confirming the gist_id and comment_id.
GIST_UPDATE_GIST_COMMENTAcciónTool to update a Gist comment. Use when you need to modify an existing comment after confirming the gist_id and comment_id.
Parámetros de entrada
bodystringObligatorioThe updated text for the comment.
gist_idstringObligatorioThe ID of the Gist to which the comment belongs.
comment_idintegerObligatorioThe ID of the comment to update.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not