From rulebook
Displays complete details of a Rulebook task including proposal, checklist, design, and specs. Use before implementation to review requirements, progress, and rationale.
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.
Show complete details of a specific Rulebook task.
| Parameter | Type | Required | Description |
|---|---|---|---|
taskId | string | Yes | Task ID to show |
await mcp.rulebook_task_show({ taskId: "add-auth-system" });
{
"task": {
"id": "add-auth-system",
"title": "Add Authentication System",
"status": "in-progress",
"proposal": "# Proposal: Add Authentication...",
"tasks": "## 1. Implementation\n- [ ] 1.1 Create auth module...",
"design": "# Technical Design...",
"specs": {
"auth": "# Auth Specification\n## ADDED Requirements..."
},
"createdAt": "2026-02-18T12:00:00.000Z",
"updatedAt": "2026-02-18T14:30:00.000Z"
},
"found": true
}