From 30474536d7675c19bbde21f7136955ae5a189569 Mon Sep 17 00:00:00 2001 From: dj-oyu <68707227+dj-oyu@users.noreply.github.com> Date: Sun, 22 Feb 2026 15:56:54 +0900 Subject: [PATCH] chore: increase git cache TTL from 30s to 5min Co-Authored-By: Claude Opus 4.6 --- cmd/picoclaw/cmd_gateway.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/picoclaw/cmd_gateway.go b/cmd/picoclaw/cmd_gateway.go index bf85cb9fc..bec6ea20a 100644 --- a/cmd/picoclaw/cmd_gateway.go +++ b/cmd/picoclaw/cmd_gateway.go @@ -316,7 +316,7 @@ type agentLoopDataProvider struct { gitCacheAt time.Time } -const gitCacheTTL = 30 * time.Second +const gitCacheTTL = 5 * time.Minute func (p *agentLoopDataProvider) ListSkills() []skills.SkillInfo { return p.loop.ListSkills()