Timezones
OpenClaw 标准化时间戳,以便模型看到单一参考时间。
消息信封(默认为本地时间)
Section titled “消息信封(默认为本地时间)”入站消息被包装在如下信封中:
[Provider ... 2026-01-05 16:26 PST] message text信封中的时间戳默认为主机本地时间,精度为分钟。
您可以通过以下方式覆盖此设置:
{ agents: { defaults: { envelopeTimezone: "local", // "utc" | "local" | "user" | IANA timezone envelopeTimestamp: "on", // "on" | "off" envelopeElapsed: "on", // "on" | "off" }, },}envelopeTimezone: "utc"使用 UTC。envelopeTimezone: "user"使用agents.defaults.userTimezone(回退到主机时区)。- 使用显式的 IANA 时区(例如
"Europe/Vienna")作为固定偏移量。 envelopeTimestamp: "off"从信封标头中移除绝对时间戳。envelopeElapsed: "off"移除经过时间后缀(+2m样式)。
本地时间(默认):
[Signal Alice +1555 2026-01-18 00:19 PST] hello固定时区:
[Signal Alice +1555 2026-01-18 06:19 GMT+1] hello经过时间:
[Signal Alice +1555 +2m 2026-01-18T05:19Z] follow-up工具负载(原始提供者数据 + 标准化字段)
Section titled “工具负载(原始提供者数据 + 标准化字段)”工具调用(channels.discord.readMessages、channels.slack.readMessages 等)返回原始提供程序时间戳。
我们还附加了规范化字段以保持一致性:
timestampMs(UTC 纪元毫秒)timestampUtc(ISO 8601 UTC 字符串)
原始提供者字段将被保留。
系统提示的用户时区
Section titled “系统提示的用户时区”设置 agents.defaults.userTimezone 以告知模型用户的本地时区。如果
未设置,OpenClaw 将在运行时解析主机时区(无需写入配置)。
{ agents: { defaults: { userTimezone: "America/Chicago" } },}系统提示包括:
Current Date & Time部分包含本地时间和时区Time format: 12-hour或24-hour
您可以使用 agents.defaults.timeFormat(auto | 12 | 24)控制提示词格式。
有关完整的行为和示例,请参阅日期与时间。
- Heartbeat — 活跃时段使用时区进行调度
- Cron Jobs — cron 表达式使用时区进行调度
- Date & Time — 完整的日期/时间行为和示例