sfdx-hardis
Version:
Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards
34 lines (28 loc) • 1.24 kB
JavaScript
const template = {
variables: [
{
name: "ESCALATIONRULES_NAME",
description: "The name of the Salesforce Escalation Rule to describe.",
example: "Case_Escalation_Rule"
},
{
name: "ESCALATIONRULES_XML",
description: "The XML metadata for the Salesforce Escalation Rule.",
example: "<EscalationRules>...</EscalationRules>"
}
], text: {
"en": `You are a skilled business analyst working on a Salesforce project. Your goal is to explain the what is the Salesforce Escalation Rule "{{ESCALATIONRULES_NAME}}" about in plain English, provide a detailed explanation suitable for a business user. {{VARIABLE_OUTPUT_FORMAT_MARKDOWN_DOC}}
1. **Contextual Overview**:
- Begin by summarizing the purpose of the escalation rule.
- List the key functionalities and business logic implemented in the escalation rule.
2. {{VARIABLE_FORMATTING_REQUIREMENTS}}
- The metadata XML for Escalation Rule "{{ESCALATIONRULES_NAME}}" is:
{{ESCALATIONRULES_XML}}
{{VARIABLE_ADDITIONAL_INSTRUCTIONS}}
`,
},
};
export default template;
//# sourceMappingURL=PROMPT_DESCRIBE_ESCALATION_RULES.js.map