Agent skill
rulebook-task-list
List all Rulebook tasks with optional status filtering and archive inclusion. Use to check project tasks, progress, or find tasks by status.
Install this agent skill to your Project
npx add-skill https://github.com/hivellm/rulebook/tree/main/skills/rulebook-task-list
SKILL.md
rulebook_task_list
List all Rulebook tasks with optional filtering.
Input Schema
| Parameter | Type | Required | Description |
|---|---|---|---|
includeArchived |
boolean | No | Include archived tasks (default: false) |
status |
enum | No | Filter: pending, in-progress, completed, blocked |
Usage
// 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 });
Response
{
"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
}
When to Use
- Check current project task status
- Find tasks to work on
- Review completed/archived tasks
- Get overview of project planning state
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
DAG Workflow
Maintain a clean dependency graph (DAG) to prevent circular dependencies and ensure maintainable architecture.
Documentation Rules
All documentation in English. Root README concise, detailed docs in `/docs`.
Quality Enforcement
These rules are NON-NEGOTIABLE and MUST be followed without exception.
Rulebook Task Management
Spec-driven task management for features and breaking changes with OpenSpec-compatible format
Agent Automation
Mandatory workflow that AI agents MUST execute after EVERY implementation.
C
Execute these commands after EVERY implementation (see AGENT_AUTOMATION module for full workflow).
Didn't find tool you were looking for?