From 17532cc1596d1028450ab7d4da1f69923587be98 Mon Sep 17 00:00:00 2001 From: "kilo-code-bot[bot]" <240665456+kilo-code-bot[bot]@users.noreply.github.com> Date: Fri, 3 Apr 2026 11:57:02 -0500 Subject: [PATCH] Add kilo.md with AI agent coding guidelines (#42939) --- kilo.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 kilo.md diff --git a/kilo.md b/kilo.md new file mode 100644 index 0000000000..d8b21f378b --- /dev/null +++ b/kilo.md @@ -0,0 +1,11 @@ +## Code style + +- Do NOT make any formatting, whitespace, or stylistic changes beyond what is strictly necessary for the task. +- Do not reformat, re-indent, or reorganize code that is not directly related to the requested change. +- Follow existing code patterns and conventions in the repository. +- If a linter or formatter is configured in the repo, do not fight it — but also do not run it on unrelated files. + +## Pull requests + +- Keep PRs focused: only include changes that are directly relevant to the task. +- Do not include drive-by cleanups, import reordering, or trailing whitespace fixes unless explicitly asked.