# Send Temporal Time Manager to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "temporal-time-manager",
    "name": "Temporal Time Manager",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/PANGKAIFENG/temporal-time-manager",
    "canonicalUrl": "https://clawhub.ai/PANGKAIFENG/temporal-time-manager",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/temporal-time-manager",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=temporal-time-manager",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "openapi.yaml"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "temporal-time-manager",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T02:43:43.020Z",
      "expiresAt": "2026-05-11T02:43:43.020Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=temporal-time-manager",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=temporal-time-manager",
        "contentDisposition": "attachment; filename=\"temporal-time-manager-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "temporal-time-manager"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/temporal-time-manager"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/temporal-time-manager",
    "downloadUrl": "https://openagent3.xyz/downloads/temporal-time-manager",
    "agentUrl": "https://openagent3.xyz/skills/temporal-time-manager/agent",
    "manifestUrl": "https://openagent3.xyz/skills/temporal-time-manager/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/temporal-time-manager/agent.md"
  }
}
```
## Documentation

### 时间管理 AI Skill

这个 Skill 让你的 AI 助手直接操作你在 aitimemg.cn 的时间管理数据。

### 功能列表

工具名说明list_tasks获取所有任务create_task创建一个新任务update_task更新任务（标题、状态、截止日期等）delete_task删除指定任务list_schedules获取所有日程安排create_schedule创建新日程update_schedule更新日程delete_schedule删除日程capture_idea快速捕获一条灵感/备忘

### 1. 安装到你的 OpenClaw 机器人

openclaw skill install PANGKAIFENG/temporal-time-manager

### 2. 获取你的 API Token

打开 aitimemg.cn/settings
找到「🔑 API Token」板块，点击 「生成 API Token」
复制生成的 Token（格式：tmg_...），仅在生成时显示完整值，请立即保存

### 3. 配置环境变量

在你的 OpenClaw 环境或 .env 文件中设置：

TEMPORAL_API_TOKEN=tmg_你的token     # 在 aitimemg.cn/settings 生成
TEMPORAL_BASE_URL=https://api.aitimemg.cn  # 可不填，默认即是

### 3. 开始对话

对话示例：

你：帮我查看今天的任务列表
助手：[调用 list_tasks] 你好，这是你今天的任务...

你：创建一个任务：明天下午3点开周会
助手：[调用 create_task] 已为你创建任务...

你：记录一个灵感：考虑接入 Notion 同步
助手：[调用 capture_idea] 已保存到你的灵感池...

### 使用方式（通过 mcporter）

# 列出任务
mcporter call temporal-time-manager list_tasks

# 创建任务
mcporter call temporal-time-manager create_task --args '{"title":"开会","due_date":"2026-02-28","priority":"high"}'

# 捕获灵感
mcporter call temporal-time-manager capture_idea --args '{"content":"这是一个灵感"}'

### Task（任务）

id: 唯一标识（UUID，调用方必须传入）
title: 任务标题（必填）
notes: 备注/描述
status: 状态，可选值：todo / done / abandoned
group: 四象限分类

urgent_important：重要且紧急
important：重要不紧急
urgent：紧急不重要
neither：不重要不紧急（默认）


executor_type: 执行方式，可选值：human（纯人工）/ ai_copilot（AI协作）/ ai_auto（AI全自动）
project_id: 所属项目 ID（可选）
created_at / updated_at: 时间戳（ISO 8601，建议传入）

### Schedule（日程排班）

日程是"任务在某天某时段的排班记录"，与任务通过 task_id 关联。

id: 唯一标识（UUID，调用方必须传入）
task_id: 关联任务 ID（必填）
date: 排班日期，格式 YYYY-MM-DD（必填）
planned_start: 计划开始时间，以小时为单位（如 9.5 = 09:30，15.0 = 15:00）（必填）
planned_duration: 计划时长，以小时为单位（如 1.0 = 1小时，1.5 = 90分钟）（必填）
is_all_day: 是否全天任务（true 表示放入"今日待排班"槽，此时 planned_start 传 0）

### Idea（灵感/备忘）

id: 唯一标识（UUID，后端自动生成）
content: 内容文字（必填）
source: 来源，如 openclaw / feishu / web（默认 openclaw）
meta: 附加元数据（可选 JSON 对象）
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: PANGKAIFENG
- Version: 1.0.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-04T02:43:43.020Z
- Expires at: 2026-05-11T02:43:43.020Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/temporal-time-manager)
- [Send to Agent page](https://openagent3.xyz/skills/temporal-time-manager/agent)
- [JSON manifest](https://openagent3.xyz/skills/temporal-time-manager/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/temporal-time-manager/agent.md)
- [Download page](https://openagent3.xyz/downloads/temporal-time-manager)