一键导入
gw-tasks
Create, list, and complete Google Tasks via CLI. TRIGGERS: "google tasks", "create task", "task list", "complete task", "to-do", "task reminder"
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create, list, and complete Google Tasks via CLI. TRIGGERS: "google tasks", "create task", "task list", "complete task", "to-do", "task reminder"
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Send, draft, list, read, reply, scan, and manage Gmail via CLI. TRIGGERS: "gmail", "email", "send email", "draft email", "reply email", "inbox", "outreach", "scan replies", "mail", "compose", "trash email", "email thread"
First-run setup for the Google Workspace (gw) plugin. Creates the plugin venv, installs deps, walks the user through a Google Cloud project + Desktop OAuth client (driving a browser when possible), authenticates, and verifies. Use for "set up gw", "gw setup", "authenticate google workspace", "gw first run", "connect my google account", "install gw". TRIGGERS: "gw setup", "set up google workspace", "gw auth setup", "gw first run", "connect google account", "google workspace login", "oauth setup"
Google Workspace CLI — routes to service-specific skills for Gmail, Sheets, Calendar, Tasks, Docs, Forms. TRIGGERS: "gmail", "email", "send email", "inbox", "calendar", "meeting", "sheets", "spreadsheet", "tasks", "google docs", "gdoc", "outreach", "google form", "form responses", "create google form", "feedback form", "survey form"
Call ANY Google API method via the generic Discovery invoker — services with no curated command group (Drive, Slides, People, Chat, Keep, Meet, Classroom, Apps Script, Admin SDK, ...) and uncovered methods on curated ones. Includes schema introspection, dry-run validation, NDJSON pagination, and a destructive-method guard. TRIGGERS: "google api", "gw api", "api call", "discovery", "drive api", "slides", "people api", "contacts", "chat api", "admin sdk", "apps script", "classroom", "any google service", "api schema"
Create, update, and list Google Calendar events via CLI. Handles Google Meet links, attendees, timezones, reminders, and locations. TRIGGERS: "calendar", "meeting", "schedule", "event", "google meet", "book a call", "availability", "schedule meeting", "create event", "update event", "reschedule", "change event", "modify event", "reminder"
Get, create, import, append, and replace text in Google Docs via CLI. Accepts doc IDs or full URLs. Import renders a Markdown file as a native Doc (headings, tables, lists, links). TRIGGERS: "google docs", "google doc", "create doc", "read doc", "append to doc", "replace in doc", "document", "gdoc", "write to doc", "paste into doc", "import markdown to doc", "md to google doc", "render markdown as doc", "open md as google doc"
基于 SOC 职业分类
| name | gw-tasks |
| description | Create, list, and complete Google Tasks via CLI. TRIGGERS: "google tasks", "create task", "task list", "complete task", "to-do", "task reminder" |
CLI="python3 ${CLAUDE_PLUGIN_ROOT}/cli/gw.py"
$CLI tasks create --title "Follow up" [--due "2026-03-05"] [--notes "..."]
$CLI tasks list --compact
$CLI tasks complete TASK_ID
list: {"tasks":[{"id","title","due","notes","status"}],"count":0}
create: {"created":true,"id","title","due"}
complete: {"completed":true,"id"}
# Create task with due date
$CLI tasks create --title "Review Q2 projections" --due "2026-04-10" --notes "Check runway"
# List open tasks
$CLI tasks list --compact
# Complete a task
$CLI tasks complete "MDIxNTc2OTcw..."
--due format is YYYY-MM-DD.main. Task IDs are long base64 strings.