بنقرة واحدة
google-tasks-skill
Create, list, and complete Google Tasks. Supports task lists, due dates, and notes.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create, list, and complete Google Tasks. Supports task lists, due dates, and notes.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Use this skill to generate well-branded interfaces and assets for OpenCompany (zeenie.ai), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Launch Android applications by package name. Open any installed app programmatically.
Get list of installed Android applications with package names, versions, and metadata.
Control Android audio - get/set volume, mute/unmute for media, ringtone, notification, and call volumes.
Monitor Android device battery status, level, charging state, temperature, and health.
Control Android Bluetooth - enable, disable, get status, and list paired devices.
| name | google-tasks-skill |
| description | Create, list, and complete Google Tasks. Supports task lists, due dates, and notes. |
| allowed-tools | google_tasks |
| metadata | {"author":"opencompany","version":"1.0","category":"productivity"} |
Manage Google Tasks - create, list, and complete tasks.
Consolidated Google Tasks tool with operation parameter.
| Operation | Description | Required Fields |
|---|---|---|
create | Create a new task | title |
list | List tasks from a list | (none, defaults to @default) |
complete | Mark task as completed | task_id |
update | Update an existing task | task_id |
delete | Delete a task | task_id |
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "create" |
| title | string | Yes | Task title |
| notes | string | No | Task notes/description |
| due_date | string | No | Due date (ISO 8601 or YYYY-MM-DD) |
| tasklist_id | string | No | Task list ID (default: @default) |
Example - Simple task:
{
"operation": "create",
"title": "Review quarterly report"
}
Example - Task with details:
{
"operation": "create",
"title": "Submit expense report",
"notes": "Include receipts for conference travel",
"due_date": "2024-02-15"
}
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "list" |
| tasklist_id | string | No | Task list ID (default: @default) |
| show_completed | boolean | No | Include completed tasks (default: false) |
| show_hidden | boolean | No | Include hidden tasks (default: false) |
| max_results | integer | No | Maximum results (default: 100) |
Example - List pending tasks:
{
"operation": "list",
"show_completed": false,
"max_results": 50
}
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "complete" |
| task_id | string | Yes | Task ID to complete |
| tasklist_id | string | No | Task list ID (default: @default) |
Example:
{
"operation": "complete",
"task_id": "abc123xyz"
}
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "update" |
| task_id | string | Yes | Task ID to update |
| tasklist_id | string | No | Task list ID (default: @default) |
| update_title | string | No | New title |
| update_notes | string | No | New notes |
| update_due_date | string | No | New due date |
| update_status | string | No | New status: "needsAction" or "completed" |
Example:
{
"operation": "update",
"task_id": "abc123xyz",
"update_title": "Updated task title",
"update_due_date": "2024-03-01"
}
| Field | Type | Required | Description |
|---|---|---|---|
| operation | string | Yes | Must be "delete" |
| task_id | string | Yes | Task ID to delete |
| tasklist_id | string | No | Task list ID (default: @default) |
Example:
{
"operation": "delete",
"task_id": "abc123xyz"
}
| Status | Description |
|---|---|
needsAction | Task is pending |
completed | Task is done |
2024-02-15T14:00:00Z2024-02-15 (interpreted as midnight UTC)The default task list is @default. To work with custom lists:
tasklist_id parameterinput-tools handle