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.
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
// 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
{
"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
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
DAG Workflow
Maintain a clean dependency graph (DAG) to prevent circular dependencies and ensure maintainable architecture.
Documentation Rules
All documentation in English. Root README concise, detailed docs in `/docs`.
Quality Enforcement
These rules are NON-NEGOTIABLE and MUST be followed without exception.
Rulebook Task Management
Spec-driven task management for features and breaking changes with OpenSpec-compatible format
Agent Automation
Mandatory workflow that AI agents MUST execute after EVERY implementation.
C
Execute these commands after EVERY implementation (see AGENT_AUTOMATION module for full workflow).
Didn't find tool you were looking for?