From rulebook
Shows detailed information about any skill including metadata, content preview, enabled status, dependencies, and conflicts. Inspect before enabling.
How this skill is triggered — by the user, by Claude, or both
Slash command
/rulebook:rulebook-skill-showThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Show detailed information about a specific skill.
Show detailed information about a specific skill.
| Parameter | Type | Required | Description |
|---|---|---|---|
skillId | string | Yes | Skill ID (e.g., languages/typescript) |
await mcp.rulebook_skill_show({ skillId: "languages/typescript" });
{
"success": true,
"skill": {
"id": "languages/typescript",
"name": "TypeScript Support",
"description": "TypeScript language rules and setup",
"category": "languages",
"enabled": true,
"version": "1.0.0",
"author": "HiveLLM",
"tags": ["typescript", "strict", "esm"],
"dependencies": ["nodejs"],
"conflicts": ["javascript-basic"],
"content": "# TypeScript Rules\n..."
}
}
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.
Design and iterate Claude Code skills: SKILL.md structure, description formulas, content architecture, and quality evaluation. Invoke whenever task involves any interaction with Claude Code skills — creating, reviewing, evaluating, debugging, or improving skills.