skills/update-platform-docs/SKILL.md
Update Salesforce platform reference docs with latest release features and deprecation announcements. Use when SessionStart hook warns docs are outdated or a new Salesforce release has shipped. Do NOT use for Apex or LWC development.
npx skillsauth add jiten-singh-shahi/salesforce-claude-code update-platform-docsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Two reference files in skills/_reference/:
WebSearch for the latest Salesforce release information:
Search: "Salesforce [Season] '[Year] release notes new features developer site:developer.salesforce.com"
Search: "Salesforce [Season] '[Year] release highlights"
WebSearch for deprecation and retirement announcements:
Search: "Salesforce feature retirements [current year] site:help.salesforce.com"
Search: "Salesforce deprecated features [current year]"
skills/_reference/API_VERSIONS.mdAdded: YYYY-MM tagAdded: date is older than 24 monthsskills/_reference/DEPRECATIONS.mdAdded: YYYY-MM tagAdded: date is older than 24 months (exception: keep "Retiring Soon" entries until retirement date + 24 months)After updating, confirm changes:
# Check no v62.0 or other old version references leaked back
grep -r "old_version" skills/_reference/API_VERSIONS.md skills/_reference/DEPRECATIONS.md
# Run CI validation
node scripts/ci/validate-skills.js
Added: YYYY-MM tag for 24-month retention trackingcheck-platform-docs-age.js — SessionStart hook that triggers this skill's warning@../_reference/API_VERSIONS.md — Feature tracker@../_reference/DEPRECATIONS.md — Deprecation guarddevelopment
Use when syncing documentation after Salesforce Apex code changes. Update README, API docs, and deploy metadata references to match the current org codebase.
development
Use when managing context during long Salesforce Apex development sessions. Suggests manual compaction at logical intervals to preserve deploy and org context across phases.
tools
Visualforce development — pages, controllers, extensions, ViewState, JS Remoting, LWC migration. Use when maintaining VF pages, building PDFs, or planning VF-to-LWC migration. Do NOT use for LWC, Aura, or Flow.
development
Salesforce Apex trigger framework patterns — TriggerHandler, FFLIB Domain, TDTM, bypass and recursion control. Use when adopting or refactoring triggers.