list_categories
Browse available skill categories to discover and explore agent skills with descriptions and counts for informed selection.
Instructions
List all available skill categories on SkillFlow with descriptions and skill counts.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:323-334 (handler)The implementation of the `list_categories` tool handler, which formats and returns the list of categories defined in the `CATEGORIES` constant.
case "list_categories": { const formatted = CATEGORIES.map((c) => `**${c.name}** (${c.count} skills)\n ${c.description}` ).join("\n\n"); return { content: [{ type: "text", text: `# SkillFlow Categories\n\n${formatted}\n\n---\nBrowse all: ${SKILLFLOW_BASE_URL}/explore`, }], }; } - src/index.ts:215-221 (registration)The registration of the `list_categories` tool within the `ListToolsRequestSchema` handler.
name: "list_categories", description: "List all available skill categories on SkillFlow with descriptions and skill counts.", inputSchema: { type: "object" as const, properties: {}, }, },