---
title: "Create a Skill"
method: POST
path: "/v1/projects/{projectID}/skills"
tags: ["Skills"]
---

# Create a Skill

`POST /v1/projects/{projectID}/skills`

Creates a new skill inside a project. Accepts JSON or multipart/form-data with a zip file.

## Path parameters

- `projectID` string, uuid, required

## Request body

- CreateSkillRequest
  - `name` string, required
  - `slug` string
  - `description` string

## Response `201`

Skill created successfully

- object
  - `skill` Skill
    - `id` string, uuid, required
    - `project_id` string, uuid, required
    - `name` string, required
    - `slug` string, required
    - `description` string
    - `created_at` string, date-time
    - `updated_at` string, date-time

## Other responses

- `400` — Invalid request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Project not found
- `409` — Duplicate skill name or slug

---

[API](https://skmtc.net/px0-ai/apis/px0-api.md) · [All operations](https://skmtc.net/px0-ai/apis/px0-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/px0-ai/px0-api/revisions/3ed72443989d/schema)
