Install
openclaw skills install salesforce-reporting-copilotGenerate a Salesforce report blueprint from real org metadata. Use this skill when someone asks to build a report in Salesforce, understand how to query their org's data, map objects to a reporting question, or get started with SFDC CLI metadata pulls. Triggers on phrases like "build a Salesforce report", "how do I report on X in Salesforce", "pull Salesforce metadata", "what objects do I need for this report", "SFDC CLI setup", "understand my org schema", or "create a report blueprint".
openclaw skills install salesforce-reporting-copilotGenerate a Report Blueprint from real Salesforce org metadata. Given an org and a reporting question, map the right objects, fields, and relationships — then produce a blueprint you can build in Salesforce Report Builder immediately.
# Verify CLI auth
sf org list
# Pull object list
sf sobject list --target-org <alias>
# Describe a specific object (fields, relationships, picklists)
sf sobject describe --sobject <ObjectName> --target-org <alias>
# Pull report types available in the org
sf data query --query "SELECT Id, Name, BaseObject FROM ReportType LIMIT 200" --target-org <alias>
See references/cli-reference.md for full command patterns, flags, and troubleshooting.
Given the user's question (e.g. "I want to see which volunteers are missing certifications"):
See references/object-mapping.md for common Salesforce object patterns and report type selection guidance.
Output a structured blueprint:
## Report Blueprint: [Question]
**Report Type:** [Standard or custom report type name]
**Primary Object:** [e.g. Contact]
**Related Objects:** [e.g. Account (lookup), Certification__c (child)]
### Columns
| Field Label | API Name | Object | Notes |
|---|---|---|---|
| Full Name | Name | Contact | |
| Certification Status | Certification_Status__c | Certification__c | May need custom field |
### Filters
- [Field]: [Operator] [Value]
### Grouping / Summary
- Group by: [Field]
- Summary: [Count/Sum/etc.]
### Gaps / Blockers
- [Any missing fields, permissions, or relationships]
sf sobject describe before making field claims — never assume field API namessf org login web first (see references/cli-reference.md)