원클릭으로
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