From 8b5d1cd785cbe1bed8d75a783484628bf07c63a5 Mon Sep 17 00:00:00 2001 From: repfigit <--global> Date: Sun, 15 Feb 2026 23:46:54 -0500 Subject: [PATCH] fix: load AGENT.md instead of AGENTS.md in bootstrap The bootstrap file list referenced "AGENTS.md" (plural) but the actual file is "AGENT.md" (singular), so media sending instructions were never included in the system prompt. Co-Authored-By: Claude Opus 4.6 --- pkg/agent/context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/agent/context.go b/pkg/agent/context.go index cf5ce2913..70b132980 100644 --- a/pkg/agent/context.go +++ b/pkg/agent/context.go @@ -140,7 +140,7 @@ The following skills extend your capabilities. To use a skill, read its SKILL.md func (cb *ContextBuilder) LoadBootstrapFiles() string { bootstrapFiles := []string{ - "AGENTS.md", + "AGENT.md", "SOUL.md", "USER.md", "IDENTITY.md",