shelley/server: read agents.md

Josh Bleecher Snyder created

This was an oversight. Forgot the 's'.

Next up: move the default agent.md to agents.md.

Change summary

server/system_prompt.go | 2 ++
1 file changed, 2 insertions(+)

Detailed changes

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