From bba6fab3aca4890f622d0f383f6c7c14b6e8ccaa Mon Sep 17 00:00:00 2001 From: bendtherules Date: Wed, 8 Apr 2026 16:13:18 +0530 Subject: [PATCH] docs: add file and folder naming conventions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added a new “File / Folder Naming” section to AGENTS.md detailing naming rules: folders in kebab-case and files in camelCase. --- AGENTS.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index 057cfbc..cc35ba0 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -50,6 +50,10 @@ bun run setup/buildGraph.ts # Direct graph build bun run agent.ts "Your question here" # Direct agent execution ``` +## File / Folder Naming +Name all folders in kebab-case. Ex - hello-world +Name all files in camelcase. Ex - helloWorld + ## Code Style Guidelines ### Imports & Modules