Temporal Time Manager

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: temporal-time-manager Version: 1.0.2 The temporal-time-manager skill is a legitimate integration for a time management service (aitimemg.cn). It provides standard CRUD operations for tasks, schedules, and ideas via a documented OpenAPI specification. The skill requires a user-provided API token and communicates with a specified backend (api.aitimemg.cn), which is consistent with its stated purpose. No evidence of malicious intent, unauthorized data exfiltration, or prompt injection was found in SKILL.md or openapi.yaml.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

The assistant can change or permanently delete tasks and schedules in the connected aitimemg.cn account.

Why it was flagged

The API intentionally lets the assistant overwrite and hard-delete time-management records. This is aligned with the skill purpose, but incorrect invocation could remove or corrupt user schedule/task data.

Skill content
delete_task description: 删除指定 ID 的任务(硬删除); update_task description: 需要传入完整的任务对象(包含 id),后端做整行覆写。
Recommendation

Require clear user confirmation before update or delete actions, especially hard deletes or whole-record overwrites.

What this means

Anyone or any agent process with the token could access or modify the user's Temporal Time Manager data within the token's permissions.

Why it was flagged

The skill requires a bearer-style API token to authenticate to the time-management service. This is expected for the integration, but it is still account-level authority for this service.

Skill content
TEMPORAL_API_TOKEN ... 在 aitimemg.cn 生成的 API Token(用于身份认证) ... required: true
Recommendation

Use a dedicated token if available, keep it out of chats/logs, verify the API base URL, and revoke or rotate the token if it may have been exposed.

What this means

Personal tasks, calendar-like schedules, and captured ideas may be stored remotely and later shown to or used by the assistant.

Why it was flagged

Tasks, schedules, and ideas are persisted to a cloud service and can later be retrieved into the agent context. This is disclosed and purpose-aligned, but persistent personal notes and schedules can contain sensitive information.

Skill content
data_policy: stores_data: true; data_location: "阿里云(中国大陆)"; description: 数据同步至 aitimemg.cn 平台。
Recommendation

Do not store passwords, secrets, or highly sensitive personal information in tasks or ideas; review the service's deletion and retention controls before use.