From rulebook
Lists Rulebook tasks with optional status filtering (pending, in-progress, completed, blocked) and archived inclusion. Check project task status, progress, or find tasks to work on.
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 Rulebook tasks with optional filtering.
| Parameter | Type | Required | Description |
|---|---|---|---|
includeArchived | boolean | No | Include archived tasks (default: false) |
status | enum | No | Filter: pending, in-progress, completed, blocked |
// List active tasks
await mcp.rulebook_task_list({});
// List only in-progress tasks
await mcp.rulebook_task_list({ status: "in-progress" });
// Include archived tasks
await mcp.rulebook_task_list({ includeArchived: true });
{
"tasks": [
{
"id": "add-auth-system",
"title": "Add Authentication System",
"status": "in-progress",
"createdAt": "2026-02-18T12:00:00.000Z",
"updatedAt": "2026-02-18T14:30:00.000Z"
}
],
"count": 1
}