.cursor/skills/sessions/SKILL.md
Use when managing Salesforce Claude Code session history. List, load, alias, and inspect saved Apex and org development sessions stored in ~/.claude/sessions/.
npx skillsauth add jiten-singh-shahi/salesforce-claude-code sessionsInstall 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.
Manage Claude Code session history - list, load, alias, and inspect sessions stored in ~/.claude/sessions/.
/sessions [list|load|alias|info|aliases|help] [options]
/sessions help shows this usage guide.
Display all sessions with metadata, filtering, and pagination.
/sessions # List all sessions (default)
/sessions list # Same as above
/sessions list --limit 10 # Show 10 sessions
/sessions list --date 2026-03-18 # Filter by date
/sessions list --search apex # Search by session ID
Load and display a session's content (by ID or alias).
/sessions load <id|alias> # Load session
/sessions load 2026-03-18 # By date
/sessions load apex-trig # By short ID
/sessions load my-alias # By alias name
Create a memorable alias for a session.
/sessions alias <id> <name> # Create alias
/sessions alias 2026-03-18 trigger-work
Delete an existing alias.
/sessions alias --remove <name> # Remove alias
/sessions unalias <name> # Same as above
Show detailed information about a session.
/sessions info <id|alias> # Show session details
Show all session aliases.
/sessions aliases # List all aliases
list [options] - List sessions
--limit <n> - Max sessions to show (default: 50)--date <YYYY-MM-DD> - Filter by date--search <pattern> - Search in session IDload <id|alias> - Load session contentalias <id> <name> - Create alias for sessionalias --remove <name> - Remove aliasunalias <name> - Same as --removeinfo <id|alias> - Show session statisticsaliases - List all aliaseshelp - Show this help# List all sessions
/sessions list
# Create an alias for today's session
/sessions alias 2026-03-18 trigger-work
# Load session by alias
/sessions load trigger-work
# Show session info
/sessions info trigger-work
# Remove alias
/sessions alias --remove trigger-work
# List all aliases
/sessions aliases
~/.claude/sessions/development
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.
development
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.