List agent skills by ownership scope. Returns skills owned by the current user (ownerType=“user”) or skills shared across the organization (ownerType=“organization”). Use includeContent=true to get full skill content in the response.
Create a new agent skill. Skills are instructions that agents discover and use when handling tasks. Specify ownerType=“user” for a personal skill or ownerType=“organization” for an org-wide skill (requires admin).
List agent skills by ownership scope. Returns skills owned by the current user (ownerType=“user”) or skills shared across the organization (ownerType=“organization”). Use includeContent=true to get full skill content in the response.Parameters:
Parameter
Type
Required
Default
Description
ownerType
string
Yes
—
Filter by owner type: “user” for personal skills, “organization” for org-wide skills
includeContent
boolean
No
false
Whether to include the full skill content in the response
Show inputSchema
{ "type": "object", "properties": { "ownerType": { "type": "string", "enum": [ "user", "organization" ], "description": "Filter by owner type: \"user\" for personal skills, \"organization\" for org-wide skills" }, "includeContent": { "type": "boolean", "default": false, "description": "Whether to include the full skill content in the response" } }, "required": [ "ownerType" ]}
Create a new agent skill. Skills are instructions that agents discover and use when handling tasks. Specify ownerType=“user” for a personal skill or ownerType=“organization” for an org-wide skill (requires admin).Parameters:
Parameter
Type
Required
Default
Description
name
string
Yes
—
Skill name (e.g., “Email Guidelines”)
description
string
Yes
—
Short description of what the skill teaches the agent (used for discovery matching)
content
string
Yes
—
The full skill content in markdown. This is the instruction text that agents will see and follow.
ownerType
string
Yes
—
“user” for a personal skill, “organization” for an org-wide skill
types
string[]
Yes
—
When this skill is available: “workflow-creation” for the Workflow Building Agent, “agent-execution” for the Coworker. Can include both.
Show inputSchema
{ "type": "object", "properties": { "name": { "type": "string", "description": "Skill name (e.g., \"Email Guidelines\")" }, "description": { "type": "string", "description": "Short description of what the skill teaches the agent (used for discovery matching)" }, "content": { "type": "string", "description": "The full skill content in markdown. This is the instruction text that agents will see and follow." }, "ownerType": { "type": "string", "enum": [ "user", "organization" ], "description": "\"user\" for a personal skill, \"organization\" for an org-wide skill" }, "types": { "type": "array", "items": { "type": "string", "enum": [ "workflow-creation", "agent-execution" ] }, "description": "When this skill is available: \"workflow-creation\" for the Workflow Building Agent, \"agent-execution\" for the Coworker. Can include both." } }, "required": [ "name", "description", "content", "ownerType", "types" ]}