一键导入
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