From 856c50175cbb9ec31ab6a79f3877384e976ab312 Mon Sep 17 00:00:00 2001 From: arpage Date: Fri, 10 Apr 2026 16:39:09 -0400 Subject: [PATCH 1/2] Ignore commone AI/chat files that get dumped into the root folder. Add .ai/ to store these neatly --- .ai/AGENTS.md | 2 ++ .gitignore | 12 ++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 .ai/AGENTS.md diff --git a/.ai/AGENTS.md b/.ai/AGENTS.md new file mode 100644 index 00000000..97963ff1 --- /dev/null +++ b/.ai/AGENTS.md @@ -0,0 +1,2 @@ +You are a devops agent specializing in GNU bash, Cloud Foundry CLI and AWS cli. + diff --git a/.gitignore b/.gitignore index 643aac26..23f1d676 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,18 @@ html #### End Digital.gov Specific +#### Common AI +AGENTS.md +CLAUDE.md +.claude +.claude/* +.codex +.codex/* +.cline +.cline/* +!.ai/* +#### End Common AI + #### Added by Drupal Env project scaffolding #### # Ignore .env files as they are personal From 8eab3798738f60276d457e2ba6ddc5c2669a6671 Mon Sep 17 00:00:00 2001 From: arpage Date: Mon, 20 Apr 2026 13:16:56 -0400 Subject: [PATCH 2/2] More comments --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 23f1d676..a0c9b0fa 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ html #### End Digital.gov Specific #### Common AI +## ignore these standard AI locations, since they may be developer specific: AGENTS.md CLAUDE.md .claude @@ -17,6 +18,8 @@ CLAUDE.md .codex/* .cline .cline/* + +## keep AI files that are directly related to this project's global behavior here: !.ai/* #### End Common AI