← 返回 Skills 市场
paul-leo

Google Tasks

作者 Paul Leo · GitHub ↗ · v0.1.1
cross-platform ✓ 安全检测通过
302
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install google-tasks-2
功能描述
[暂不可用] Google Tasks 任务管理集成。管理任务列表和任务,创建、完成、删除任务。通过 MorphixAI 代理安全访问 Google Tasks API。
使用说明 (SKILL.md)

Google Tasks(暂不可用)

状态:暂不可用 — Google Tasks 账号尚未链接,该工具暂时不可使用。如需启用,请通过 mx_link 工具链接 Google Tasks 账号(app: google_tasks)。

通过 mx_google_tasks 工具管理 Google Tasks 中的任务列表和任务。

前置条件

  1. 安装插件: openclaw plugins install openclaw-morphixai
  2. 获取 API Key: 访问 morphix.app/api-keys 生成 mk_xxxxxx 密钥
  3. 配置环境变量: export MORPHIXAI_API_KEY="mk_your_key_here"
  4. 链接账号: 访问 morphix.app/connections 链接 Google Tasks 账号,或通过 mx_link 工具链接(app: google_tasks

核心操作

列出任务列表

mx_google_tasks:
  action: list_task_lists

创建任务列表

mx_google_tasks:
  action: create_task_list
  title: "工作待办"

删除任务列表

mx_google_tasks:
  action: delete_task_list
  task_list_id: "MDxxxxxxxx"

列出任务

mx_google_tasks:
  action: list_tasks
  task_list_id: "MDxxxxxxxx"
  max_results: 20
  show_completed: false

查看任务详情

mx_google_tasks:
  action: get_task
  task_list_id: "MDxxxxxxxx"
  task_id: "Xxxxxxxx"

创建任务

mx_google_tasks:
  action: create_task
  task_list_id: "MDxxxxxxxx"
  title: "完成代码 Review"
  notes: "Review PR #42 的变更"
  due: "2026-03-01"

更新任务

mx_google_tasks:
  action: update_task
  task_list_id: "MDxxxxxxxx"
  task_id: "Xxxxxxxx"
  title: "更新后的标题"
  notes: "更新后的备注"

完成任务

mx_google_tasks:
  action: complete_task
  task_list_id: "MDxxxxxxxx"
  task_id: "Xxxxxxxx"

删除任务

mx_google_tasks:
  action: delete_task
  task_list_id: "MDxxxxxxxx"
  task_id: "Xxxxxxxx"

常见工作流

每日任务管理

1. mx_google_tasks: list_task_lists → 找到目标列表
2. mx_google_tasks: list_tasks, task_list_id: "xxx", show_completed: false
3. mx_google_tasks: create_task → 添加新任务
4. mx_google_tasks: complete_task → 完成已做的任务

注意事项

  • due 日期格式为 YYYY-MM-DD 或 RFC 3339(如 2026-03-01T00:00:00.000Z
  • status 只有两个值:needsAction(待完成)和 completed(已完成)
  • show_completed 默认不包含已完成任务
  • account_id 参数通常省略,工具自动检测已链接的 Google Tasks 账号
安全使用建议
This skill is instruction-only and appears to do what it says: use MorphixAI to manage Google Tasks. Before installing or using it, verify you trust MorphixAI and the openclaw-morphixai plugin (check their source and reviews), only provide a Morphix API key that you control, and review the account linking scopes on morphix.app so the token doesn't grant more access than you expect. Because the skill relies on an external proxy, the security of your Google Tasks data depends mostly on Morphix and the plugin rather than this SKILL.md itself. Also note the skill states it is currently unavailable until you link your Google account, so no immediate access will occur without that step.
功能分析
Type: OpenClaw Skill Name: google-tasks-2 Version: 0.1.1 The skill bundle consists of metadata and documentation (SKILL.md) for integrating Google Tasks via the MorphixAI platform. It defines standard CRUD operations for task management and requires a MORPHIXAI_API_KEY. No executable code is present, and the instructions are consistent with the stated purpose without any evidence of malicious intent, data exfiltration, or prompt injection.
能力评估
Purpose & Capability
Name/description, required env var (MORPHIXAI_API_KEY), and all runtime instructions reference the MorphixAI proxy and mx_google_tasks/mx_link tools — these are coherent with a Google Tasks integration via MorphixAI.
Instruction Scope
SKILL.md only documents using mx_google_tasks actions and linking a Google account via Morphix (mx_link); it does not instruct reading unrelated files, other environment variables, or exfiltrating data to unexpected endpoints. It does require installing the openclaw-morphixai plugin and using Morphix web pages to link accounts, which is expected for this integration.
Install Mechanism
No install spec or code files are included (instruction-only). The guidance to run 'openclaw plugins install openclaw-morphixai' is a normal, external installation step and not part of the skill writing arbitrary code to disk.
Credentials
Only MORPHIXAI_API_KEY is required, which is proportional for a proxy-based integration. Note: that key delegates access through Morphix to your linked Google Tasks account, so its scope and trustworthiness are important.
Persistence & Privilege
Skill does not request always:true, does not declare config paths, and is user-invocable; autonomous invocation is allowed but is the platform default and not a unique risk here.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install google-tasks-2
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /google-tasks-2 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.1
- Improved setup instructions: added steps for plugin installation, API key generation, and account linking. - Clarified environment variable configuration and provided direct links for key and account management. - All core features and usage samples remain unchanged.
v0.1.0
- Initial release of Google Tasks integration skill. - Allows listing, creating, and deleting task lists. - Supports managing tasks: create, update, complete, view details, and delete. - Requires linking a Google Tasks account via mx_link and setting the MORPHIXAI_API_KEY environment variable. - Tool currently marked as unavailable until account linking is completed.
元数据
Slug google-tasks-2
版本 0.1.1
许可证
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Google Tasks 是什么?

[暂不可用] Google Tasks 任务管理集成。管理任务列表和任务,创建、完成、删除任务。通过 MorphixAI 代理安全访问 Google Tasks API。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 302 次。

如何安装 Google Tasks?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install google-tasks-2」即可一键安装,无需额外配置。

Google Tasks 是免费的吗?

是的,Google Tasks 完全免费(开源免费),可自由下载、安装和使用。

Google Tasks 支持哪些平台?

Google Tasks 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Google Tasks?

由 Paul Leo(@paul-leo)开发并维护,当前版本 v0.1.1。

💬 留言讨论