Skip to content

Commit 69ce34a

Browse files
authored
Read AGENTS.md by default (#4232)
1 parent ffecf13 commit 69ce34a

File tree

1 file changed

+1
-1
lines changed
  • crates/goose-mcp/src/developer

1 file changed

+1
-1
lines changed

crates/goose-mcp/src/developer/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ impl DeveloperRouter {
585585
let hints_filenames: Vec<String> = std::env::var("CONTEXT_FILE_NAMES")
586586
.ok()
587587
.and_then(|s| serde_json::from_str(&s).ok())
588-
.unwrap_or_else(|| vec![".goosehints".to_string()]);
588+
.unwrap_or_else(|| vec!["AGENTS.md".to_string(), ".goosehints".to_string()]);
589589

590590
let mut global_hints_contents = Vec::with_capacity(hints_filenames.len());
591591
let mut local_hints_contents = Vec::with_capacity(hints_filenames.len());

0 commit comments

Comments
 (0)