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, }