CLI tool to standardize AI-generated projects with templates, rules enforcement, and automation
Install
npx skillscat add hivellm/rulebook/skills-rulebook-task-validate Install via the SkillsCat registry.
SKILL.md
rulebook_task_validate
Validate a Rulebook task's format and structure.
Input Schema
| Parameter | Type | Required | Description |
|---|---|---|---|
taskId |
string | Yes | Task ID to validate |
Usage
await mcp.rulebook_task_validate({ taskId: "add-auth-system" });Response
{
"valid": true,
"errors": [],
"warnings": ["Consider adding more scenarios to specs/auth/spec.md"]
}Validation Rules
proposal.mdmust exist with## Whysection (min 20 characters)tasks.mdmust contain only checklist items- Specs must use
SHALLorMUSTkeywords - Scenarios must use
####headers (4 hashtags) - Scenarios should follow Given/When/Then structure
When to Use
- Before archiving a completed task
- After writing specs to verify format
- As a quality check during task planning