Agent skill
rulebook-skill-show
Show detailed information about a specific skill including metadata, content preview, and enabled status. Use to inspect a skill before enabling it.
Install this agent skill to your Project
npx add-skill https://github.com/hivellm/rulebook/tree/main/skills/rulebook-skill-show
SKILL.md
rulebook_skill_show
Show detailed information about a specific skill.
Input Schema
| Parameter | Type | Required | Description |
|---|---|---|---|
skillId |
string | Yes | Skill ID (e.g., languages/typescript) |
Usage
await mcp.rulebook_skill_show({ skillId: "languages/typescript" });
Response
{
"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..."
}
}
When to Use
- Inspect skill content before enabling
- Check dependencies and conflicts
- Review what rules a skill provides
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
DAG Workflow
Maintain a clean dependency graph (DAG) to prevent circular dependencies and ensure maintainable architecture.
Documentation Rules
All documentation in English. Root README concise, detailed docs in `/docs`.
Quality Enforcement
These rules are NON-NEGOTIABLE and MUST be followed without exception.
Rulebook Task Management
Spec-driven task management for features and breaking changes with OpenSpec-compatible format
Agent Automation
Mandatory workflow that AI agents MUST execute after EVERY implementation.
C
Execute these commands after EVERY implementation (see AGENT_AUTOMATION module for full workflow).
Didn't find tool you were looking for?