Skip to main content
GET
/
v1
/
environments
/
{environmentId}
/
repo-skills
List Skills From Bound Repo
curl --request GET \
  --url https://api.tryreplicas.com/v1/environments/{environmentId}/repo-skills \
  --header 'Authorization: Bearer <token>'
{
  "repo_skills": [
    {
      "id": "<string>",
      "repository_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "repository_full_name": "<string>",
      "branch": "<string>",
      "path": "<string>",
      "name": "<string>",
      "description": "<string>",
      "html_url": "<string>"
    }
  ],
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

API key authentication. Obtain your API key from the Replicas dashboard under Settings > API Keys.

Path Parameters

environmentId
string
required

Environment UUID, or the literal string global.

Response

Successful response. error is populated when discovery encountered a partial failure (e.g. the repo has no GitHub App installation); the UI surfaces it inline rather than treating it as a 5xx.

repo_skills
object[]
required
error
string | null
required

Populated when discovery couldn't run end-to-end (e.g. the bound repo has no GitHub App installation). The list may still be partially filled; the UI shows this as an inline banner rather than a 5xx.