Skip to main content
POST
/
v2
/
skills
Create a new skill
curl --request POST \
  --url https://api.orq.ai/v2/skills \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "display_name": "<string>",
  "description": "<string>",
  "tags": [
    "<string>"
  ],
  "path": "<string>",
  "project_id": "<string>",
  "instructions": "<string>"
}
'
{
  "skill": {
    "skill_id": "<string>",
    "display_name": "<string>",
    "description": "<string>",
    "tags": [
      "<string>"
    ],
    "project_id": "<string>",
    "path": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "created_by_id": "<string>",
    "updated_by_id": "<string>",
    "instructions": "<string>",
    "version": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.orq.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
display_name
string

Workspace-unique display name. Must start with a letter and may contain letters, numbers, underscores, and hyphens.

description
string

Short human-readable summary of what the skill is for.

tags
string[]

Free-form labels for organizing the skill.

path
string

Project path where the skill should be stored.

project_id
string

Project that should contain the skill.

instructions
string

Instruction body for the skill. Omit to create metadata first and fill instructions later.

Response

200 - application/json

OK

skill
object

Newly created skill.