We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffecf13 commit 69ce34aCopy full SHA for 69ce34a
crates/goose-mcp/src/developer/mod.rs
@@ -585,7 +585,7 @@ impl DeveloperRouter {
585
let hints_filenames: Vec<String> = std::env::var("CONTEXT_FILE_NAMES")
586
.ok()
587
.and_then(|s| serde_json::from_str(&s).ok())
588
- .unwrap_or_else(|| vec![".goosehints".to_string()]);
+ .unwrap_or_else(|| vec!["AGENTS.md".to_string(), ".goosehints".to_string()]);
589
590
let mut global_hints_contents = Vec::with_capacity(hints_filenames.len());
591
let mut local_hints_contents = Vec::with_capacity(hints_filenames.len());
0 commit comments