Note
GitHub Copilot Extensions is in versión preliminar pública and subject to change.
Introduction
Github Copilot skillsets are a streamlined way to extend GitHub Copilot's functionality by defining API endpoints that Copilot can call. When you create a skillset, Copilot handles all the AI interactions while your endpoints provide the data or functionality. This guide walks you through configuring and deploying a skillset within your GitHub App.
Prerequisites
Before you begin, make sure you have the following:
- A configured GitHub App: You’ll need a GitHub App to act as the container for your skillset. If you haven’t already set one up, refer to "Creación de una aplicación de GitHub para la extensión de Copilot" and "Configuring your GitHub App for your Copilot extension".
- API endpoints: You need one endpoint per skill. Each endpoint must:
- Accept POST requests with the
application/json
MIME type - Be able to verify the signature of requests from GitHub to authenticate their origin and prevent unauthorized access
- Be publicly accessible via HTTPS
- Accept POST requests with the
For more information about signature verification, see "Verifying that payloads are coming from Github".
Configuration requirements
Each skillset is defined within a GitHub App. A singleGitHub App can contain up to five skills. Each individual skill needs:
- Name: A clear and descriptive name (for example, "Get Issues").
- Inference description: A detailed explanation of what the skill does and when to use it (for example, "Searches for external issues matching specific criteria like status and labels").
- API endpoint: A POST endpoint that accepts JSON requests.
- JSON schema: The structure of data your endpoint expects.
Example JSON schema
This example demonstrates a skill that requires two parameters: a status string and a label string. If no parameters are provided, an empty object with the type 'object' must be passed in as the request body.
{
"type": "object",
"properties": {
"status": {
"type": "string",
"description": "filter issues by status (open, closed)",
"enum": ["open", "closed"]
},
"label": {
"type": "string",
"description": "filter issues by label"
}
}
}
This format lets users make natural-language requests like find open security issues
and Copilot will structure the appropriate API call.
Using your skillset
To use your skillset:
-
Type
@
followed by your extension's name. -
Type your prompt in natural language.
For example:
@skillset-example generate a lorem ipsum
@skillset-example give me sample data with 100 words
Copilot interprets your request and calls the appropriate skill with the right parameters. There's no need to specify which skill to use—Copilot determines this from your natural-language request and the inference descriptions provided.
Setting up a skillset
- En la esquina superior derecha de cualquier página en GitHub, haga clic en su fotografía de perfil.
- Navega a la configuración de tu cuenta.
- Para una aplicación propiedad de una cuenta personal, haga clic en Configuración.
- Para una aplicación propiedad de una organización:
- Haga clic en Sus organizaciones.
- A la derecha de la organización, haga clic en Configuración.
- En la barra lateral izquierda, haz clic en Configuración del desarrollador.
- En la barra lateral de la izquierda, haga clic en GitHub Apps .
- In the list of GitHub Apps, click the GitHub App you want to configure for your skillset.
- In the navigation menu on the left, select Copilot.
- Under App Type, select Skillset from the dropdown menu.
- Optionally, in the Pre-authorization URL field, enter the URL where users will be redirected to start the authentication process. This step is necessary if your API requires users to connect their GitHub account to access certain features or data.
- For each skill you want to add (maximum 5):
- Click Add new skill.
- Enter a clear Name for the skill (e.g., "Generate Lorem Ipsum Data").
- Write a detailed Inference description to help Copilot understand when to use this skill.
- Add your API endpoint URL that will receive the POST requests.
- In the Parameter field, add the JSON schema defining the expected request format.
- Click Add Definition to save your skill.
- Click Save to save your skillset.