hivellm

rulebook_task_validate

CLI tool to standardize AI-generated projects with templates, rules enforcement, and automation

hivellm 12 2 Updated 3mo ago
GitHub

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.md must exist with ## Why section (min 20 characters)
  • tasks.md must contain only checklist items
  • Specs must use SHALL or MUST keywords
  • 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