From rulebook
Searches skills by name, description, tags, technologies, or topics. Useful for discovering relevant Claude Code extensions before enabling them or finding tech-specific rules.
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.
Search for skills by name, description, or tags.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | Yes | Search query |
// Search by technology name
await mcp.rulebook_skill_search({ query: "typescript" });
// Search by feature
await mcp.rulebook_skill_search({ query: "quality" });
// Search by tag
await mcp.rulebook_skill_search({ query: "testing" });
{
"success": true,
"query": "typescript",
"skills": [
{
"id": "languages/typescript",
"name": "TypeScript Support",
"description": "TypeScript language rules and setup",
"category": "languages",
"enabled": true
}
],
"count": 1
}