From b66648d4839f14a6f20c2cb3b36bad58bc7e82d8 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 21 Mar 2026 16:09:00 +0000 Subject: [PATCH] fix: correct AutonomousConfig.IntervalMinutes minimum interval comment The heartbeat service enforces a 5-minute floor, not 1-minute. https://claude.ai/code/session_0118WWK5KLRM7ZBUoC8EMgKS --- pkg/config/config.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/config/config.go b/pkg/config/config.go index 716f42237..0474201c2 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -556,7 +556,8 @@ type AutonomousConfig struct { Enabled bool `json:"enabled" env:"PICONOMOUS_AUTONOMOUS_ENABLED"` // IntervalMinutes controls how often (in minutes) the autonomous heartbeat fires. - // Defaults to 5 minutes when autonomous mode is enabled. Minimum is 1 minute. + // Defaults to 5 minutes when autonomous mode is enabled. Minimum is 5 minutes + // (enforced by the heartbeat service). IntervalMinutes int `json:"interval_minutes" env:"PICONOMOUS_AUTONOMOUS_INTERVAL_MINUTES"` // AllowSelfSchedule lets the agent create cron jobs targeting its own internal