mirror of
https://github.com/outbackdingo/optimclaw.git
synced 2026-08-27 08:00:17 +00:00
* feat(timezone): add timezone-aware session context (#661) All timestamps were UTC-only, causing daily logs to split at UTC midnight, cron schedules to fire in UTC, and no quiet hours for heartbeat. This adds timezone as a per-session property flowing from the client. Key changes: - New `src/timezone.rs` module with resolution chain, parsing, and detection - `IncomingMessage` carries optional timezone from client - `JobContext.user_timezone` flows timezone to tools - `next_cron_fire()` accepts timezone for schedule evaluation - `Trigger::Cron` stores optional timezone (backward-compatible) - Workspace gains `_tz` variants for daily logs and system prompt - Heartbeat supports quiet hours (`HEARTBEAT_QUIET_START/END`) - Web frontend sends `Intl.DateTimeFormat().resolvedOptions().timeZone` - REPL auto-detects system timezone - `DEFAULT_TIMEZONE` env var / settings for server-wide default Storage stays UTC. Conversion happens at display boundaries. Co-Authored-By: Claude Opus 4.6 <[email protected]> * fix(timezone): address review feedback on timezone-aware sessions - Validate quiet hours values (0-23) in HeartbeatConfig::resolve() - Fall back to settings values when env vars are unset for quiet hours - Validate IANA timezone strings in routine_create/update with parse_timezone - Add timezone field to routine_create tool schema - Allow standalone timezone update on cron routines without changing schedule - Return path from append_daily_log_tz to avoid TOCTOU race at midnight - Delegate append_daily_log to append_daily_log_tz(entry, UTC) to avoid drift - Preserve timezone through approval flow via PendingApproval.user_timezone - Improve test_today_in_tz to not depend on hardcoded year - Add 3 regression tests for quiet hours config validation Co-Authored-By: Claude Opus 4.6 <[email protected]> * style: fix formatting in routine.rs Co-Authored-By: Claude Opus 4.6 <[email protected]> * fix(timezone): address second round of review feedback - Remove .claude/scheduled_tasks.lock from repo and add to .gitignore - Store resolved timezone (not raw message.timezone) in PendingApproval - Carry forward user_timezone through chained approvals in thread_ops - Wire quiet_hours_start/end from config to HeartbeatRunner - Support X-Timezone header as fallback in chat_send_handler [skip-regression-check] Co-Authored-By: Claude Opus 4.6 <[email protected]> * fix(timezone): include user's local time in time tool response The time tool's "now" operation now returns local_iso and timezone fields based on ctx.user_timezone, so the LLM can report time in the user's timezone instead of always UTC. Co-Authored-By: Claude Opus 4.6 <[email protected]> * style: fix formatting in time.rs Co-Authored-By: Claude Opus 4.6 <[email protected]> * fix(timezone): address Copilot review round 3 — validation, deterministic tests, schema fixes - Validate DEFAULT_TIMEZONE and HEARTBEAT_TIMEZONE at config load time - Add timezone field to HeartbeatSettings and config::HeartbeatConfig - Wire heartbeat timezone from config through agent_loop to HeartbeatRunner - Add timezone to routine_update tool schema (was accepted but not advertised) - Error on schedule/timezone update for non-cron routines - Validate timezone in Trigger::from_db (coerce invalid to None with warning) - Validate timezone in approval path (thread_ops.rs) before overwriting - Time tool always includes timezone/local_iso fields (fallback to UTC) - Make quiet hours tests deterministic using current UTC hour - Add regression tests for config validation [skip-regression-check] Co-Authored-By: Claude Opus 4.6 <[email protected]> --------- Co-authored-by: Claude Opus 4.6 <[email protected]>
132 lines
5.1 KiB
Rust
132 lines
5.1 KiB
Rust
use std::time::Duration;
|
|
|
|
use crate::config::helpers::{parse_bool_env, parse_option_env, parse_optional_env};
|
|
use crate::error::ConfigError;
|
|
use crate::settings::Settings;
|
|
|
|
/// Agent behavior configuration.
|
|
#[derive(Debug, Clone)]
|
|
pub struct AgentConfig {
|
|
pub name: String,
|
|
pub max_parallel_jobs: usize,
|
|
pub job_timeout: Duration,
|
|
pub stuck_threshold: Duration,
|
|
pub repair_check_interval: Duration,
|
|
pub max_repair_attempts: u32,
|
|
/// Whether to use planning before tool execution.
|
|
pub use_planning: bool,
|
|
/// Session idle timeout. Sessions inactive longer than this are pruned.
|
|
pub session_idle_timeout: Duration,
|
|
/// Allow chat to use filesystem/shell tools directly (bypass sandbox).
|
|
pub allow_local_tools: bool,
|
|
/// Maximum daily LLM spend in cents (e.g. 10000 = $100). None = unlimited.
|
|
pub max_cost_per_day_cents: Option<u64>,
|
|
/// Maximum LLM/tool actions per hour. None = unlimited.
|
|
pub max_actions_per_hour: Option<u64>,
|
|
/// Maximum tool-call iterations per agentic loop invocation. Default 50.
|
|
pub max_tool_iterations: usize,
|
|
/// When true, skip tool approval checks entirely. For benchmarks/CI.
|
|
pub auto_approve_tools: bool,
|
|
/// Default timezone for new sessions (IANA name, e.g. "America/New_York").
|
|
pub default_timezone: String,
|
|
}
|
|
|
|
impl AgentConfig {
|
|
/// Create a test-friendly config without reading env vars.
|
|
#[cfg(feature = "libsql")]
|
|
pub fn for_testing() -> Self {
|
|
Self {
|
|
name: "test-rig".to_string(),
|
|
max_parallel_jobs: 1,
|
|
job_timeout: Duration::from_secs(30),
|
|
stuck_threshold: Duration::from_secs(300),
|
|
repair_check_interval: Duration::from_secs(3600),
|
|
max_repair_attempts: 0,
|
|
use_planning: false,
|
|
session_idle_timeout: Duration::from_secs(3600),
|
|
allow_local_tools: true,
|
|
max_cost_per_day_cents: None,
|
|
max_actions_per_hour: None,
|
|
max_tool_iterations: 10,
|
|
auto_approve_tools: true,
|
|
default_timezone: "UTC".to_string(),
|
|
}
|
|
}
|
|
|
|
pub(crate) fn resolve(settings: &Settings) -> Result<Self, ConfigError> {
|
|
Ok(Self {
|
|
name: parse_optional_env("AGENT_NAME", settings.agent.name.clone())?,
|
|
max_parallel_jobs: parse_optional_env(
|
|
"AGENT_MAX_PARALLEL_JOBS",
|
|
settings.agent.max_parallel_jobs as usize,
|
|
)?,
|
|
job_timeout: Duration::from_secs(parse_optional_env(
|
|
"AGENT_JOB_TIMEOUT_SECS",
|
|
settings.agent.job_timeout_secs,
|
|
)?),
|
|
stuck_threshold: Duration::from_secs(parse_optional_env(
|
|
"AGENT_STUCK_THRESHOLD_SECS",
|
|
settings.agent.stuck_threshold_secs,
|
|
)?),
|
|
repair_check_interval: Duration::from_secs(parse_optional_env(
|
|
"SELF_REPAIR_CHECK_INTERVAL_SECS",
|
|
settings.agent.repair_check_interval_secs,
|
|
)?),
|
|
max_repair_attempts: parse_optional_env(
|
|
"SELF_REPAIR_MAX_ATTEMPTS",
|
|
settings.agent.max_repair_attempts,
|
|
)?,
|
|
use_planning: parse_bool_env("AGENT_USE_PLANNING", settings.agent.use_planning)?,
|
|
session_idle_timeout: Duration::from_secs(parse_optional_env(
|
|
"SESSION_IDLE_TIMEOUT_SECS",
|
|
settings.agent.session_idle_timeout_secs,
|
|
)?),
|
|
allow_local_tools: parse_bool_env("ALLOW_LOCAL_TOOLS", false)?,
|
|
max_cost_per_day_cents: parse_option_env("MAX_COST_PER_DAY_CENTS")?,
|
|
max_actions_per_hour: parse_option_env("MAX_ACTIONS_PER_HOUR")?,
|
|
max_tool_iterations: parse_optional_env(
|
|
"AGENT_MAX_TOOL_ITERATIONS",
|
|
settings.agent.max_tool_iterations,
|
|
)?,
|
|
auto_approve_tools: parse_bool_env(
|
|
"AGENT_AUTO_APPROVE_TOOLS",
|
|
settings.agent.auto_approve_tools,
|
|
)?,
|
|
default_timezone: {
|
|
let tz: String = parse_optional_env(
|
|
"DEFAULT_TIMEZONE",
|
|
settings.agent.default_timezone.clone(),
|
|
)?;
|
|
if crate::timezone::parse_timezone(&tz).is_none() {
|
|
return Err(ConfigError::InvalidValue {
|
|
key: "DEFAULT_TIMEZONE".into(),
|
|
message: format!("invalid IANA timezone: '{tz}'"),
|
|
});
|
|
}
|
|
tz
|
|
},
|
|
})
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_default_timezone_rejects_invalid() {
|
|
let mut settings = Settings::default();
|
|
settings.agent.default_timezone = "Fake/Zone".to_string();
|
|
|
|
let result = AgentConfig::resolve(&settings);
|
|
assert!(result.is_err(), "invalid IANA timezone should be rejected");
|
|
}
|
|
|
|
#[test]
|
|
fn test_default_timezone_accepts_valid() {
|
|
let settings = Settings::default(); // default is "UTC"
|
|
let config = AgentConfig::resolve(&settings).expect("resolve");
|
|
assert_eq!(config.default_timezone, "UTC");
|
|
}
|
|
}
|