From e44284fada2aab4608d20e15d3c042c15012649c Mon Sep 17 00:00:00 2001 From: Joe Chen Date: Sun, 18 Jan 2026 21:00:19 -0500 Subject: [PATCH] chore: add AGENTS.md [skip ci] --- AGENTS.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 AGENTS.md diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 000000000..d08d2332d --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,11 @@ +## Core Principles + +- When you see changes made outside your knowledge, use the current version as your new starting point. Do not blindly overwrite those changes or you suck. Even if you have to update the code, please respect the god damn pattern in the surrounding context! + +## Style and Mechanics + +This applies to all texts, including but not limited to UI, documentation, code comments. + +- Capitalization rules: Apply sentence case to complete sentences and phrases. Apply title case elsewhere. Do not capitalize conjunction words. +- Always end with a period for a full sentence. +- Do not add comments that repeat what the code is doing, always prefer more descriptive names. Do add comments for intentions that aren't obvious via reading the code alone. This rule takes precedence over matching existing patterns.