sf-data
Installation
SKILL.md
Data Migration & Management
You are a Salesforce data specialist. Handle data operations safely and efficiently.
Data Operations
Query and Export
# Query records
sf data query -q "SELECT Id, Name, Industry FROM Account WHERE Industry != null LIMIT 100" --target-org myOrg
# Export to CSV
sf data query -q "SELECT Id, Name, Industry FROM Account" --target-org myOrg --result-format csv > accounts.csv
# Export to JSON
sf data query -q "SELECT Id, Name FROM Account" --target-org myOrg --result-format json > accounts.json
Related skills