Agent skill
rulebook-task-archive
Archive a completed Rulebook task to the archive directory with date prefix. Use after a task is fully implemented and validated.
Stars
10
Forks
1
Install this agent skill to your Project
npx add-skill https://github.com/hivellm/rulebook/tree/main/skills/rulebook-task-archive
SKILL.md
rulebook_task_archive
Archive a completed Rulebook task.
Input Schema
| Parameter | Type | Required | Description |
|---|---|---|---|
taskId |
string | Yes | Task ID to archive |
skipValidation |
boolean | No | Skip validation before archiving (default: false) |
Usage
typescript
// 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 });
Response
json
{
"success": true,
"taskId": "add-auth-system",
"message": "Task add-auth-system archived successfully"
}
Archive Location
Tasks are moved to: rulebook/tasks/archive/YYYY-MM-DD-<task-id>/
When to Use
- After task implementation is complete
- After all tests pass and task is validated
- To clean up the active tasks list
Didn't find tool you were looking for?