From 2675016261f81f673d19d9fe057b6b65f41fae7b Mon Sep 17 00:00:00 2001 From: Charles Vien Date: Wed, 27 May 2026 15:33:48 -0700 Subject: [PATCH 1/3] Add config with AGENTS.md context and opt-out label --- greptile.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 greptile.json diff --git a/greptile.json b/greptile.json new file mode 100644 index 000000000..e5e23385e --- /dev/null +++ b/greptile.json @@ -0,0 +1,6 @@ +{ + "disabledLabels": ["No Greptile"], + "customContext": { + "files": ["AGENTS.md"] + } +} From ef860fe34073e5b63ea47f51007f64d245ba1548 Mon Sep 17 00:00:00 2001 From: Charles Vien Date: Wed, 27 May 2026 15:35:10 -0700 Subject: [PATCH 2/3] fix greptile.json indentation to 2 spaces --- greptile.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/greptile.json b/greptile.json index e5e23385e..e66a116e5 100644 --- a/greptile.json +++ b/greptile.json @@ -1,6 +1,6 @@ { - "disabledLabels": ["No Greptile"], - "customContext": { - "files": ["AGENTS.md"] - } + "disabledLabels": ["No Greptile"], + "customContext": { + "files": ["AGENTS.md"] + } } From 364866787a7bef8f431e473017457c288b004070 Mon Sep 17 00:00:00 2001 From: Charles Vien Date: Wed, 27 May 2026 15:50:01 -0700 Subject: [PATCH 3/3] use file object shape for greptile customContext.files --- greptile.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/greptile.json b/greptile.json index e66a116e5..9776b1caa 100644 --- a/greptile.json +++ b/greptile.json @@ -1,6 +1,6 @@ { "disabledLabels": ["No Greptile"], "customContext": { - "files": ["AGENTS.md"] + "files": [{ "path": "AGENTS.md" }] } }