From rulebook
Displays complete details of a Rulebook task including proposal, checklist, design, and specs. Review requirements, progress, and rationale before implementation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/rulebook:rulebook-task-showThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Show complete details of a specific Rulebook task.
Show complete details of a specific Rulebook task.
| Parameter | Type | Required | Description |
|---|---|---|---|
taskId | string | Yes | Task ID to show |
await mcp.rulebook_task_show({ taskId: "add-auth-system" });
{
"task": {
"id": "add-auth-system",
"title": "Add Authentication System",
"status": "in-progress",
"proposal": "# Proposal: Add Authentication...",
"tasks": "## 1. Implementation\n- [ ] 1.1 Create auth module...",
"design": "# Technical Design...",
"specs": {
"auth": "# Auth Specification\n## ADDED Requirements..."
},
"createdAt": "2026-02-18T12:00:00.000Z",
"updatedAt": "2026-02-18T14:30:00.000Z"
},
"found": true
}
npx claudepluginhub hivellm/rulebook --plugin rulebookEnforces spec-driven task management for new features, breaking changes, and project work using OpenSpec format. Provides CLI commands for task creation, listing, validation, and archiving with mandatory proposal, checklist, and spec workflows.
Automatically looks up Teamwork task status and details when ticket numbers are mentioned. Provides quick project context without creating or modifying data.