Help us improve
Share bugs, ideas, or general feedback.
From rulebook
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.
npx claudepluginhub hivellm/rulebook --plugin rulebookHow this skill is triggered — by the user, by Claude, or both
Slash command
/rulebook:rulebook-task-listThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
List all Rulebook tasks with optional filtering.
Displays complete details of a Rulebook task including proposal, checklist, design, and specs. Review requirements, progress, and rationale before implementation.
Manages Fulcrum tasks in worktrees: update status, link GitHub PRs/URLs/Linear tickets, send notifications, configure settings, and control server daemon.
Automates Todoist task creation, updates, projects, sections, filtering, and bulk operations via Composio's Rube MCP toolkit. Use for programmatic task management workflows.
Share bugs, ideas, or general feedback.
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
}