Delete a skill by namespace and slug. Requires ownership of the namespace.
DELETE
/
skills
/
{namespace}
/
{slug}
JavaScript
import Smithery from '@smithery/api';const client = new Smithery({ apiKey: process.env['SMITHERY_API_KEY'], // This is the default and can be omitted});const skill = await client.skills.delete('slug', { namespace: 'namespace' });console.log(skill.qualifiedName);
import Smithery from '@smithery/api';const client = new Smithery({ apiKey: process.env['SMITHERY_API_KEY'], // This is the default and can be omitted});const skill = await client.skills.delete('slug', { namespace: 'namespace' });console.log(skill.qualifiedName);
{ "success": true, "qualifiedName": "<string>"}
Assistant
Responses are generated using AI and may contain mistakes.