---
Manages OpenSpec-compatible task workflows for structured development. Use to create, validate, and archive tasks with proposal, checklist, and specification files for organized implementation.
/plugin marketplace add hivellm/rulebook/plugin install rulebook@hivehub-marketplaceManage Rulebook tasks using the OpenSpec-compatible format.
# Create a new task
rulebook task create <task-id>
# List all tasks
rulebook task list
# Show task details
rulebook task show <task-id>
# Validate task structure
rulebook task validate <task-id>
# Archive completed task
rulebook task archive <task-id>
Each task creates the following structure:
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 create my-featurerulebook task validate my-featurerulebook task archive my-feature