tasktrove

Review·Scanned 2/19/2026

Provides a CLI and API client to manage Tasktrove todos against a self-hosted instance. It requires TASKTROVE_HOST (optionally TASKTROVE_TOKEN) and includes running python3 scripts/tasks.py which makes network requests to "$TASKTROVE_HOST/api/v1/tasks".

from clawhub.ai·v7eaf687·8.9 KB·0 installs
Scanned from 1.0.0 at 7eaf687 · Transparency log ↗
$ vett add clawhub.ai/willwebberley/tasktroveReview findings below

Tasktrove Todo Management

Manage tasks via a self-hosted Tasktrove instance. (GitHub)

Configuration

Set the following environment variable:

export TASKTROVE_HOST="http://your-server:3333"

Optionally, if your instance requires authentication:

export TASKTROVE_TOKEN="your-api-token"

Quick Reference

Using the CLI script

# List today's tasks
python3 scripts/tasks.py list --today

# List overdue tasks
python3 scripts/tasks.py list --overdue

# List this week's tasks
python3 scripts/tasks.py list --week

# Add a task
python3 scripts/tasks.py add "Task title" --due 2026-02-10 --priority 2

# Complete a task (use ID prefix from list output)
python3 scripts/tasks.py complete abc123

# Search tasks
python3 scripts/tasks.py search "keyword"

Direct API calls

List Tasks

curl -s "$TASKTROVE_HOST/api/v1/tasks"

Create Task

# Note: API requires all fields including id, completed, labels, etc.
curl -X POST "$TASKTROVE_HOST/api/v1/tasks" \
  -H "Content-Type: application/json" \
  -d '{
    "id": "<uuid>",
    "title": "Task title",
    "priority": 4,
    "dueDate": "2026-02-06",
    "completed": false,
    "labels": [],
    "subtasks": [],
    "comments": [],
    "createdAt": "2026-02-06T12:00:00.000Z",
    "recurringMode": "dueDate"
  }'

Complete/Update Task

# Note: PATCH goes to collection endpoint with ID in body (not /tasks/{id})
curl -X PATCH "$TASKTROVE_HOST/api/v1/tasks" \
  -H "Content-Type: application/json" \
  -d '{"id": "<task-id>", "completed": true}'

Delete Task

curl -X DELETE "$TASKTROVE_HOST/api/v1/tasks/<task-id>"

Task Schema

FieldTypeNotes
idstringUUID (required on create)
titlestringRequired
descriptionstringOptional
completedbooleanDefault false
prioritynumber1 (highest) to 4 (lowest)
dueDatestringYYYY-MM-DD format
projectIdstringUUID of project
labelsstring[]Array of label UUIDs
subtasksobject[]Nested subtasks
recurringstringRRULE format

Priority Levels

  • P1: Urgent/critical
  • P2: High priority
  • P3: Medium priority
  • P4: Low priority (default)

Notes

  • The Tasktrove UI supports natural language input, but the API expects structured JSON
  • PATCH operations use the collection endpoint with ID in the request body
  • POST requires all schema fields to be present