David's Golden Rules & Standards

These rules are pinned and must be followed in all code. Type SCAN to force AI to re-read.

1. General Coding Standards

2. Delphi / Component Standards

3. PostgreSQL Standards

SELECT …
FROM …
WHERE …
      AND …
INTO …

4. CSS/HTML Standards

5. Pas2JS / JS Rules

Wrong: TJSObject.Keys(Obj).Length
Correct:
ObjKeys := TJSArray(TJSObject.Keys(Obj));
IF ObjKeys.Length > 0 THEN …

6. Workflow Rules