Primeiro Commit v0.beta1
This commit is contained in:
93
tests/prompts/sales-prompts.json
Normal file
93
tests/prompts/sales-prompts.json
Normal file
@@ -0,0 +1,93 @@
|
||||
[
|
||||
{
|
||||
"id": "generic-pipeline",
|
||||
"prompt": "Me traga o pipeline de oportunidades no Knowledge One View.",
|
||||
"catalogRefs": ["SKILL.md"],
|
||||
"args": ["--intent", "opportunities-default", "--limit", "20"],
|
||||
"liveArgs": ["--intent", "opportunities-default", "--limit", "1000"],
|
||||
"liveExpect": {
|
||||
"scopeMode": "org-wide",
|
||||
"dataSource": "primaryCommercial",
|
||||
"allowFallback": false,
|
||||
"minRecords": 100,
|
||||
"minApiRows": 100
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "exact-close-date",
|
||||
"prompt": "Quais oportunidades fecham em 2026-05-02?",
|
||||
"catalogRefs": ["SKILL.md"],
|
||||
"args": ["--intent", "opportunities-close-date", "--date", "2026-05-02", "--limit", "10"],
|
||||
"liveArgs": ["--intent", "opportunities-close-date", "--date", "2026-05-02", "--limit", "1000"],
|
||||
"liveExpect": {
|
||||
"scopeMode": "org-wide",
|
||||
"dataSource": "primaryCommercial",
|
||||
"allowFallback": false,
|
||||
"minRecords": 1,
|
||||
"minApiRows": 1
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "calendar-month",
|
||||
"prompt": "Quais oportunidades fecham em abril de 2026?",
|
||||
"catalogRefs": ["SKILL.md"],
|
||||
"args": ["--intent", "opportunities-close-month", "--month", "2026-04", "--limit", "10"],
|
||||
"liveArgs": ["--intent", "opportunities-close-month", "--month", "2026-04", "--limit", "1000"],
|
||||
"liveExpect": {
|
||||
"scopeMode": "org-wide",
|
||||
"dataSource": "primaryCommercial",
|
||||
"allowFallback": false,
|
||||
"minRecords": 11,
|
||||
"minApiRows": 11
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "manager-week",
|
||||
"prompt": "Quais oportunidades do manager {{resourceManagerEmail}} fecham na week 43?",
|
||||
"catalogRefs": ["SKILL.md", "references/initial-context-catalog.md", "references/script-catalog.md#week-reference"],
|
||||
"args": ["--intent", "opportunities-by-manager-close-window", "--manager-email", "{{resourceManagerEmail}}", "--week", "w43", "--week-year", "catalog-default", "--limit", "10"]
|
||||
},
|
||||
{
|
||||
"id": "owner-workload-current",
|
||||
"prompt": "Me mostre os workloads em forecast agora do vendedor {{territoryOwnerEmail}}.",
|
||||
"catalogRefs": ["SKILL.md"],
|
||||
"args": ["--intent", "workloads-by-owner-current", "--owner-email", "{{territoryOwnerEmail}}", "--forecast-type", "Forecast", "--limit", "10"]
|
||||
},
|
||||
{
|
||||
"id": "owner-manager-workload-current",
|
||||
"prompt": "Quais workloads em forecast agora dos owners abaixo de {{territoryManagerEmail}}?",
|
||||
"catalogRefs": ["SKILL.md", "references/initial-context-catalog.md"],
|
||||
"args": ["--intent", "workloads-by-owner-manager-current", "--owner-manager-email", "{{territoryManagerEmail}}", "--forecast-type", "Forecast", "--limit", "10"]
|
||||
},
|
||||
{
|
||||
"id": "manager-resource-next-7-days",
|
||||
"prompt": "Workloads com close date nos proximos 7 dias em oportunidades com recursos abaixo de {{resourceManagerEmailA}} e {{resourceManagerEmailB}}.",
|
||||
"catalogRefs": ["SKILL.md", "references/initial-context-catalog.md"],
|
||||
"args": ["--intent", "workloads-by-manager-resource-close-window", "--manager-email-list", "{{resourceManagerEmailList}}", "--from-date", "today", "--to-date", "+7d", "--limit", "10"],
|
||||
"liveExpect": {
|
||||
"scopeMode": "org-wide",
|
||||
"dataSource": "primaryCommercial",
|
||||
"allowFallback": false,
|
||||
"noDvSeTeamQueries": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "resource-srs",
|
||||
"prompt": "Quais SRs estao com {{resourceMember}} agora?",
|
||||
"catalogRefs": ["SKILL.md"],
|
||||
"args": ["--intent", "srs-by-resource", "--resource", "{{resourceMember}}", "--limit", "10"]
|
||||
},
|
||||
{
|
||||
"id": "current-team-close-window",
|
||||
"prompt": "Quais oportunidades fecham nos proximos 4 dias e tem recursos do meu time?",
|
||||
"catalogRefs": ["SKILL.md"],
|
||||
"args": ["--intent", "opportunities-current-team-close-window", "--from-date", "today", "--to-date", "+4d", "--limit", "10"]
|
||||
},
|
||||
{
|
||||
"id": "ad-hoc-query",
|
||||
"prompt": "Quero opportunityId, cliente, close date, booking e workload das oportunidades de 2026-05-02.",
|
||||
"catalogRefs": ["SKILL.md"],
|
||||
"args": ["--query", "--select", "opportunityId,customerName,closeDate,bookingValue,workloadAmount", "--where", "closeDate = DATE '2026-05-02'", "--render-sql"],
|
||||
"live": false
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user