Add local timezone datetime support in agent prompts

- Add timezone support to replaceSpecialVars function with dayjs timezone plugin
- Add new special variables: {{local_datetime}} and {{local_date}}
- Update specialVariables config to include new variables
- Pass timezone from client via Intl.DateTimeFormat API
- Add timezone field to TPayload type
- Update all client-side replaceSpecialVars calls to include timezone
- Add comprehensive tests for timezone-aware special variables
- Update web_search tool context to include local datetime when timezone available

Co-authored-by: berry-13 <81851188+berry-13@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-10-21 21:26:26 +00:00
parent c1dcabae20
commit 9fe4554a70
11 changed files with 127 additions and 6 deletions

View file

@ -185,6 +185,7 @@ const initializeAgent = async ({
agent.instructions = replaceSpecialVars({
text: agent.instructions,
user: req.user,
timezone: req.body?.timezone,
});
}