From rulebook
Lists all available Rulebook skills, optionally filtered by category (languages, frameworks, modules, etc.) or enabled status. Use to discover and browse project skills.
How this skill is triggered — by the user, by Claude, or both
Slash command
/rulebook:rulebook-skill-listThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
List all available skills with optional filtering.
List all available skills with optional filtering.
| Parameter | Type | Required | Description |
|---|---|---|---|
category | enum | No | Filter: languages, frameworks, modules, services, workflows, ides, core, cli, git, hooks |
enabledOnly | boolean | No | Show only enabled skills (default: false) |
// List all skills
await mcp.rulebook_skill_list({});
// List only language skills
await mcp.rulebook_skill_list({ category: "languages" });
// List only enabled skills
await mcp.rulebook_skill_list({ enabledOnly: true });
{
"success": true,
"skills": [
{
"id": "languages/typescript",
"name": "TypeScript Support",
"description": "TypeScript language rules and setup",
"category": "languages",
"enabled": true,
"version": "1.0.0",
"tags": ["typescript", "strict", "esm"]
}
],
"count": 1,
"category": "languages"
}
npx claudepluginhub hivellm/rulebook --plugin rulebookSearches skills by name, description, tags, or queries like 'typescript' or 'testing'. Useful for discovering and enabling skills matching project technologies or topics.
Manages Claude Code skills: lists existing ones via script, improves for optimal auto-activation, creates new from prompts or spec files.
Lists all installed skills grouped by source (project, personal, plugin), showing which plugin each belongs to with keyword-style descriptions.