Help us improve
Share bugs, ideas, or general feedback.
From rulebook
Enforces 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.
npx claudepluginhub hivellm/rulebook --plugin rulebookHow this skill is triggered — by the user, by Claude, or both
Slash command
/rulebook:rulebook-task-managementThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Create tasks for:**
Creates a new Rulebook task directory with standardized structure: proposal.md, tasks.md, design.md, and specs. Use for new features, breaking changes, or architectural planning.
Creates task specifications via codebase analysis, interactive clarifying questions on scope/constraints/edge cases, feature splitting checks, and agent delegation setup.
Creates structured implementation task breakdowns from proposal, design, and specification artifacts, outputting self-contained per-task files for subagents.
Share bugs, ideas, or general feedback.
Create tasks for:
Skip for:
rulebook task create <task-id> # Create new task
rulebook task list # List all tasks
rulebook task show <task-id> # Show task details
rulebook task validate <task-id> # Validate structure
rulebook task archive <task-id> # Archive completed task
NEVER start implementation without creating a task first:
rulebook task create <task-id>rulebook task validate <task-id>rulebook/tasks/<task-id>/
├── proposal.md # Why and what changes
├── tasks.md # Implementation checklist
├── design.md # Technical design (optional)
└── specs/
└── <module>/
└── spec.md # Technical specifications
rulebook task validate