| name | salesforce-illuminated-cloud-symbols |
| description | 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. |
| allowed-tools | Read, Grep, Glob, Bash(unzip:*), Bash(zipgrep:*) |
Salesforce Illuminated Cloud Symbol Table
Access Salesforce class and object definitions from the Illuminated Cloud offline symbol table.
Quick Start
Find the offline symbol table using Glob with pattern IlluminatedCloud/*/OfflineSymbolTable.zip, then use the returned path in commands below.
Commands
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
Zip Structure
Schema/*.cls - Database objects (Account, Contact, custom objects)
System/*.cls - System Apex classes
ConnectApi/*.cls - Connect API
aquiva_os/*.cls - Installed package classes (namespace prefixed)
Important
- Database objects like Account are modeled as
.cls files in Schema/
- Installed packages have their own namespace folders (e.g.,
aquiva_os/)
- Always use the full literal path, never shell variables
- Use
unzip -p to read files, unzip -l to list, zipgrep to search content