Overview
- Skill Key
- addozhang/google-tasks
- Author
- OpenClaw Community
- Source Repo
- openclaw/skills
- Version
- 1.0.0
- Source Path
- skills/addozhang/google-tasks
- Latest Commit SHA
- 405f47ee2e041d632a2fb51084174c8ccea74d34
Fetch, display, create, and delete Google Tasks using the Google Tasks API. Use when the user asks to check, view, list, get, add, create, remove, or delete their Google Tasks, to-do lists, or task items. Handles OAuth authentication automatically using bash script with curl and jq.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 google-tasks 技能。 若已安装,则直接安装 google-tasks 技能。
# Google Tasks Skill
Manage Google Tasks from all task lists using lightweight bash scripts.
## Quick Start
### View tasks
```bash
bash scripts/get_tasks.sh
```
### Create a task
```bash
# Using default list (configured in google-tasks-config.sh)
bash scripts/create_task.sh "Task title" ["due-date"] ["notes"]
# Specifying list name
bash scripts/create_task.sh "List Name" "Task title" ["due-date"] ["notes"]
```
Examples:
```bash
# Simple task (uses default list)
bash scripts/create_task.sh "Buy groceries"
# Task with due date (uses default list)
bash scripts/create_task.sh "Finish report" "2026-02-10"
# Task with specific list
bash scripts/create_task.sh "Work" "Finish report" "2026-02-10"
# Task with list, due date, and notes
bash scripts/create_task.sh "Personal" "Call mom" "2026-02-05" "Ask about her health"
```
**Default list configuration:**
Edit `google-tasks-config.sh` to set your default list:
```bash
DEFAULT_LIST="Private" # Change to your preferred default
```
### Delete a task
```bash
bash scripts/delete_task.sh "List Name" <task-number-or-title>
```
Examples:
```bash
# Delete by task number (position in list)
bash scripts/delete_task.sh "Work" 2
# Delete by task title
bash scripts/delete_task.sh "Inbox" "Buy groceries"
```
## Requirements
- `jq` - JSON processor (usually pre-installed)
- `curl` - HTTP client (usually pre-installed)
- Valid `token.json` with OAuth access token
- **Scopes required:** `https://www.googleapis.com/auth/tasks` (read + write)
## First-Time Setup
If `token.json` doesn't exist:
1. User needs OAuth credentials (`credentials.json`) - See [setup.md](references/setup.md)
2. Run the Node.js authentication flow first to generate `token.json`
3. Then the bash script can be used for all subsequent calls
## Output Format
```
📋 Your Google Tasks:
📌 List Name
──────────────────────────────────────────────────
1. ⬜ Task title (due: YYYY-MM-DD)
Note: Task notes if present
2. ⬜ Another task
📌 Another List
──...
# Google Tasks Skill for OpenClaw Manage your Google Tasks directly from OpenClaw using lightweight bash scripts with OAuth authentication. ## Features - ✅ **View all tasks** across all your Google Task lists - ✅ **Create new tasks** with optional due dates and notes - ✅ **Delete tasks** by number or title - ✅ **Automatic token refresh** - no re-authentication needed - ✅ **Lightweight** - Pure bash with curl and jq - ✅ **Configurable** - Set your default task list ## Quick Start ### View your tasks ```bash bash scripts/get_tasks.sh ``` ### Create a task ```bash # Simple task (uses default list from config) bash scripts/create_task.sh "Buy groceries" # Task with due date bash scripts/create_task.sh "Finish report" "2026-02-10" # Task in specific list bash scripts/create_task.sh "Work" "Finish report" "2026-02-10" # Task with notes bash scripts/create_task.sh "Personal" "Call mom" "2026-02-05" "Ask about her health" ``` ### Delete a task ```bash # By position in list bash scripts/delete_task.sh "Work" 2 # By task title bash scripts/delete_task.sh "Inbox" "Buy groceries" ``` ## Setup 1. **Install dependencies:** - `jq` (JSON processor) - usually pre-installed - `curl` (HTTP client) - usually pre-installed - Node.js packages: `npm install` 2. **Get OAuth credentials:** - Follow the guide in [references/setup.md](references/setup.md) - Download `credentials.json` from Google Cloud Console - Add required scope: `https://www.googleapis.com/auth/tasks` 3. **Authenticate:** - Run the initial authentication to generate `token.json` - The bash scripts will handle token refresh automatically 4. **Configure default list (optional):** - Edit `google-tasks-config.sh` to set your preferred default list ## File Structure ``` google-tasks/ ├── SKILL.md # Skill metadata and documentation ├── README.md # This file ├── package.json # Node.js dependencies for auth ├── google-tasks-confi...
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
edholofy
University for AI agents. 92 courses, 4400+ scenarios, any model via OpenRouter. Auto-training loops generate per-model SKILL.md documents. Works with Claude Code, OpenClaw, Cursor, Windsurf. No fine-tuning required.
lethehades
macOS WPS Office workflow helper skill for safer document preparation, conversion, export, and compatibility guidance
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
carlzhao007
飞书消息自动处理与进度反馈技能。安装后后台运行,监听飞书任务消息并自动创建独立进程处理。 在处理前后发送实时进度反馈(任务确认、进度百分比、完成通知)。 支持任务类型识别、智能解析、错误重试、并发控制、状态持久化。 使用场景:飞书自动化工作流、任务进度追踪、批量任务处理、需要实时反馈的场景。
carlulsoe
Local speech-to-text with NVIDIA Parakeet TDT 0.6B v3 (ONNX on CPU). 30x faster than Whisper, 25 languages, auto-detection, OpenAI-compatible API. Use when transcribing audio files, converting speech to text, or processing voice recordings locally without cloud APIs.