list-superpower-skills
Discover available superpower skills in the Superpowers MCP framework to access advanced capabilities for AI-driven development tasks.
Instructions
List all available superpowers skills
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:36-43 (registration)Registration of the 'list-superpower-skills' tool definition.
{ name: 'list-superpower-skills', description: 'List all available superpowers skills', inputSchema: { type: 'object', properties: {}, }, }, - src/index.ts:81-91 (handler)The handler implementation for 'list-superpower-skills'. It is currently a placeholder.
case 'list-superpower-skills': { // TODO: Implement skills listing logic return { content: [ { type: 'text', text: 'Available skills: ...', }, ], } }