From 1050c8429d9726e29260636a3386d16e6380a57c Mon Sep 17 00:00:00 2001 From: Polina Cherkasova Date: Tue, 1 Sep 2026 13:23:06 -0700 Subject: [PATCH] Update SKILL.md --- .agent/skills/genui-helper/SKILL.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.agent/skills/genui-helper/SKILL.md b/.agent/skills/genui-helper/SKILL.md index 45d128140..56e436a51 100644 --- a/.agent/skills/genui-helper/SKILL.md +++ b/.agent/skills/genui-helper/SKILL.md @@ -65,7 +65,6 @@ When creating a new UI component in `genui`: ## Code visibility Make every code element as private as it can be. If tests need access, use the -language's test-visibility mechanism instead of making it public. -For example, in Dart, keep -the `_` prefix and annotate with `@visibleForTesting`. +language's test-visibility mechanism instead of making the element public. +For example, in Dart, annotate the element with `@visibleForTesting`.