hivellm

rulebook_task_create

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-create

Install via the SkillsCat registry.

SKILL.md

rulebook_task_create

Create a new Rulebook task with full directory structure.

Input Schema

Parameter Type Required Description
taskId string Yes Task ID in kebab-case (e.g., add-auth-system)

Usage

await mcp.rulebook_task_create({ taskId: "add-auth-system" });

Response

{
  "success": true,
  "taskId": "add-auth-system",
  "message": "Task add-auth-system created successfully"
}

Created Structure

rulebook/tasks/add-auth-system/
├── .metadata.json    # Status: pending
├── proposal.md       # Why + What Changes + Impact
├── tasks.md          # Simple checklist items only
├── design.md         # Technical design (optional)
└── specs/
    └── <module>/
        └── spec.md   # SHALL/MUST requirements

When to Use

  • Starting a new feature or capability
  • Planning a breaking change
  • Architecture changes requiring specs
  • Any work that needs structured planning