Mindwtr GTD Assistant
SkillProductivityManage tasks, projects, and GTD workflows in the Mindwtr productivity app.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Mindwtr GTD Assistant skill
What this skill tells your AI
The instructions your AI receives, as published by spamsch/son-of-simon in skills/mindwtr/SKILL.md and read by ahel’s review.
Behavior Notes
Quick-Add Syntax
Mindwtr supports a powerful quick-add format when creating tasks via the input parameter:
- Contexts:
@home,@work,@errands— where/when to do the task - Tags:
#shopping,#finance,#urgent— categorization labels - Due dates:
/due:tomorrow,/due:2026-03-01,/due:next monday - Priority:
/priority:high(low, medium, high, urgent) - Project:
+ProjectName— assign to an existing project - Time:
9am,2pm— start time for the task
Example: "Review invoice @work /due:tomorrow 2pm #finance +Accounting /priority:high"
Always prefer using input with quick-add syntax over setting individual fields — it's more natural and supports all features in one string.
Task Statuses (GTD Workflow)
- inbox — Newly captured, not yet processed
- todo — Processed, ready to be done (general bucket)
- next — Next actions, the tasks you should do now
- in-progress — Currently being worked on
- waiting — Delegated or waiting for someone/something
- someday — Deferred ideas, maybe later
- done — Completed
- archived — Old completed tasks, out of sight
Common GTD Patterns
Inbox Processing ("What's in my inbox?"):
- List inbox tasks:
mindwtr_list_tasks(status="inbox") - For each task, help the user decide: actionable? → next/todo; delegated? → waiting; defer? → someday
- Update status accordingly with
mindwtr_update_task
Daily Review ("What should I work on today?"):
- Show next actions:
mindwtr_list_tasks(status="next") - Show in-progress:
mindwtr_list_tasks(status="in-progress") - Check waiting items:
mindwtr_list_tasks(status="waiting")
Weekly Review ("Let me review everything"):
- Process inbox first
- Review all projects:
mindwtr_list_projects - Check someday/maybe:
mindwtr_list_tasks(status="someday") - Review waiting items
Completing Tasks
- Use
mindwtr_complete_taskto mark tasks as done — this handles recurring tasks automatically - Don't manually set status to "done" via update; use the complete endpoint instead
- Recurring tasks automatically spawn the next occurrence when completed
Searching
- Use
mindwtr_searchfor broad queries across tasks and projects - Use
mindwtr_list_tasks(query="...")for filtered task-only searches - Search supports @context and #tag syntax in queries
- Use
mindwtr_list_tasks(status="...")when the user asks for a specific GTD list
Sections
Sections group tasks within a project into logical phases (e.g., "Planning", "In Progress", "Review"):
- List sections:
mindwtr_list_sections(project_id="...") - Create:
mindwtr_create_section(project_id="...", title="Phase 1") - Assign task to section: use
section_idonmindwtr_add_taskormindwtr_update_task - Remove from section:
mindwtr_update_task(task_id="...", section_id="__clear__") - Deleting a section automatically clears
sectionIdon its tasks
Checklists
Tasks can have checklist items (subtasks). Use mindwtr_update_checklist:
- Add items:
action="add", items=["Step 1", "Step 2"] - Toggle completion:
action="toggle", item_id="..." - Remove item:
action="remove", item_id="..." - Replace all:
action="set", items=["New 1", "New 2"]
Two-Step Lookup
When the user refers to a task vaguely (e.g., "that grocery task"):
- Search first:
mindwtr_search(query="grocery")ormindwtr_list_tasks(query="grocery") - If multiple matches, show them and ask which one
- Then act on the specific task by ID
How It Works
Son of Simon reads and writes ~/Sync/mindwtr/data.json directly (no server needed). The Mindwtr desktop app's file watcher monitors this sync folder and auto-refreshes the UI within ~750ms of any change.
To change the data file path, set MACBOT_MINDWTR_DATA_PATH in ~/.macbot/.env.
Signals
- GitHub stars
- 29
- Forks
- 1
- Last commit
- Jul 2026
Advanced
- Catalog kind
- skill
- Gateway key
mindwtr-gtd-assistant- Source
- github.com/spamsch/son-of-simon