google-tasks
Task management for small businesses. Daily to-dos, project tracking, meeting action items, and team checklists. Built on the gws CLI.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Task management for small businesses. Daily to-dos, project tracking, meeting action items, and team checklists. Built on the gws CLI.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Stand up a secure, empty BigQuery data lake on GCP — layered datasets, least-privilege service accounts, Workload Identity (no downloadable keys), read-only authorized views, audit logging, and a budget alert. Agent-guided or Terraform. You connect your own data sources afterward — on purpose.
Set up and configure cloud secrets management for your AI agent. Guides users through platform selection (GCP, AWS, Azure, 1Password, Doppler, HashiCorp Vault), account setup, CLI configuration, and secure credential storage.
Audit and maintain a data semantic layer for AI agents. Scans BigQuery datasets, GCP APIs, secrets, and service accounts to keep your data catalog current.
Email management for small businesses. Daily triage, vendor communication, customer replies, templates, and inbox automation. Built on the gws CLI.
Slack team messaging for small businesses. Send messages, manage channels, post automated updates, run daily standups, and coordinate your team. Includes SMB channel structure and team communication best practices.
Create, query, audit, and optimize Google Ads campaigns via the Google Ads API (Python SDK). Use for campaign management, performance analysis, keyword optimization, and ad creation.
| name | google-tasks |
| version | 1.0.0 |
| tier | business-ops |
| description | Task management for small businesses. Daily to-dos, project tracking, meeting action items, and team checklists. Built on the gws CLI. |
| requires | {"bins":["gws"],"skills":["google-workspace"]} |
Simple task management integrated with Gmail and Calendar.
Uses the gws CLI for all Tasks operations. See the google-workspace skill for setup.
gws CLI installed and authenticated with Tasks scopegws auth login -s tasks if not already donegws tasks tasklists list # List all task lists
gws tasks tasks list # List tasks in a list
gws tasks tasks insert # Create a new task
gws tasks tasks patch # Update a task (complete, rename, etc.)
gws tasks tasks delete # Delete a task
gws tasks tasklists list --format table
# List tasks in a specific list
gws tasks tasks list --params '{
"tasklist": "TASKLIST_ID",
"showCompleted": false
}' --format table
# Simple task
gws tasks tasks insert --params '{"tasklist": "TASKLIST_ID"}' --json '{
"title": "Follow up with vendor about delivery"
}'
# Task with due date
gws tasks tasks insert --params '{"tasklist": "TASKLIST_ID"}' --json '{
"title": "Submit quarterly tax filing",
"due": "2026-03-31T00:00:00Z",
"notes": "Documents in Drive > Finance > Tax Documents"
}'
gws tasks tasks patch --params '{
"tasklist": "TASKLIST_ID",
"task": "TASK_ID"
}' --json '{"status": "completed"}'
gws tasks tasklists insert --json '{"title": "Weekly Store Checklist"}'
# Built-in workflow
gws workflow +email-to-task
Create a recurring checklist for opening/closing:
# Create a task list for daily ops
gws tasks tasklists insert --json '{"title": "Daily Opening Checklist"}'
# Add checklist items
for task in "Check cooler temperatures" "Review today'\''s orders" "Confirm staff schedule" "Check inventory levels" "Review yesterday'\''s sales"; do
gws tasks tasks insert --params '{"tasklist": "TASKLIST_ID"}' --json "{\"title\": \"$task\"}"
done
After a meeting, quickly capture action items:
gws tasks tasks insert --params '{"tasklist": "TASKLIST_ID"}' --json '{
"title": "Send updated pricing to vendor — from Jan 15 meeting",
"due": "2026-01-17T00:00:00Z"
}'
# Built-in recipe for reviewing overdue items
gws tasks tasks list --params '{
"tasklist": "TASKLIST_ID",
"showCompleted": false,
"dueMax": "2026-01-15T23:59:59Z"
}'
gmail — Convert emails to tasks with gws workflow +email-to-taskgoogle-calendar — Tasks appear alongside calendar eventsmorning-briefing — Open tasks are part of the daily standup reportgoogle-docs — Link task notes to relevant documentsgws workflow +standup-report to see tasks alongside today's calendargoogle-workspace — Required setup (install and auth)gmail — Email-to-task conversiongoogle-calendar — Task/calendar integrationmorning-briefing — Daily task reviewCapture it or forget it. Tasks bridge the gap between intention and execution.