NAiOS IconNAiOS Logo
Volver al catálogo

Gist

gist

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.

Acciones
13
Triggers
0
Autenticación
OAuth gestionado
No
Información técnica: el detalle de parámetros, schemas y triggers de esta página está pensado para equipos de integración. Si solo necesitas saber si tu herramienta favorita está disponible, basta con ver la lista de acciones.

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ón

Tool 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_idstringObligatorio

    The unique identifier of the gist.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Delete Gist CommentGIST_DELETE_GIST_COMMENTAcción

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'".

Parámetros de entrada

  • gist_idstringObligatorio

    The unique identifier of the gist.

  • comment_idintegerObligatorio

    The unique identifier of the comment to delete.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get GistGIST_GET_GISTAcción

Tool 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_idstringObligatorio

    The unique identifier of the gist.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Gist CommentGIST_GET_GIST_COMMENTAcción

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.

Parámetros de entrada

  • gist_idstringObligatorio

    The ID of the gist

  • comment_idintegerObligatorio

    The ID of the comment

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Gist RevisionGIST_GET_GIST_REVISIONAcción

Tool 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

  • shastringObligatorio

    The commit SHA of the desired revision.

  • gist_idstringObligatorio

    The unique identifier of the gist.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List Gist CommentsGIST_LIST_GIST_COMMENTSAcción

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'.

Parámetros de entrada

  • pageinteger

    Page number to fetch. Default: 1.

  • gist_idstringObligatorio

    The ID of the gist to list comments for

  • per_pageinteger

    Results per page (max 100). Default: 30.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List Gist CommitsGIST_LIST_GIST_COMMITSAcción

Tool to list the commit history of a gist. Use after you have the gist ID to review its revisions.

Parámetros de entrada

  • pageinteger

    Page number of the results to fetch

  • acceptstring

    Response media type. Recommended: application/vnd.github+json

  • gist_idstringObligatorio

    The unique identifier of the gist to list commits for.

  • per_pageinteger

    Number of results per page (max 100)

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List Gist ForksGIST_LIST_GIST_FORKSAcción

Tool to list forks of a gist. Use after obtaining a gist_id to retrieve all forks for the gist.

Parámetros de entrada

  • pageinteger

    Page number to fetch. Default: 1

  • gist_idstringObligatorio

    The ID of the gist to list forks for

  • per_pageinteger

    Results per page (max 100). Default: 30

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List GistsGIST_LIST_GISTSAcción

Tool 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

  • pageinteger

    Page number of results to fetch. Default: 1 if not provided.

  • sincestring

    Only show gists last updated after this ISO 8601 timestamp (YYYY-MM-DDTHH:MM:SSZ)

  • acceptstring

    Media type for the response. Example: 'application/vnd.github+json'

  • per_pageinteger

    Number of results per page (1-100). Default: 30 if not provided.

Parámetros de salida

  • dataobject[]Obligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List Starred GistsGIST_LIST_STARRED_GISTSAcción

Tool to list the authenticated user's starred gists. Use when you need to retrieve all gists the user has starred.

Parámetros de entrada

  • pageinteger

    Page number of the results to fetch

  • sincestring

    Only list gists updated after this ISO 8601 timestamp (YYYY-MM-DDTHH:MM:SSZ)

  • acceptstring

    Response media type. Recommended: application/vnd.github+json

  • per_pageinteger

    Number of results per page (max 100)

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List User GistsGIST_LIST_USER_GISTSAcción

Tool to list public gists for a specified GitHub user. Use when you have a username and need their gists.

Parámetros de entrada

  • pageinteger

    Page number of results to fetch.

  • sincestring

    Only show gists updated after this ISO 8601 timestamp (YYYY-MM-DDTHH:MM:SSZ)

  • per_pageinteger

    Number of results per page (1-100).

  • usernamestringObligatorio

    The GitHub username whose public gists will be listed

Parámetros de salida

  • dataobject[]Obligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Unstar GistGIST_UNSTAR_GISTAcción

Tool to unstar a gist. Use after confirming the gist has been previously starred.

Parámetros de entrada

  • gist_idstringObligatorio

    The unique identifier of the gist to unstar.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Update Gist CommentGIST_UPDATE_GIST_COMMENTAcción

Tool 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

  • bodystringObligatorio

    The updated text for the comment.

  • gist_idstringObligatorio

    The ID of the Gist to which the comment belongs.

  • comment_idintegerObligatorio

    The ID of the comment to update.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not