---
title: "Enable Environment Skill"
method: POST
path: "/v1/environments/{environmentId}/skills"
tags: ["Environments"]
---

# Enable Environment Skill

`POST /v1/environments/{environmentId}/skills`

Enables a skill on the environment. Use [GET /v1/environment-skills/search](#tag/Environments/operation/searchEnvironmentSkills) to discover skills first, then enable them with this endpoint. Returns 409 if the skill (by `slug` or `source`) is already enabled on the environment.

## Path parameters

- `environmentId` string, required

## Request body

- CreateEnvironmentSkillRequest — Request body for enabling a skill on an environment.
  - `name` string, required — Display name (typically copied from the catalog result)
  - `slug` string, required — Catalog slug
  - `source` string, required — Catalog URL or other source identifier

## Response `201`

Skill enabled

- EnvironmentSkillResponse
  - `environment_skill` EnvironmentSkill, required — A skill enabled on an environment. The membership row, not the catalog entry.
    - `id` string, uuid, required
    - `organization_id` string, uuid, required
    - `environment_id` string, uuid, required
    - `name` string, required — Display name
    - `slug` string, required — Catalog slug (unique within an environment)
    - `source` string, required — Catalog URL or other source identifier
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required

## Other responses

- `400` — Bad request - Missing or invalid parameters
- `401` — Unauthorized - Invalid or missing API key
- `409` — Conflict - Resource already exists or operation conflicts with current state
- `500` — Internal server error

---

[API](https://skmtc.net/tryreplicas/apis/replica-api.md) · [All operations](https://skmtc.net/tryreplicas/apis/replica-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tryreplicas/replica-api/versions/aa3b4c932f7a/schema)
