Awesome-omni-skill things3-manager
Full task management for Things3 app on macOS. Use when the user wants to view, create, update, complete, delete, or organize tasks, projects, and areas in Things3. Triggers include "show my tasks", "add a todo", "what's on my Today list", "mark X as done", "delete task", "cancel project", "move task to project", "what's overdue", "help me reorganize my tasks", "reschedule", "batch update", or any reference to Things3, todos, projects, deadlines, or task management.
git clone https://github.com/diegosouzapw/awesome-omni-skill
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/development/things3-manager" ~/.claude/skills/diegosouzapw-awesome-omni-skill-things3-manager && rm -rf "$T"
skills/development/things3-manager/SKILL.mdThings3 Manager
Manage Things3 tasks, projects, and areas via Python scripts.
Requirements
- Things3 for Mac installed and opened at least once
- Enable Things URLs: Things → Settings → General → Enable Things URLs
- Install things.py:
pip install things.py
Architecture
- Reading:
andscripts/things3_dashboard.py
use things.py (direct SQLite queries)scripts/things3_read.py - Writing:
uses Things URL scheme (scripts/things3_write.py
) and AppleScript for deletethings:/// - Utilities:
for sync and token checkingscripts/things3_utils.py
Important Limitations
Areas Must Exist First
The Things URL scheme cannot create new areas. If you want to assign a project/task to a new area:
- Ask the user to create the area manually in Things3
- Verify it exists:
python3 -c "import things; print([a['title'] for a in things.areas()])" - Then assign projects/tasks to it
Tags Must Exist First
Tags must already exist in Things3 to be applied. The URL scheme cannot create new tags.
Quick Reference
Dashboard (Fast Full Overview)
For quick overview of everything, use the dashboard script (single call, much faster):
# Human-readable dashboard python3 scripts/things3_dashboard.py # JSON output (for processing) python3 scripts/things3_dashboard.py --json # Skip sync check (faster but may have stale data) python3 scripts/things3_dashboard.py --no-sync
Returns: inbox, today, upcoming, anytime, someday, projects, areas, overdue, deadlines — all in one call.
Prefer dashboard for full overviews. Use individual read commands only when you need specific filtered data.
Read Operations (Individual Queries)
# Lists python3 scripts/things3_read.py inbox python3 scripts/things3_read.py today python3 scripts/things3_read.py upcoming python3 scripts/things3_read.py anytime python3 scripts/things3_read.py someday python3 scripts/things3_read.py logbook --limit 10 python3 scripts/things3_read.py deadlines python3 scripts/things3_read.py overdue # Organization python3 scripts/things3_read.py projects python3 scripts/things3_read.py projects --area "Work" python3 scripts/things3_read.py areas --include-items python3 scripts/things3_read.py tags python3 scripts/things3_read.py project-tasks "Project Name" # Search & lookup python3 scripts/things3_read.py search "keyword" python3 scripts/things3_read.py get UUID # Check existing areas (for assignment) python3 -c "import things; print([a['title'] for a in things.areas()])"
Write Operations
# Add to-do (with notes for context) python3 scripts/things3_write.py add "Task title" python3 scripts/things3_write.py add "Call Alex" --when today --tags personal --notes "Re: project deadline" python3 scripts/things3_write.py add "Buy groceries" --checklist milk eggs bread python3 scripts/things3_write.py add "Review doc" --list "Work Project" --deadline 2025-01-20 # Add project (with notes for context) python3 scripts/things3_write.py add-project "Q1 Planning" --area Work --notes "Key deliverables for Q1" python3 scripts/things3_write.py add-project "Trip" --todos "Book flights" "Reserve hotel" "Pack bags" # Update (requires UUID from read operations) python3 scripts/things3_write.py update UUID --when tomorrow python3 scripts/things3_write.py update UUID --tags urgent important python3 scripts/things3_write.py update UUID --list "Different Project" python3 scripts/things3_write.py update UUID --notes "New notes (replaces existing)" python3 scripts/things3_write.py update UUID --append-notes "Additional context" python3 scripts/things3_write.py update UUID --prepend-notes "Important: " # Complete / Cancel / Delete python3 scripts/things3_write.py complete UUID python3 scripts/things3_write.py cancel UUID # Moves to Logbook as canceled python3 scripts/things3_write.py delete UUID # Moves to Trash # Show in app python3 scripts/things3_write.py show --list today python3 scripts/things3_write.py show --id UUID
Batch Operations
Update multiple items at once:
# Complete multiple tasks python3 scripts/things3_write.py batch complete UUID1 UUID2 UUID3 # Cancel multiple tasks python3 scripts/things3_write.py batch cancel UUID1 UUID2 # Reschedule multiple tasks python3 scripts/things3_write.py batch reschedule UUID1 UUID2 --when tomorrow # Move multiple tasks to a project python3 scripts/things3_write.py batch move UUID1 UUID2 --list "Project Name" # Add tag to multiple tasks python3 scripts/things3_write.py batch add-tag UUID1 UUID2 --tag "urgent"
Utilities
# Ensure Things is running and synced python3 scripts/things3_utils.py ensure-running # Check if URL scheme is enabled python3 scripts/things3_utils.py check-token
Best Practices
Adding Context with Notes
When creating tasks/projects, always add helpful notes:
- Projects: Include purpose, timeline, dependencies, phase info
- Tasks: Include links, context from conversation, why it matters
Example:
# Good - has context python3 scripts/things3_write.py add-project "Bass Buzz" --notes "1-month hardcore schedule. Jazz rehearsal Jan 31." # Bad - no context python3 scripts/things3_write.py add-project "Bass Buzz"
Using Tags Effectively
Check existing tags first, then apply relevant ones:
# See available tags python3 scripts/things3_read.py tags # Apply existing tags python3 scripts/things3_write.py update UUID --add-tags "priority" "learning"
Phased Planning
For users with many goals, help organize into phases:
- Phase 1: Immediate priorities (this week/month)
- Phase 2: After Phase 1 completes, add next priorities
- Someday: Ideas to revisit later
Use notes to indicate phase:
--notes "Phase 1 priority. Deadline: Jan 31"
Workflows
Finding and completing a task
- Search:
python3 scripts/things3_read.py search "task name" - Get UUID from output
- Complete:
python3 scripts/things3_write.py complete UUID
Moving tasks between projects
- Get task UUID:
python3 scripts/things3_read.py search "task" - Get project UUID:
python3 scripts/things3_read.py projects - Move:
python3 scripts/things3_write.py update TASK_UUID --list-id PROJECT_UUID
Assigning to a new area
- Ask user to create area in Things3
- Verify:
python3 -c "import things; print([a['title'] for a in things.areas()])" - Assign:
python3 scripts/things3_write.py update-project UUID --area "New Area Name"
Bulk reorganization
- Get full picture:
python3 scripts/things3_dashboard.py --json - For each task to update:
python3 scripts/things3_write.py update UUID --when DATE - Or use batch:
python3 scripts/things3_write.py batch reschedule UUID1 UUID2 --when DATE
Deleting multiple tasks
- Get UUIDs:
python3 scripts/things3_read.py search "old project" - Delete each: Run delete for each UUID (no batch delete to prevent accidents)
When Parameters
| Value | Effect |
|---|---|
| Moves to Today |
| Schedules for tomorrow |
| Today's evening section |
| Moves to Someday |
| Schedules for specific date |
| Removes from Today, keeps in Anytime |
Confirmation Behavior
- Auto-execute: Simple adds with clear parameters
- Confirm first: Updates, completions, deletes, batch operations, or any ambiguous request
Tips
- Use dashboard for full overviews (faster than multiple individual calls)
- UUIDs are required for all update/complete/delete operations
- Projects can have headings; specify with
when adding tasks--heading "Heading Name" - Areas and tags must already exist in Things to be assigned
- Use
to preview what a command will do without executing--dry-run - Always add notes for context when creating projects/tasks
- For URL scheme details, see
references/url_scheme.md