From rulebook
Archives completed Rulebook tasks to a dated archive directory after validation. Cleans up active task lists post-implementation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/rulebook:rulebook-task-archiveThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Archive a completed Rulebook task.
Archive a completed Rulebook task.
| Parameter | Type | Required | Description |
|---|---|---|---|
taskId | string | Yes | Task ID to archive |
skipValidation | boolean | No | Skip validation before archiving (default: false) |
// Archive with validation (recommended)
await mcp.rulebook_task_archive({ taskId: "add-auth-system" });
// Archive without validation
await mcp.rulebook_task_archive({ taskId: "add-auth-system", skipValidation: true });
{
"success": true,
"taskId": "add-auth-system",
"message": "Task add-auth-system archived successfully"
}
Tasks are moved to: rulebook/tasks/archive/YYYY-MM-DD-<task-id>/
npx claudepluginhub hivellm/rulebook --plugin rulebookArchives completed tasks from TASKS.md to dated archive files when many [x] items clutter the view. Includes dry-run preview and verification checks.
Permanently deletes Rulebook tasks by task ID. Use for duplicate, abandoned, or test tasks. Irreversible; prefer archiving completed tasks.
Archives a Nightshift shift to .nightshift/archive/ with date prefix. Invoked via /nightshift:archive for shift cleanup.