Apex(Salesforceのプログラミング言語)コード作成・改善・確認の主要スキルです。ユーザーが Apex、.cls、トリガー(データベースの自動処理)、またはクラス(サービス、セレクター、ドメイン、バッチ処理、キュー、スケジュール、呼び出し可能、DTO、ユーティリティ、インターフェース、抽象、例外、REST リソース)の作成・改善を提示したときは、必ず起動してください。 このスキルは以下のような場合に使用します: - SObject(Salesforceのデータオブジェクト)のデータ操作(作成・読取・更新・削除) - コレクション(データの集まり)の操作・変換 - 関連レコード(紐づいたデータ)の取得 - スケジュール設定済みジョブ・バッチ処理(大量データの一括処理) - トリガー設計 - @AuraEnabled コントローラー(ユーザー画面との連携) - @RestResource エンドポイント(外部システムとの通信の出入口) - カスタム REST API(外部システム向けのデータ通信規格) - 既存 Apex コードのレビュー・確認
Primary Apex authoring skill for class generation, refactoring, and review. ALWAYS ACTIVATE when the user mentions Apex, .cls, triggers, or asks to create/refactor a class (service, selector, domain, batch, queueable, schedulable, invocable, DTO, utility, interface, abstract, exception, REST resource). Use this skill for requests involving SObject CRUD, mapping collections, fetching related records, scheduled jobs, batch jobs, trigger design, @AuraEnabled controllers, @RestResource endpoints, custom REST APIs, or code review of existing Apex.
Use this skill for production-grade Apex: new classes, selectors, services, async jobs,
invocable methods, and triggers; and for evidence-based review of existing .cls OR .trigger.
Gather or infer before authoring:
Defaults unless specified:
with sharing (see sharing rules per type below)public (use global only when required by managed packages or @RestResource)66.0 (minimum version)If the user provides a clear, complete request, generate immediately without unnecessary back-and-forth.
All steps are sequential. Do not skip, merge, or reorder. If blocked, stop and ask for missing context. If not applicable, mark N/A with a one-line justification in the report.
Discover project conventions
.cls, call mcp__plugin_salesforce-development_salesforce-lsp__apex_documentSymbol with {filePath: "<absolute-path>"} to map the class's methods, properties, and inner types before editing, and call mcp__plugin_salesforce-development_salesforce-lsp__apex_hover with {filePath, line, character} (one-based line/character) to resolve the type or signature of a symbol you are unsure about. On error envelope or unavailable ({error: <code>} / tool not registered), fall back to reading the source directly.Choose the smallest correct pattern (see Type-Specific Guidance below)
Review templates and assets
assets/ before authoring (see Type-Specific Guidance for the file mapping)references/ example exists for the type, read it as a concrete style guideplatform-apex-test-generate skillAuthor with guardrails -- apply every rule in the Rules section below
{ClassName}.cls with ApexDoc{ClassName}.cls-meta.xmlGenerate test classes -- Load the skill platform-apex-test-generate to create {ClassName}Test.cls and {ClassName}Test.cls-meta.xml. Apex tests are always required to be generated to deploy. No test file creation or edits can occur without loading the platform-apex-test-generate skill to generate tests.
Writing files is the midpoint, not the finish line. Steps 6, 7, and 8 each require a tool invocation and produce output that must appear in the Step 9 report. Do not summarize or present the report until all three steps have run and their output is captured.
Compile-check every file (REQUIRED) — via the diagnostics tool when available, otherwise via the fallback. Running one of these is mandatory; which one depends on what your environment exposes.
mcp__plugin_salesforce-development_salesforce-lsp__apex_diagnostics with {filePath: "<absolute-path>"} on every generated/updated .cls and .trigger file to compile-check and surface errors/warnings before deploy.
{ok: true}, non-empty list), remediate all diagnostics with severity error or warning; re-run until clean.{ok: true, diagnostics: []} for BOTH a genuinely clean compile AND a swallowed timeout/internal error, so an empty list is not by itself proof the code compiled. Whenever diagnostics come back empty, you MUST corroborate with the Fallback (sf project deploy start --dry-run) before reporting the file as clean or deploy-ready. Do not treat any empty apex_diagnostics response as a passing compile on its own.{error: <code>}), record apex_diagnostics=unavailable: <code> and use the Fallback.apex_diagnostics=unavailable: lsp_not_present and use the Fallback.ToolSearch for it returns no match, or the call otherwise cannot be made — do NOT stall or retry discovery. Record apex_diagnostics=unavailable: lsp_not_present and use the Fallback immediately.mcp__plugin_salesforce-development_salesforce-lsp__refresh_org_schema to invalidate the cached org describe, then re-run apex_diagnostics before treating it as a real code error.sf project deploy start --dry-run and read CLI errors. Remediate any errors and re-run until clean. A clean fallback result is a valid, complete outcome for this step — the diagnostics MCP tool is preferred, not required, when it is not available.apex_diagnostics=unavailable: <reason> is only acceptable alongside a completed fallback.Run static analysis (REQUIRED) — compilation does not check PMD, CRUD/FLS, complexity, and related rules; this step does.
sf code-analyzer run --target <target> on all generated/updated .cls and .trigger files. Remediate all sev0, sev1, and sev2 violations; re-run until clean.run_code_analyzer=unavailable: <reason> in the report. That explicit outcome is the only acceptable way to skip it.Execute Apex tests
{ClassName}Test via sf apex run test or MCP.platform-apex-test-generate; iterate until the tests pass.test_execution=unavailable: <error> in the report.Compile line must contain the actual Step 6 output — either the diagnostics tool result, or the fallback (sf project deploy start --dry-run) result prefixed with apex_diagnostics=unavailable: <reason>. Code Analyzer does NOT belong on this line — it cannot establish that Apex compiles.Analyzer line must contain the actual Step 7 sf code-analyzer run output (or run_code_analyzer=unavailable: <reason> after attempting invocation).Testing line must contain the actual Step 8 results (or test_execution=unavailable: <reason> after attempting invocation).If any constraint would be violated in generated code, stop and explain the problem before proceeding:
| Constraint | Rationale |
|---|---|
| Place all SOQL outside loops | Avoid query governor limits (100 queries) |
| Place all DML outside loops | Avoid DML governor limits (150 statements) |
| Declare a sharing keyword on every class | Prevent unintended without sharing defaults and data exposure |
| Use Custom Metadata/Labels/describe calls instead of hardcoded IDs | Ensure portability across orgs |
| Always handle exceptions (log, rethrow, or recover) | Prevent silent failures |
| Use bind variables for all dynamic SOQL with user input | Prevent SOQL injection |
Use Apex-native collections (List, Map, Set) rather than Java types |
Prevent compile errors |
| Verify methods exist in Apex before use | Prevent reliance on non-existent APIs |
Avoid System.debug() in main code paths |
Debug statements evaluate even when loggign is not active and consume CPU. Use a logging framework if required on main code paths |
Never use @future methods |
Use Queueable with System.Finalizer; @future cannot chain, cannot be called from Batch, and cannot accept non-primitive types |
Database.update(records, false)) and process SaveResult for errorsMap<Id, SObject> constructor for efficient ID-based lookups from query resultsMap<Id, List<SObject>> to group child records by parent; build the map in a single loop before processingSet<Id> for deduplication and membership checks; prefer Set.contains() over List.contains()AggregateResult with GROUP BY for rollup calculations instead of querying and counting in ApexTrigger.oldMap or prior state before adding to the update listLimits.getQueries(), Limits.getDmlStatements(), Limits.getCpuTime() to monitor consumption in complex transactionsWHERE clauses; use indexed fields (Id, Name, OwnerId, lookup/master-detail fields, ExternalId fields, custom indexes) in filters when possibleSELECT * does not exist in SOQL -- always specify the exact fields neededLIMIT clauses to bound result sets; use ORDER BY for deterministic results__mdt), do NOT use SOQL — use the built-in methods ({CustomMdt__mdt}.getAll().values(), getInstance(), etc.)without sharing keyword classes with API versions 67.0 and up will throw when the running user does not have the proper field or object-level security. If API versions are being updated, ensure queries are safeguarded properly, and that tests are updated accordingly. Only explicitly justified usages of SYSTEM_MODE variants within queries should be allowed by default.Cache.Org / Cache.Session) for frequently accessed, rarely changed data; set a TTL and always handle cache misses — cache can be evicted at any timeprivate static Map fields as transaction-scoped caches to prevent duplicate queries within the same execution context; lazy-initialize on first accesswith sharing; document justification for without sharing or inherited sharingWITH USER_MODE in SOQL and AccessLevel.USER_MODE for Database DML for CRUD/FLS enforcement — these are the defaults for all Apex classes with API versions of 67.0 or higherSchema.describeAuraHandledException for @AuraEnabled user-facing errors (no internal details)without sharing requires a Custom Permission checkwithout sharing logic in dedicated helper classes; call from with sharing entry points to limit elevated-access scopeBefore finalizing, verify: CRUD/FLS enforced (SOQL + DML) · explicit sharing keyword on every class · no hardcoded secrets or Record IDs · PII excluded from logs and error messages · error messages sanitized for end users.
Exception; include context in messagestry/catch only around code that can throw (DML, callouts, JSON parsing, casts); avoid defensive wrapping of simple assignments/collection ops/arithmeticnew CustomException('message', cause) (do not replace stack trace with concatenated messages)@AuraEnabled methods, catch exceptions and rethrow as AuraHandledExceptionException and either rethrow it or wrap it in a minimal custom exception that preserves the original cause.return early in private/trigger-handler methods, throw exceptions in public APIs, record.addError() in validation servicesnull?.) for chained property accessmap.get(key) inline unless presence is guaranteed; use containsKey, assignment + null check, or safe navigation first??) for default valuesString.isBlank(value) over manual checks like value == null || value.trim().isEmpty()UPPER_SNAKE_CASEprivate static final constants or a constants classLabel. custom labels for user-facing strings'); use literal single quotes ' in Apex string literals| Type | Pattern | Example |
|---|---|---|
| Service | {SObject}Service |
AccountService |
| Selector | {SObject}Selector |
AccountSelector |
| Domain | {SObject}Domain |
OpportunityDomain |
| Batch | {Descriptive}Batch |
AccountDeduplicationBatch |
| Queueable | {Descriptive}Queueable |
ExternalSyncQueueable |
| Schedulable | {Descriptive}Schedulable |
DailyCleanupSchedulable |
| DTO | {Descriptive}DTO |
AccountMergeRequestDTO |
| Wrapper | {Descriptive}Wrapper |
OpportunityLineWrapper |
| Utility | {Descriptive}Util |
StringUtil |
| Interface | I{Descriptive} |
INotificationService |
| Abstract | Abstract{Descriptive} |
AbstractIntegrationService |
| Exception | {Descriptive}Exception |
AccountServiceException |
| REST Resource | {SObject}RestResource |
AccountRestResource |
| Trigger | {SObject}Trigger |
AccountTrigger |
| Trigger Action | TA_{SObject}_{Action} |
TA_Account_SetDefaults |
Additional naming rules:
PascalCasecamelCase, start with a verb (get, create, process, validate, is, has, can)camelCase, descriptive nouns; Lists as plural nouns (e.g., accounts, relatedContacts); Maps as {value}By{key} (e.g., accountsById); Sets as {noun}IdsUPPER_SNAKE_CASEacc, tks, rec)public/global method@param, @return, @throws, @example where helpfulClass-level format:
/**
* Provides services for geolocation and address conversion.
*/
public with sharing class GeolocationService { }
Method-level format:
/**
* @param paramName Description of the parameter
* @return Description of the return value
* @example
* List<Account> results = AccountService.deduplicateAccounts(accountIds);
*/
| Layer | Owns | Must NOT contain |
|---|---|---|
| Trigger | Event routing only | Business logic, orchestration |
| Handler/Service | Flow control, coordination | Inline SOQL/DML/HTTP/parsing |
| Domain | Business rules, validation | Queries, callouts, persistence details |
| Data/Integration | SOQL, DML, HTTP | Business decisions |
| Scenario | Default | Key Traits |
|---|---|---|
| Standard async work | Queueable | Job ID, chaining, non-primitive types, configurable delay (up to 10 min via AsyncOptions), dedup signatures |
| Very large datasets | Batch Apex | Chunked processing, max 5 concurrent; use QueryLocator for large scopes |
| Modern batch alternative | CursorStep (Database.Cursor) |
2000-record chunks, higher throughput, no 5-job limit |
| Recurring schedule | Scheduled Flow (preferred) or Schedulable | Schedulable has 100-job limit; use only when chaining to Batch or needing complex Apex logic |
| Post-job cleanup | Finalizer (System.Finalizer) |
Runs regardless of Queueable success/failure |
| Long-running callouts | Continuation | Up to 3 per transaction, 3 parallel |
| Delays > 10 minutes | System.scheduleBatch() |
Schedule a Batch job at a specific future time |
| Legacy fire-and-forget | @future |
Do not use in new code — see Hard-Stop Constraints; replace with Queueable + Finalizer |
assets/service.cls · Reference: references/AccountService.clswith sharing; stateless — no public fields or mutable instance state; keep public APIs focused and static where reasonableAccountServiceException)assets/selector.cls · Reference: references/AccountSelector.clsinherited sharing; one per SObject or query domainList<SObject> or Map<Id, SObject>; use a shared base field list constant (no inline duplication)WITH USER_MODEassets/domain.clswith sharing; encapsulate field defaults, derivations, and validationsassets/batch.cls · Reference: references/AccountDeduplicationBatch.clswith sharing; implement Database.Batchable<SObject> (add Database.Stateful when tracking across chunks)start() = query definition; execute() = business logic; finish() = logging/notificationQueryLocator for large datasets; handle partial failures via Database.SaveResultassets/queueable.clswith sharing; implement Queueable and optionally Database.AllowsCallouts when HTTP callouts are neededFinalizer for recovery/cleanupAsyncOptions for configurable delay (up to 10 min) and dedup signaturesassets/schedulable.clswith sharing; execute() delegates to Queueable or BatchscheduleDaily() helperassets/dto.clsComparable when ordering matters@JsonAccess on private/protected inner DTOs that are serialized/deserializedassets/utility.clspublic static; private constructorassets/interface.clsassets/abstract.clswith sharing; offer default behavior via virtual methodsprotected virtual or protected abstractassets/exception.clsException with descriptive names(), ('msg'), (cause), ('msg', cause)assets/trigger.clsnew MetadataTriggerHandler().run();TriggerAction.{Context}Trigger_Action__mdt (actions are inactive without registration)TA_{SObject}_{ActionName}; prefer field-value comparison over static booleans for recursion@InvocableMethod)assets/invocable.clswith sharing; inner Request/Response with @InvocableVariablepublic static; non-static or single-object signatures will not compileList<Request>, return List<Response>; bulkify (SOQL/DML outside loops)label (required — Flow Builder display name), description, category (groups actions in Builder), callout=true (required when method makes HTTP callouts)@InvocableVariable parameters: label (required), description, required=true/false@InvocableVariable supports: primitives, Id, SObject, List<T> only (no Map/Set/Blob); use List<Id> or List<SObject> fields for Flow collection I/OisSuccess, errorMessage, and errorType (e.getTypeName()) in Response@RestResource)assets/rest-resource.clsglobal with sharing; both class and methods must be global@RestResource(urlMapping='/{resource}/v1/*')200/201/400/404/422/500); never default all errors to 500Pattern.matches('[a-zA-Z0-9]{15,18}', value)); bind all user input in SOQLLIMIT/ORDER BY in queries; implement pagination (pageSize/offset)ApiResponse wrapper (success, message, data/records); inner request/response DTOs@AuraEnabled Controllerwith sharing; use WITH USER_MODE in all SOQL@AuraEnabled(cacheable=true) only for read-only queries; leave cacheable unset for DML operationsAuraHandledException with user-friendly messagesDeliverables per class:
{ClassName}.cls{ClassName}.cls-meta.xml (default API version 66.0 or higher unless specified){ClassName}Test.cls (generated via platform-apex-test-generate skill){ClassName}Test.cls-meta.xml (generated via platform-apex-test-generate skill)Deliverables per trigger:
{TriggerName}.trigger{TriggerName}.trigger-meta.xml (default API version 66.0 or higher unless specified)Meta XML template:
<?xml version="1.0" encoding="UTF-8"?>
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>{API_VERSION}</apiVersion>
<status>Active</status>
</ApexClass>
Report in this order:
Apex work: <summary>
Files: <paths>
Design: <pattern / framework choices>
Workflow: all steps completed (1-9); any N/A justified
Risks: <security, bulkification, async, dependency notes>
Compile: <REQUIRED -- paste actual apex_diagnostics output, or the "sf project deploy start --dry-run" fallback result prefixed with "apex_diagnostics=unavailable: <reason>">
Analyzer: <REQUIRED -- paste actual "sf code-analyzer run" output or state "run_code_analyzer=unavailable: <reason>">
Testing: <REQUIRED -- paste actual test execution results (pass/fail, coverage) or state "test_execution=unavailable: <reason>">
Deploy: <dry-run or next step>
| Need | Delegate to |
|---|---|
| Apex tests / fix failures | platform-apex-test-generate skill |
| Describe objects/fields | metadata skill (if available) |
| Deploy to org | deploy skill (if available) |
| Flow calling Apex | Flow skill (if available) |
| LWC calling Apex | LWC skill (if available) |
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 platform-apex-test-generate.
原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。