skills/writing-and-planning/copywriting/document-editorial/composio-skills/googletasks-automation/SKILL.md
Automate Google Tasks via Rube MCP (Composio): create, list, update, delete, move, and bulk-insert tasks and task lists. Always search tools first for current schemas.
npx skillsauth add lunartech-x/superpowers googletasks-automationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Create, manage, organize, and bulk-operate on Google Tasks and task lists using Rube MCP (Composio).
Toolkit docs: composio.dev/toolkits/googletasks
RUBE_MANAGE_CONNECTIONS with toolkit googletasksRUBE_SEARCH_TOOLS first to get current tool schemasGet Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
RUBE_SEARCH_TOOLS respondsRUBE_MANAGE_CONNECTIONS with toolkit googletasksUse GOOGLETASKS_LIST_TASK_LISTS to fetch all available task lists for the authenticated user.
Tool: GOOGLETASKS_LIST_TASK_LISTS
Parameters:
- maxResults: Maximum task lists to return
- pageToken: Pagination token for next page
Use GOOGLETASKS_INSERT_TASK to add a new task to a specific task list.
Tool: GOOGLETASKS_INSERT_TASK
Parameters:
- tasklist_id (required): ID of the target task list
- title (required): Task title
- notes: Task description/notes
- due: Due date in RFC3339 format (e.g., "2025-01-20T00:00:00.000Z")
- status: "needsAction" or "completed"
- task_parent: Parent task ID (to create subtask)
- task_previous: Previous task ID (for ordering)
Use GOOGLETASKS_LIST_ALL_TASKS to fetch tasks across all task lists with optional filters.
Tool: GOOGLETASKS_LIST_ALL_TASKS
Parameters:
- max_tasks_total: Maximum total tasks to return
- showCompleted: Include completed tasks
- showDeleted: Include deleted tasks
- showHidden: Include hidden tasks
- dueMin / dueMax: Filter by due date range
- completedMin / completedMax: Filter by completion date
- updatedMin: Filter by last update time
- showAssigned: Include assigned tasks
Use GOOGLETASKS_UPDATE_TASK to modify a task's title, notes, due date, or status.
Tool: GOOGLETASKS_UPDATE_TASK
Parameters:
- tasklist_id (required): Task list ID
- task_id (required): Task ID to update
- title: New title
- notes: Updated notes
- due: New due date (RFC3339)
- status: "needsAction" or "completed"
Use GOOGLETASKS_BULK_INSERT_TASKS to create multiple tasks at once in a single operation.
Tool: GOOGLETASKS_BULK_INSERT_TASKS
Parameters:
- tasklist_id (required): Target task list ID
- tasks (required): Array of task objects (each with title, notes, due, status)
- batch_size: Number of tasks per batch request
Use GOOGLETASKS_DELETE_TASK to remove a specific task, or GOOGLETASKS_CLEAR_TASKS to permanently remove all completed tasks from a list.
Tool: GOOGLETASKS_DELETE_TASK
Parameters:
- tasklist_id (required): Task list ID
- task_id (required): Task ID to delete
Tool: GOOGLETASKS_CLEAR_TASKS
Parameters:
- tasklist (required): Task list ID to clear completed tasks from
GOOGLETASKS_LIST_TASK_LISTS to discover available task lists and their IDs before creating or listing tasks.GOOGLETASKS_LIST_ALL_TASKS or GOOGLETASKS_LIST_TASKS to find task IDs, then use GOOGLETASKS_UPDATE_TASK to modify them.status: "completed" using GOOGLETASKS_UPDATE_TASK.GOOGLETASKS_INSERT_TASK with the task_parent parameter set to the parent task's ID.GOOGLETASKS_MOVE_TASK to change a task's position within its list or reparent it.GOOGLETASKS_BULK_INSERT_TASKS for creating many tasks at once (e.g., importing from another system).tasklist_id and task_id are required for GOOGLETASKS_UPDATE_TASK, GOOGLETASKS_DELETE_TASK, and GOOGLETASKS_GET_TASK. You cannot operate on a task without knowing which list it belongs to.2025-01-20T00:00:00.000Z). Other formats will be rejected.GOOGLETASKS_CLEAR_TASKS permanently deletes all completed tasks from a list. This action is irreversible.GOOGLETASKS_LIST_ALL_TASKS fetches across all lists but results may be paginated -- check for pagination tokens.GOOGLETASKS_LIST_TASK_LISTS.| Action | Tool | Key Parameters |
|--------|------|----------------|
| List task lists | GOOGLETASKS_LIST_TASK_LISTS | maxResults, pageToken |
| List all tasks | GOOGLETASKS_LIST_ALL_TASKS | max_tasks_total, showCompleted, dueMin |
| List tasks in a list | GOOGLETASKS_LIST_TASKS | tasklist_id, maxResults, showCompleted |
| Get single task | GOOGLETASKS_GET_TASK | tasklist_id, task_id |
| Create task | GOOGLETASKS_INSERT_TASK | tasklist_id, title, notes, due |
| Bulk create tasks | GOOGLETASKS_BULK_INSERT_TASKS | tasklist_id, tasks |
| Update task | GOOGLETASKS_UPDATE_TASK | tasklist_id, task_id, title, status |
| Delete task | GOOGLETASKS_DELETE_TASK | tasklist_id, task_id |
| Move/reorder task | GOOGLETASKS_MOVE_TASK | tasklist_id, task_id |
| Clear completed | GOOGLETASKS_CLEAR_TASKS | tasklist |
Powered by Composio
tools
Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.
testing
Access AlphaFold 200M+ AI-predicted protein structures. Retrieve structures by UniProt ID, download PDB/mmCIF files, analyze confidence metrics (pLDDT, PAE), for drug discovery and structural biology.
development
Access real-time and historical stock market data, forex rates, cryptocurrency prices, commodities, economic indicators, and 50+ technical indicators via the Alpha Vantage API. Use when fetching stock prices (OHLCV), company fundamentals (income statement, balance sheet, cash flow), earnings, options data, market news/sentiment, insider transactions, GDP, CPI, treasury yields, gold/silver/oil prices, Bitcoin/crypto prices, forex exchange rates, or calculating technical indicators (SMA, EMA, MACD, RSI, Bollinger Bands). Requires a free API key from alphavantage.co.
development
This skill should be used for time series machine learning tasks including classification, regression, clustering, forecasting, anomaly detection, segmentation, and similarity search. Use when working with temporal data, sequential patterns, or time-indexed observations requiring specialized algorithms beyond standard ML approaches. Particularly suited for univariate and multivariate time series analysis with scikit-learn compatible APIs.