惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
爱范儿
爱范儿
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
Vercel News
Vercel News
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
罗磊的独立博客
B
Blog
博客园_首页
A
About on SuperTechFans
有赞技术团队
有赞技术团队
V
V2EX
U
Unit 42
I
InfoQ
IT之家
IT之家
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
The Cloudflare Blog
H
Help Net Security

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
docs: consolidate moved docs pages · openclaw/openclaw@b3...
steipete · 2026-05-06 · via Recent Commits to openclaw:main

@@ -1,95 +1,47 @@

11

---

2-

summary: "Timezone handling for agents, envelopes, and prompts"

2+

summary: "Where timezones show up in OpenClaw — envelopes, tool payloads, system prompt"

33

read_when:

4-

- You need to understand how timestamps are normalized for the model

5-

- Configuring the user timezone for system prompts

4+

- You want a quick mental model for timezone handling

5+

- You are deciding where to set or override a timezone

66

title: "Timezones"

77

---

889-

OpenClaw standardizes timestamps so the model sees a **single reference time**.

9+

OpenClaw standardizes timestamps so the model sees a **single reference time** instead of a mix of provider-local clocks. There are three surfaces where timezones show up, each with its own purpose:

101011-

## Message envelopes (local by default)

11+

## Three timezone surfaces

121213-

Inbound messages are wrapped in an envelope like:

13+

| Surface | What it shows | Default | Configured via |

14+

| ----------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------- | ------------------------------------------------------- |

15+

| Message envelopes | Wraps inbound channel messages: `[Signal +1555 2026-01-18 00:19 PST] hello` | Host-local | `agents.defaults.envelopeTimezone` |

16+

| Tool payloads | Channel `readMessages`-style tools return raw provider time + normalized `timestampMs` / `timestampUtc` | UTC fields always present | Not configurable — preserves provider-native timestamps |

17+

| System prompt | A small `Current Date & Time` block with the **time zone only** (no clock value, for cache stability) | Host timezone if `userTimezone` unset | `agents.defaults.userTimezone` |

141815-

```

16-

[Provider ... 2026-01-05 16:26 PST] message text

17-

```

19+

The system prompt deliberately omits the live clock to keep prompt caching stable across turns. When the agent needs the current time, it calls `session_status`.

182019-

The timestamp in the envelope is **host-local by default**, with minutes precision.

20-21-

You can override this with:

21+

## Setting the user timezone

22222323

```json5

2424

{

2525

agents: {

2626

defaults: {

27-

envelopeTimezone: "local", // "utc" | "local" | "user" | IANA timezone

28-

envelopeTimestamp: "on", // "on" | "off"

29-

envelopeElapsed: "on", // "on" | "off"

27+

userTimezone: "America/Chicago",

3028

},

3129

},

3230

}

3331

```

343235-

- `envelopeTimezone: "utc"` uses UTC.

36-

- `envelopeTimezone: "user"` uses `agents.defaults.userTimezone` (falls back to host timezone).

37-

- Use an explicit IANA timezone (e.g., `"Europe/Vienna"`) for a fixed offset.

38-

- `envelopeTimestamp: "off"` removes absolute timestamps from envelope headers.

39-

- `envelopeElapsed: "off"` removes elapsed time suffixes (the `+2m` style).

40-41-

### Examples

42-43-

**Local (default):**

44-45-

```

46-

[Signal Alice +1555 2026-01-18 00:19 PST] hello

47-

```

48-49-

**Fixed timezone:**

50-51-

```

52-

[Signal Alice +1555 2026-01-18 06:19 GMT+1] hello

53-

```

54-55-

**Elapsed time:**

56-57-

```

58-

[Signal Alice +1555 +2m 2026-01-18T05:19Z] follow-up

59-

```

60-61-

## Tool payloads (raw provider data + normalized fields)

62-63-

Tool calls (`channels.discord.readMessages`, `channels.slack.readMessages`, etc.) return **raw provider timestamps**.

64-

We also attach normalized fields for consistency:

65-66-

- `timestampMs` (UTC epoch milliseconds)

67-

- `timestampUtc` (ISO 8601 UTC string)

68-69-

Raw provider fields are preserved.

70-71-

## User timezone for the system prompt

72-73-

Set `agents.defaults.userTimezone` to tell the model the user's local time zone. If it is

74-

unset, OpenClaw resolves the **host timezone at runtime** (no config write).

75-76-

```json5

77-

{

78-

agents: { defaults: { userTimezone: "America/Chicago" } },

79-

}

80-

```

81-82-

The system prompt includes:

33+

If `userTimezone` is unset, OpenClaw resolves the host timezone at runtime (no config write). `agents.defaults.timeFormat` (`auto` | `12` | `24`) controls 12h/24h rendering in envelopes and downstream surfaces, not in the system prompt section.

833484-

- `Current Date & Time` section with local time and timezone

85-

- `Time format: 12-hour` or `24-hour`

35+

## When to override

863687-

You can control the prompt format with `agents.defaults.timeFormat` (`auto` | `12` | `24`).

37+

- **Use UTC envelopes** (`envelopeTimezone: "utc"`) when you want stable timestamps across hosts in different regions, or when you want UTC-aligned logs to match diagnostics output.

38+

- **Use a fixed IANA zone** (e.g. `"Europe/Vienna"`) when the gateway host is in one zone but the user is in another and you want envelopes to read in the user's zone regardless of host migration.

39+

- **Set `envelopeTimestamp: "off"`** for low-token envelopes when timestamp context is not useful for the conversation.

884089-

See [Date & Time](/date-time) for the full behavior and examples.

41+

For the full behavior reference, examples per provider, and elapsed-time formatting, see [Date & Time](/date-time).

90429143

## Related

924493-

- [Heartbeat](/gateway/heartbeat)active hours use timezone for scheduling

94-

- [Cron Jobs](/automation/cron-jobs)cron expressions use timezone for scheduling

95-

- [Date & Time](/date-time)full date/time behavior and examples

45+

- [Date & Time](/date-time)full envelope/tool/prompt behavior and examples.

46+

- [Heartbeat](/gateway/heartbeat)active hours use timezone for scheduling.

47+

- [Cron Jobs](/automation/cron-jobs)cron expressions use timezone for scheduling.