원클릭으로
mindwtr-gtd-assistant
Manage tasks, projects, and GTD workflows in the Mindwtr productivity app.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Manage tasks, projects, and GTD workflows in the Mindwtr productivity app.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Find and act on emails over IMAP with Mail.app closed. Discover which accounts are logged in, search, read contents, download attachments, draft new mail, mark read/unread, archive, and move to trash.
Automate web interactions for bookings, form submissions, and purchases using ARIA-based Safari control.
View and manage calendar events with smart scheduling defaults.
Look up, search, and create contacts in Contacts.app.
Organize the ~/Downloads folder by categorizing files and subdirectories into subfolders using AI-driven analysis.
Generate images from text descriptions using models with native image generation (e.g. Gemini).
| id | mindwtr |
| name | Mindwtr GTD Assistant |
| description | Manage tasks, projects, and GTD workflows in the Mindwtr productivity app. |
| apps | ["Mindwtr"] |
| tasks | ["mindwtr_list_tasks","mindwtr_add_task","mindwtr_get_task","mindwtr_update_task","mindwtr_complete_task","mindwtr_archive_task","mindwtr_delete_task","mindwtr_list_projects","mindwtr_create_project","mindwtr_update_project","mindwtr_list_sections","mindwtr_create_section","mindwtr_update_section","mindwtr_delete_section","mindwtr_update_checklist","mindwtr_list_tags","mindwtr_search"] |
| essential_tasks | [] |
| examples | ["Add a task to buy groceries tomorrow","Show me my next actions","What's in my inbox?","Mark the grocery task as done","Move that task to the waiting list","What tasks are due this week?","Search my tasks for anything about the dentist","Show me all my projects","Create a project called Home Renovation","What tags am I using?"] |
| safe_defaults | {"include_completed":false,"include_deleted":false,"status":""} |
| confirm_before_write | ["delete task","archive task"] |
| requires_permissions | [] |
| requires_settings | ["mindwtr_data_path"] |
Mindwtr supports a powerful quick-add format when creating tasks via the input parameter:
@home, @work, @errands — where/when to do the task#shopping, #finance, #urgent — categorization labels/due:tomorrow, /due:2026-03-01, /due:next monday/priority:high (low, medium, high, urgent)+ProjectName — assign to an existing project9am, 2pm — start time for the taskExample: "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.
Inbox Processing ("What's in my inbox?"):
mindwtr_list_tasks(status="inbox")mindwtr_update_taskDaily Review ("What should I work on today?"):
mindwtr_list_tasks(status="next")mindwtr_list_tasks(status="in-progress")mindwtr_list_tasks(status="waiting")Weekly Review ("Let me review everything"):
mindwtr_list_projectsmindwtr_list_tasks(status="someday")mindwtr_complete_task to mark tasks as done — this handles recurring tasks automaticallymindwtr_search for broad queries across tasks and projectsmindwtr_list_tasks(query="...") for filtered task-only searchesmindwtr_list_tasks(status="...") when the user asks for a specific GTD listSections group tasks within a project into logical phases (e.g., "Planning", "In Progress", "Review"):
mindwtr_list_sections(project_id="...")mindwtr_create_section(project_id="...", title="Phase 1")section_id on mindwtr_add_task or mindwtr_update_taskmindwtr_update_task(task_id="...", section_id="__clear__")sectionId on its tasksTasks can have checklist items (subtasks). Use mindwtr_update_checklist:
action="add", items=["Step 1", "Step 2"]action="toggle", item_id="..."action="remove", item_id="..."action="set", items=["New 1", "New 2"]When the user refers to a task vaguely (e.g., "that grocery task"):
mindwtr_search(query="grocery") or mindwtr_list_tasks(query="grocery")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.