From: Sasha Levin <sashal@kernel.org>
To: sashal@kernel.org
Cc: corbet@lwn.net, josh@joshtriplett.org, kees@kernel.org,
konstantin@linuxfoundation.org, linux-doc@vger.kernel.org,
linux-kernel@vger.kernel.org, rostedt@goodmis.org,
workflows@vger.kernel.org
Subject: [PATCH v2 2/2] agents: add unified agent coding assistant configuration
Date: Sat, 9 Aug 2025 19:40:08 -0400 [thread overview]
Message-ID: <20250809234008.1540324-3-sashal@kernel.org> (raw)
In-Reply-To: <20250809234008.1540324-1-sashal@kernel.org>
Create a single source of truth for agent instructions with
symlinks for all major coding agents:
- CLAUDE.md (Claude Code)
- .github/copilot-instructions.md (GitHub Copilot)
- .cursorrules (Cursor)
- .codeium/instructions.md (Codeium)
- .continue/context.md (Continue)
- .windsurfrules (Windsurf)
- GEMINI.md (Gemini)
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
.codeium/instructions.md | 1 +
.continue/context.md | 1 +
.cursorrules | 1 +
.github/copilot-instructions.md | 1 +
.gitignore | 10 ++++++++++
.windsurfrules | 1 +
CLAUDE.md | 1 +
GEMINI.md | 1 +
8 files changed, 17 insertions(+)
create mode 100644 .codeium/instructions.md
create mode 100644 .continue/context.md
create mode 100644 .cursorrules
create mode 100644 .github/copilot-instructions.md
create mode 100644 .windsurfrules
create mode 100644 CLAUDE.md
create mode 100644 GEMINI.md
diff --git a/.codeium/instructions.md b/.codeium/instructions.md
new file mode 100644
index 000000000000..8b6a7196d2b0
--- /dev/null
+++ b/.codeium/instructions.md
@@ -0,0 +1 @@
+@README
diff --git a/.continue/context.md b/.continue/context.md
new file mode 100644
index 000000000000..8b6a7196d2b0
--- /dev/null
+++ b/.continue/context.md
@@ -0,0 +1 @@
+@README
diff --git a/.cursorrules b/.cursorrules
new file mode 100644
index 000000000000..8b6a7196d2b0
--- /dev/null
+++ b/.cursorrules
@@ -0,0 +1 @@
+@README
diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md
new file mode 100644
index 000000000000..8b6a7196d2b0
--- /dev/null
+++ b/.github/copilot-instructions.md
@@ -0,0 +1 @@
+@README
diff --git a/.gitignore b/.gitignore
index bf5ee6e01cd4..f8f575ab8cf6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -182,3 +182,13 @@ sphinx_*/
# Rust analyzer configuration
/rust-project.json
+
+# Agentic coding assistant configuration
+.aider.conf.yml
+.codeium/
+.continue/
+.cursorrules
+.github/copilot-instructions.md
+.windsurfrules
+CLAUDE.md
+GEMINI.md
diff --git a/.windsurfrules b/.windsurfrules
new file mode 100644
index 000000000000..8b6a7196d2b0
--- /dev/null
+++ b/.windsurfrules
@@ -0,0 +1 @@
+@README
diff --git a/CLAUDE.md b/CLAUDE.md
new file mode 100644
index 000000000000..8b6a7196d2b0
--- /dev/null
+++ b/CLAUDE.md
@@ -0,0 +1 @@
+@README
diff --git a/GEMINI.md b/GEMINI.md
new file mode 100644
index 000000000000..8b6a7196d2b0
--- /dev/null
+++ b/GEMINI.md
@@ -0,0 +1 @@
+@README
--
2.39.5
next prev parent reply other threads:[~2025-08-09 23:40 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-09 23:40 [PATCH v2 0/2] Add unified configuration for coding agents Sasha Levin
2025-08-09 23:40 ` [PATCH v2 1/2] README: restructure with role-based documentation and guidelines Sasha Levin
2025-08-10 15:44 ` Joe Perches
2025-08-10 16:46 ` Sasha Levin
2025-08-11 0:10 ` Joe Perches
2025-08-11 0:06 ` Randy Dunlap
2025-08-11 8:22 ` Geert Uytterhoeven
2025-08-11 15:48 ` Sasha Levin
2025-08-15 6:19 ` Kees Cook
2025-08-09 23:40 ` Sasha Levin [this message]
2025-08-10 7:01 ` [PATCH v2 2/2] agents: add unified agent coding assistant configuration Greg KH
2025-08-10 14:22 ` Sasha Levin
2025-08-14 0:36 ` Steven Rostedt
2025-08-15 6:23 ` Kees Cook
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250809234008.1540324-3-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=corbet@lwn.net \
--cc=josh@joshtriplett.org \
--cc=kees@kernel.org \
--cc=konstantin@linuxfoundation.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rostedt@goodmis.org \
--cc=workflows@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.