用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/javimosch/open-claw-skills --skill unitask-task-agent命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | unitask-task-agent |
| description | Manage tasks + time blocks in Unitask (unitask.app) via scoped API token (CLI or MCP). |
| homepage | https://unitask.app |
| read_when | ["User wants to manage Unitask tasks from an AI agent","User wants to time-block today using Unitask scheduled_start + duration_minutes"] |
| metadata | {"clawdbot":{"emoji":"✅"}} |
This skill lets an AI agent safely manage a user's Unitask account using scoped API tokens.
It is designed for hosted use on unitask.app, so end users do not need to run any local server code.
Supported operations:
Subtasks:
parent_id.parent_id=<parent task id>.Use this skill when the user asks for things like:
Unitask -> Dashboard -> Settings -> API.UNITASK_API_KEY=<token>.Never ask users to paste full tokens in chat logs. Ask them to set environment variables instead.
read: required to read/list tasks.write: create/update tasks.delete: delete tasks.write or delete is granted, read must also be granted.Use the hosted MCP endpoint:
https://unitask.app/api/mcpAuth header (recommended):
Authorization: Bearer <UNITASK_API_KEY>Exposed tools:
list_tasks — filter by status (todo|done|archived), limit (1-500), offset, parent_idget_task — get one task by idcreate_task — title required; optional: description, parent_id, status, priority, due_date, start_date, recurrence, scheduled_start, duration_minutesupdate_task_status — change status (todo|done|archived)delete_task — soft-delete task + descendantsget_settings — get user settings + quiz prefsupdate_settings — partial update settings/quizplan_day_timeblocks — schedule time blocks in a windowRecommended usage for time blocking:
plan_day_timeblocks with apply=false to preview.apply=true after the user confirms the plan.status=done over delete when user intent is completion, not removal.plan_day_timeblocks, prefer preview (apply=false) first; only apply after user confirms.