From d701680d450441b692984546888162e5c3508ddc Mon Sep 17 00:00:00 2001 From: Daniel Ballinger Date: Tue, 31 Mar 2026 11:17:54 +1300 Subject: [PATCH] The @author Apex Doc tag is officially supported, but is generally unnecessary in the presence of source drive development. Instead make the comment focused on what the class is doing. --- skills/generating-apex/SKILL.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/skills/generating-apex/SKILL.md b/skills/generating-apex/SKILL.md index 18da4f8..8ca22b8 100644 --- a/skills/generating-apex/SKILL.md +++ b/skills/generating-apex/SKILL.md @@ -196,8 +196,9 @@ Class-level format: ```apex /** - * @author Generated by Apex Skill + * Provides services for geolocation and address conversion. */ +public with sharing class GeolocationService { } ``` Method-level format: @@ -396,4 +397,4 @@ Deploy: ## Troubleshooting Boundary -This skill handles production `.cls`/`.trigger` issues only: compile/parse failures, deployment dependency errors, runtime governor-limit failures. For test execution, assertions, coverage, or `sf apex run test` failures, delegate to `generating-apex-test`. +This skill handles production `.cls`/`.trigger`/`.apex` issues only: compile/parse failures, deployment dependency errors, runtime governor-limit failures. For test execution, assertions, coverage, or `sf apex run test` failures, delegate to `generating-apex-test`. \ No newline at end of file