一键导入
google-tasks
Manage Google Tasks via the `gtasks` CLI. Use when the user asks to view, add, update, complete, or delete tasks. Supports multiple task lists.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage Google Tasks via the `gtasks` CLI. Use when the user asks to view, add, update, complete, or delete tasks. Supports multiple task lists.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create new documents in any format — Beamer slides, Typst documents, or Quarto slides. Autonomous pipeline from prompt to publication-quality output.
Syntax guide and ecosystem reference for writing Typst (.typ) files. Use this skill when writing, editing, or debugging Typst documents. Covers core syntax, common errors, packages, and best practices.
Master pipeline — compile, review, fix, and finalize any document. Auto-detects format and runs the full quality loop.
Stage, commit, create PR, and merge to main. Use for the standard commit-PR-merge cycle.
Compile any supported file type. Detects format (.typ, .qmd, .py) and runs appropriate build command.
Show current context status and session health. Use to check how much context has been used, whether auto-compact is approaching, and what state will be preserved.
| name | google-tasks |
| description | Manage Google Tasks via the `gtasks` CLI. Use when the user asks to view, add, update, complete, or delete tasks. Supports multiple task lists. |
gtasks is globally installed at ~/.local/bin/gtasks. Use it via Bash to manage the user's Google Tasks.
Source: ~/Developer/Tools/GoogleTasks/
Reinstall after edits: uv tool install ~/Developer/Tools/GoogleTasks --force
gtasks lists # Show all task lists
gtasks list [LIST_NAME] # Show tasks in a list (default if omitted)
gtasks list [LIST_NAME] --all # Include completed tasks
gtasks add "TITLE" [-l LIST] [-n NOTES] [-d YYYY-MM-DD] # Create a task
gtasks update TASK_ID [-l LIST] [-t TITLE] [-n NOTES] [-d YYYY-MM-DD] # Update a task
gtasks complete TASK_ID [TASK_ID...] [-l LIST] # Mark task(s) done
gtasks delete TASK_ID [TASK_ID...] [-l LIST] [--yes] # Delete task(s)
gtasks clear [-l LIST] [--yes] # Remove all completed tasks
⏰ Urgent🎯 Important🎉 Fun✅ To-Do ListOld Google Keep remindersgtasks list first to get task IDs before updating/completing/deleting.gtasks list "⏰ Urgent"complete and delete.--yes flag skips confirmation prompts (use only when user explicitly says to skip).