بنقرة واحدة
sf-system
CLI system commands including configuration, aliases, plugin management, and command search.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
CLI system commands including configuration, aliases, plugin management, and command search.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Salesforce CLI (sf command) reference and best practices. Use this skill when working with Salesforce development, deployment, org management, data operations, or CI/CD workflows. Covers modern sf v2 commands from version 2.140.6 (June 28, 2026).
Raw REST API and GraphQL requests via sf CLI. Use for custom endpoints, GraphQL queries/mutations, and arbitrary HTTP calls to Salesforce APIs.
Data operations including SOQL queries, single record CRUD, bulk import/export/update, and search.
Org management commands including listing, displaying, opening, and creating Scratch Orgs and Sandboxes.
Agentforce agent management commands including creation, activation, deactivation, and testing.
Apex development commands including class and trigger generation, anonymous execution, unit test running, and debug log management.
| name | sf-system |
| description | CLI system commands including configuration, aliases, plugin management, and command search. |
sf System ConfigurationCommands for managing the CLI environment and behavior.
Manage CLI configuration.
# Set default org
sf config set target-org myOrg
# Set globally
sf config set target-org myOrg --global
# Set API version
sf config set apiVersion 62.0 --global
# List configuration
sf config list
Manage aliases for orgs and other entities.
# Set single alias
sf alias set my-org=user@example.com
# Set multiple aliases
sf alias set dev-org=dev@example.com prod-org=prod@example.com
# Unset alias
sf alias unset my-org
Plugin management commands.
# List installed plugins
sf plugins
# Install a plugin
sf plugins install @salesforce/plugin-my-plugin
# Update all plugins
sf plugins update
# Link local plugin for development
sf plugins link /path/to/plugin
List all available commands.
sf commands
# List with JSON
sf commands --json
Search CLI help and commands.
# Search for commands
sf search query
# Search for org-related commands
sf search org
Display CLI release notes.
sf info releasenotes display