## List **get** `/api/promptly/skills` Retrieve all skills for the organization ### Query Parameters - `organizationId: string` ### Returns - `id: string` - `content: string` Markdown instructions that guide task execution - `name: string` - `category: optional string` - `createdAt: optional string` - `description: optional string` - `frontmatter: optional object { author, requiredSources, tags }` Skill metadata - `author: optional string` - `requiredSources: optional array of string` Source slugs this skill depends on - `tags: optional array of string` - `iconUrl: optional string` - `isPublic: optional boolean` Whether the skill is shared publicly - `isUserInvocable: optional boolean` Whether users can manually attach this skill - `organizationId: optional string` - `slug: optional string` URL-friendly identifier - `updatedAt: optional string` - `version: optional number` ### Example ```http curl https://0ct.com/api/promptly/skills \ -H "Authorization: Bearer $0CT_API_KEY" ```