From rulebook
Updates Rulebook task status to pending, in-progress, completed, or blocked via MCP. Use to track progress when starting, finishing, or blocking tasks.
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.
Update a Rulebook task's status.
| Parameter | Type | Required | Description |
|---|---|---|---|
taskId | string | Yes | Task ID to update |
status | enum | No | New status: pending, in-progress, completed, blocked |
// Start working on a task
await mcp.rulebook_task_update({ taskId: "add-auth-system", status: "in-progress" });
// Mark task as completed
await mcp.rulebook_task_update({ taskId: "add-auth-system", status: "completed" });
// Mark task as blocked
await mcp.rulebook_task_update({ taskId: "add-auth-system", status: "blocked" });
{
"success": true,
"taskId": "add-auth-system",
"message": "Task add-auth-system updated successfully"
}
in-progresscompletedblockedpending