curl --request GET \
--url https://control-plane.kubiya.ai/api/v1/skills/associations/agents/{agent_id}/skills/resolved \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"name": "<string>",
"type": "<string>",
"description": "<string>",
"icon": "<string>",
"enabled": true,
"configuration": {},
"source": "<string>",
"inherited": true
}
]Resolve all skills for an agent (including inherited from ALL environments and team).
Inheritance order (with deduplication):
Later layers override earlier ones if there are conflicts.
curl --request GET \
--url https://control-plane.kubiya.ai/api/v1/skills/associations/agents/{agent_id}/skills/resolved \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"name": "<string>",
"type": "<string>",
"description": "<string>",
"icon": "<string>",
"enabled": true,
"configuration": {},
"source": "<string>",
"inherited": true
}
]Enter your Kubiya API token (format: Bearer
Was this page helpful?