Files
oh-my-opencode/src/agents/env-context.ts
T

17 lines
570 B
TypeScript
Raw Normal View History

/**
* Creates OmO-specific environment context (timezone, locale).
* Note: Working directory, platform, and date are already provided by OpenCode's system.ts,
* so we only include fields that OpenCode doesn't provide to avoid duplication.
* See: https://github.com/code-yeongyu/oh-my-openagent/issues/379
*/
export function createEnvContext(): string {
const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone
const locale = Intl.DateTimeFormat().resolvedOptions().locale
return `
<omo-env>
Timezone: ${timezone}
Locale: ${locale}
</omo-env>`
}