From 5c19a2ba08f4099fc8b4a68827990c7087deb0b0 Mon Sep 17 00:00:00 2001 From: Josh Bleecher Snyder Date: Sun, 11 Jan 2026 20:17:53 -0800 Subject: [PATCH] shelley/server: read agents.md This was an oversight. Forgot the 's'. Next up: move the default agent.md to agents.md. --- server/system_prompt.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/system_prompt.go b/server/system_prompt.go index e60231f1d6e809dde5b9d53673d09ddc729a5686..3c306189ebe60ed3c942c769ee1a0d6e6548a738 100644 --- a/server/system_prompt.go +++ b/server/system_prompt.go @@ -220,6 +220,7 @@ func findGuidanceFilesInDir(dir string) []string { guidanceNames := map[string]bool{ "agent.md": true, + "agents.md": true, "claude.md": true, "dear_llm.md": true, "readme.md": true, @@ -244,6 +245,7 @@ func findGuidanceFilesInDir(dir string) []string { func findAllGuidanceFiles(root string) []string { guidanceNames := map[string]bool{ "agent.md": true, + "agents.md": true, "claude.md": true, "dear_llm.md": true, }