用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/zeenie-ai/OpenCompany --skill google-tasks-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use this skill to generate well-branded interfaces and assets for OpenCompany (opencompany.sh), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Read, search, and write raw local data (files, CSV, JSON, PDF, HTML, XLSX, images) across the workspace and operator-mounted folders. Use when the user asks about local files, documents, spreadsheets, logs, or data on disk.
Understand images (describe content, answer questions about them, extract text/OCR) via a vision model. Use when the user asks what an image, screenshot, chart, scan, or photo contains.
基于 SOC 职业分类
正在显示 SKILL.md
| 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