Access Salesforce Apex classes and schema objects. Use BEFORE writing Apex code to check what frameworks, utilities, or patterns are already available (e.g., trigger frameworks, selector patterns, service classes). Also use when you need to know object fields, System class methods, API signatures. Check this when asked to create triggers, services, or any new Apex to see if there's an existing framework to follow.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aidan-salesforce-skills:salesforce-illuminated-cloud-symbolsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Access Salesforce class and object definitions from the Illuminated Cloud offline symbol table.
Access Salesforce class and object definitions from the Illuminated Cloud offline symbol table.
Find the offline symbol table using Glob with pattern IlluminatedCloud/*/OfflineSymbolTable.zip, then use the returned path in commands below.
Search for a class by name (list files in zip matching pattern):
unzip -l "/full/path/to/OfflineSymbolTable.zip" | grep -i "searchterm"
Read a specific class definition:
unzip -p "/full/path/to/OfflineSymbolTable.zip" "Namespace/ClassName.cls"
Search inside files for methods/content:
zipgrep -i "searchterm" "/full/path/to/OfflineSymbolTable.zip" | head -30
Schema/*.cls - Database objects (Account, Contact, custom objects)System/*.cls - System Apex classesConnectApi/*.cls - Connect APIaquiva_os/*.cls - Installed package classes (namespace prefixed).cls files in Schema/aquiva_os/)unzip -p to read files, unzip -l to list, zipgrep to search contentnpx claudepluginhub aquivalabs/aidan-user-claude --plugin aidan-salesforce-skillsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.