salesforce-query

Constructs and executes SOQL queries against Salesforce Manufacturing Cloud orgs.

Updated Aug 6, 2026
One-click install
npx skills add https://github.com/salesforce-misc/ManuAssist --skill salesforce-query-salesforce-misc
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: salesforce-query
Source: https://github.com/salesforce-misc/ManuAssist/tree/main/skills/salesforce-query
Command: npx skills add https://github.com/salesforce-misc/ManuAssist --skill salesforce-query-salesforce-misc

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Querying a Manufacturing Cloud org requires knowing exact object and field API names, and guessing wrong produces failed SOQL queries. This Skill guides discovery of the correct Manufacturing Cloud objects and fields before building and running queries against your org. ## Core Features & Use Cases - Object Discovery: Uses describe_sobject to verify object and field names before writing any query, avoiding invalid API name errors. - Guided Query Workflow: Walks through setup checks (SF CLI, authentication, target org), query construction, execution via run_soql, and iteration. - Manufacturing Cloud Coverage: Documents key objects such as SalesAgreement, SalesAgreementProductSchedule, AccountForecast, WarrantyTerm, Visit, and RebateProgram. - Use Case: A consultant asks "show me active Sales Agreements" and the Skill describes the SalesAgreement object, builds the SOQL with real field names, and executes it against the authenticated org. ## Quick Start Ask the assistant to show you active Sales Agreements from your Manufacturing Cloud org and it will describe the object, build the SOQL query, and run it.

Frequently Asked Questions about salesforce-query

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I query Sales Agreements in Salesforce Manufacturing Cloud?

Query the SalesAgreement standard object using SOQL after running describe_sobject to confirm field names. Related data lives in SalesAgreementProduct and SalesAgreementProductSchedule for product and schedule details.

How to run SOQL queries against a Manufacturing Cloud org?

First verify the Salesforce CLI is installed, authenticate with sf org login web, and set a target org. Then use describe_sobject to discover fields and run_soql to execute the query, starting with small LIMIT values.

Does Manufacturing Cloud use custom objects with __c suffixes?

No, Manufacturing Cloud core functionality uses standard platform objects without managed package namespaces. The correct name is SalesAgreement, never SalesAgreement__c, so always verify names with describe_sobject.

Why does my SOQL query fail with invalid field errors?

SOQL fails when field or object names are assumed rather than verified against the org schema. Run describe_sobject on the target object first to get the exact API names, then build the query from those results.

What objects are available in Salesforce Manufacturing Cloud?

Key objects include SalesAgreement, SalesAgreementProduct, SalesAgreementProductSchedule, AccountForecast, AcctMgrTarget, WarrantyTerm, Visit, ActionPlan, ManufacturingProgram, RebateProgram, and Supplier.