skills/rulebook-task-list/SKILL.md
List all Rulebook tasks with optional status filtering and archive inclusion. Use to check project tasks, progress, or find tasks by status.
npx skillsauth add hivellm/rulebook rulebook-task-listInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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
}
research
Create structured analyses with numbered findings, execution plans, and task materialization
research
Author a rulebook task spec interactively — research, draft, ask the user clarifying questions, confirm, then create the tasks in rulebook ready for /rulebook-driver. Use when the user wants to plan/spec a feature before implementing.
development
Behavioral guidelines to reduce common LLM coding mistakes — overcomplication, sloppy refactors, hidden assumptions, weak goals. Use when writing, reviewing, or refactoring code. Auto-applies; invoke explicitly via /karpathy-guidelines or 'follow karpathy discipline'.
data-ai
Autonomous AI agent loop for iterative task implementation (@hivehub/rulebook ralph)