Spec-driven task management for features and breaking changes using OpenSpec format. Use when creating new features, planning breaking changes, organizing development work, or managing project tasks with proposals and specifications.
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