Agent instructions Code style Always use braces for control flow. Do not write single-statement if/else/for/while on one line without braces. Don't: if (elem instanceof String s) out.add(s); Do: if (elem instanceof String s) { out.add(s); }