Files
antigravity-skills-reference/skills/whatsapp-cloud-api/assets/examples/template-messages.json
ProgramadorBrasil 61ec71c5c7 feat: add 52 specialized AI agent skills (#217)
New skills covering 10 categories:

**Security & Audit**: 007 (STRIDE/PASTA/OWASP), cred-omega (secrets management)
**AI Personas**: Karpathy, Hinton, Sutskever, LeCun (4 sub-skills), Altman, Musk, Gates, Jobs, Buffett
**Multi-agent Orchestration**: agent-orchestrator, task-intelligence, multi-advisor
**Code Analysis**: matematico-tao (Terence Tao-inspired mathematical code analysis)
**Social & Messaging**: Instagram Graph API, Telegram Bot, WhatsApp Cloud API, social-orchestrator
**Image Generation**: AI Studio (Gemini), Stability AI, ComfyUI Gateway, image-studio router
**Brazilian Domain**: 6 auction specialist modules, 2 legal advisors, auctioneers data scraper
**Product & Growth**: design, invention, monetization, analytics, growth engine
**DevOps & LLM Ops**: Docker/CI-CD/AWS, RAG/embeddings/fine-tuning
**Skill Governance**: installer, sentinel auditor, context management

Each skill includes:
- Standardized YAML frontmatter (name, description, risk, source, tags, tools)
- Structured sections (Overview, When to Use, How it Works, Best Practices)
- Python scripts and reference documentation where applicable
- Cross-platform compatibility (Claude Code, Antigravity, Cursor, Gemini CLI, Codex CLI)

Co-authored-by: ProgramadorBrasil <214873561+ProgramadorBrasil@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-07 10:04:07 +01:00

174 lines
4.8 KiB
JSON

{
"description": "Exemplos de templates prontos para submissao ao WhatsApp para aprovacao.",
"templates": [
{
"name": "welcome_customer_v1",
"category": "MARKETING",
"language": "pt_BR",
"description": "Mensagem de boas-vindas para novos clientes",
"components": [
{
"type": "HEADER",
"format": "TEXT",
"text": "Bem-vindo(a)!"
},
{
"type": "BODY",
"text": "Olá {{1}}, seja bem-vindo(a) à {{2}}! 🎉\n\nEstamos felizes em ter você conosco. Confira nossas ofertas especiais para novos clientes.",
"example": {
"body_text": [["Maria", "Loja Example"]]
}
},
{
"type": "FOOTER",
"text": "Responda SAIR para cancelar"
},
{
"type": "BUTTONS",
"buttons": [
{
"type": "URL",
"text": "Ver Ofertas",
"url": "https://example.com/ofertas"
},
{
"type": "QUICK_REPLY",
"text": "Falar com Atendente"
}
]
}
]
},
{
"name": "order_confirmation_v1",
"category": "UTILITY",
"language": "pt_BR",
"description": "Confirmacao de pedido com detalhes",
"components": [
{
"type": "HEADER",
"format": "TEXT",
"text": "Pedido Confirmado ✅"
},
{
"type": "BODY",
"text": "Olá {{1}}, seu pedido #{{2}} foi confirmado!\n\nValor total: R$ {{3}}\nForma de pagamento: {{4}}\nPrevisão de entrega: {{5}}",
"example": {
"body_text": [["João", "12345", "199,90", "Cartão de crédito", "3 dias úteis"]]
}
},
{
"type": "FOOTER",
"text": "Obrigado pela sua compra!"
},
{
"type": "BUTTONS",
"buttons": [
{
"type": "URL",
"text": "Rastrear Pedido",
"url": "https://example.com/tracking/{{1}}",
"example": ["12345"]
}
]
}
]
},
{
"name": "shipping_notification_v1",
"category": "UTILITY",
"language": "pt_BR",
"description": "Notificacao de envio com rastreamento",
"components": [
{
"type": "HEADER",
"format": "TEXT",
"text": "Pedido Enviado 📦"
},
{
"type": "BODY",
"text": "Olá {{1}}, seu pedido #{{2}} foi enviado!\n\nTransportadora: {{3}}\nCódigo de rastreio: {{4}}\nPrevisão de entrega: {{5}}",
"example": {
"body_text": [["Maria", "67890", "Correios", "BR123456789BR", "5 dias úteis"]]
}
},
{
"type": "BUTTONS",
"buttons": [
{
"type": "URL",
"text": "Rastrear Envio",
"url": "https://example.com/track/{{1}}",
"example": ["BR123456789BR"]
}
]
}
]
},
{
"name": "appointment_reminder_v1",
"category": "UTILITY",
"language": "pt_BR",
"description": "Lembrete de agendamento",
"components": [
{
"type": "BODY",
"text": "Olá {{1}}, lembrando que você tem um agendamento:\n\n📅 Data: {{2}}\n⏰ Horário: {{3}}\n📍 Local: {{4}}\n\nPrecisa reagendar?",
"example": {
"body_text": [["Carlos", "15/03/2026", "14:00", "Av. Paulista, 1000 - São Paulo"]]
}
},
{
"type": "BUTTONS",
"buttons": [
{
"type": "QUICK_REPLY",
"text": "Confirmar"
},
{
"type": "QUICK_REPLY",
"text": "Reagendar"
},
{
"type": "QUICK_REPLY",
"text": "Cancelar"
}
]
}
]
},
{
"name": "nps_survey_v1",
"category": "MARKETING",
"language": "pt_BR",
"description": "Pesquisa de satisfacao NPS",
"components": [
{
"type": "BODY",
"text": "Olá {{1}}! Gostaríamos de saber sua opinião sobre o atendimento recente.\n\nDe 1 a 5, qual sua nota para nosso atendimento?\n\n⭐ 1-2: Precisa melhorar\n⭐ 3: Regular\n⭐ 4-5: Muito bom",
"example": {
"body_text": [["Ana"]]
}
},
{
"type": "BUTTONS",
"buttons": [
{
"type": "QUICK_REPLY",
"text": "1-2 ⭐"
},
{
"type": "QUICK_REPLY",
"text": "3 ⭐⭐⭐"
},
{
"type": "QUICK_REPLY",
"text": "4-5 ⭐⭐⭐⭐⭐"
}
]
}
]
}
]
}