From reclaim
Manage tasks in Reclaim.ai calendar scheduling app. Use when creating, updating, listing, completing, or deleting Reclaim tasks, or working with calendar scheduling, task priorities, time blocking, or task duration management.
How this skill is triggered — by the user, by Claude, or both
Slash command
/reclaim:reclaim-tasksThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Manage CRUD operations for tasks in Reclaim.ai using the `reclaim` CLI.
Manage CRUD operations for tasks in Reclaim.ai using the reclaim CLI.
IMPORTANT: If a reclaim command fails with a "binary not found" or "command not found" error:
which reclaim
gem install reclaim
If automatic installation fails, inform the user that they need to install Ruby first, then run gem install reclaim.
After installation, verify it works:
reclaim --help
Do not preemptively check for installation - only perform these steps when a command actually fails.
CRITICAL: For ALL write operations (create, update, complete, delete), you MUST:
reclaim commandRead operations (list, get, list-schemes) can execute immediately without confirmation.
reclaim # List active tasks (default)
reclaim list active # List active tasks (explicit)
reclaim list completed # List completed tasks
reclaim list overdue # List overdue tasks
reclaim get TASK_ID # Get task details
reclaim list-schemes # List available time schemes
# Create
reclaim create --title "TITLE" [OPTIONS]
# Update
reclaim update TASK_ID [OPTIONS]
# Complete
reclaim complete TASK_ID
# Delete
reclaim delete TASK_ID
--title TITLE - Task title--due DATE - Due date (YYYY-MM-DD or YYYY-MM-DDTHH:MM:SS, or "none" to clear)--priority P1|P2|P3|P4 - Task priority--duration HOURS - Duration in hours (0.25 = 15min, 1.5 = 90min)--split [CHUNK_SIZE] - Allow task splitting (optional min chunk size)--defer DATE - Start after this date (or "none" to clear)--start DATE - Specific start time (or "none" to clear)--time-scheme SCHEME - Time scheme ID or alias (work, personal, etc.)--notes TEXT - Task notes/descriptionUser request: "Create a task called 'Write proposal' due Friday, P1 priority, 3 hours"
Your response:
reclaim create --title "Write proposal" --due 2025-11-07 --priority P1 --duration 3Ready to create this Reclaim task:
Command: reclaim create --title "Write proposal" --due 2025-11-07 --priority P1 --duration 3
This will create a P1 task with 3 hours duration due on 2025-11-07.
Proceed?
YYYY-MM-DD (e.g., 2025-11-07)YYYY-MM-DDTHH:MM:SS (e.g., 2025-11-07T14:30:00)none, clear, or nullP1 - Highest priorityP2 - High priorityP3 - Medium priorityP4 - Low prioritywork, working hours, business hours → Work time schemespersonal, off hours, private → Personal time schemesCRITICAL: The reclaim list active output shows status COMPLETE with checkmarks (✓) for tasks that are
done scheduling (past their assigned time blocks), NOT tasks that are marked as "done".
A task is only truly "done" after you run reclaim complete TASK_ID. Until then, all tasks in
the active list are open work items, regardless of checkmarks or "COMPLETE" status in the API
response.
npx claudepluginhub benjaminjackson/reclaim-skills --plugin reclaimCreates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.