From rulebook
Lists available Rulebook skills with optional filtering by category (languages, frameworks, etc.) or enabled status. Use to discover project skills and check enabled ones.
npx claudepluginhub hivellm/rulebook --plugin rulebookThis skill uses the workspace's default tool permissions.
---
Applies Acme Corporation brand guidelines including colors, fonts, layouts, and messaging to generated PowerPoint, Excel, and PDF documents.
Builds DCF models with sensitivity analysis, Monte Carlo simulations, and scenario planning for investment valuation and risk assessment.
Calculates profitability (ROE, margins), liquidity (current ratio), leverage, efficiency, and valuation (P/E, EV/EBITDA) ratios from financial statements in CSV, JSON, text, or Excel for investment analysis.
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"
}