Help us improve
Share bugs, ideas, or general feedback.
From rulebook
Updates Rulebook task status to pending, in-progress, completed, or blocked. Use when starting work, finishing implementation, hitting blockers, or resetting tasks.
npx claudepluginhub hivellm/rulebook --plugin rulebookHow this skill is triggered — by the user, by Claude, or both
Slash command
/rulebook:rulebook-task-updateThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Update a Rulebook task's status.
Updates existing task fields like status, priority, title, tags, dependencies using taskmd CLI for supported fields or direct file edits with Read/Edit tools. Use when modifying task properties.
Lists Rulebook tasks with optional status filtering (pending, in-progress, completed, blocked) and archived inclusion. Useful for checking project progress, finding tasks, or reviewing status.
Share bugs, ideas, or general feedback.
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