List all skills
GET/api/promptly/skills
Retrieve all skills for the organization
Query Parameters
organizationId: string
formatuuid
Returns
id: string
formatuuid
content: string
Markdown instructions that guide task execution
name: string
category: optional string
createdAt: optional string
formatdate-time
description: optional string
iconUrl: optional string
formaturi
isPublic: optional boolean
Whether the skill is shared publicly
isUserInvocable: optional boolean
Whether users can manually attach this skill
organizationId: optional string
formatuuid
slug: optional string
URL-friendly identifier
updatedAt: optional string
formatdate-time
version: optional number
List all skills
curl https://0ct.com/api/promptly/skills \
-H "Authorization: Bearer $0CT_API_KEY"[
{
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"content": "content",
"name": "name",
"category": "category",
"createdAt": "2019-12-27T18:11:19.117Z",
"description": "description",
"frontmatter": {
"author": "author",
"requiredSources": [
"string"
],
"tags": [
"string"
]
},
"iconUrl": "https://example.com",
"isPublic": true,
"isUserInvocable": true,
"organizationId": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"slug": "slug",
"updatedAt": "2019-12-27T18:11:19.117Z",
"version": 0
}
]Returns Examples
[
{
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"content": "content",
"name": "name",
"category": "category",
"createdAt": "2019-12-27T18:11:19.117Z",
"description": "description",
"frontmatter": {
"author": "author",
"requiredSources": [
"string"
],
"tags": [
"string"
]
},
"iconUrl": "https://example.com",
"isPublic": true,
"isUserInvocable": true,
"organizationId": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"slug": "slug",
"updatedAt": "2019-12-27T18:11:19.117Z",
"version": 0
}
]