From 1c8f728b25cb8a42f1d02e4d2441230132cedb6c Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 16 Aug 2026 09:00:32 -0400 Subject: [PATCH] Document full-line style for markdown docs in AGENTS.md Co-Authored-By: Claude Fable 5 --- AGENTS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/AGENTS.md b/AGENTS.md index 5713b35a..e4a0084e 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -21,6 +21,7 @@ Three documentation trees, split by genre and audience: # Style +- In markdown documents (`plans/`, `docs/`, `manual/`), write full lines — no hard wrapping at 80 columns; break only at structural boundaries like headings and list items - Two spaces for indentation, no tabs - Use bash 5 conditionals: use `[[ ]]` for string/file tests and `(( ))` for numeric tests - In `[[ ]]`, don't quote variables, but do quote string literals when comparing values (e.g., `[[ $branch == "dev" ]]`)