Files
antigravity-skills-reference/skills/telegram/assets/examples/webhook-payloads.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

160 lines
3.6 KiB
JSON

{
"description": "Example Telegram webhook payloads for testing",
"examples": {
"text_message": {
"update_id": 123456789,
"message": {
"message_id": 1,
"from": {
"id": 987654321,
"is_bot": false,
"first_name": "John",
"last_name": "Doe",
"username": "johndoe",
"language_code": "pt-br"
},
"chat": {
"id": 987654321,
"first_name": "John",
"last_name": "Doe",
"username": "johndoe",
"type": "private"
},
"date": 1709000000,
"text": "Hello bot!"
}
},
"command_message": {
"update_id": 123456790,
"message": {
"message_id": 2,
"from": {
"id": 987654321,
"is_bot": false,
"first_name": "John",
"username": "johndoe"
},
"chat": {
"id": 987654321,
"type": "private"
},
"date": 1709000001,
"text": "/start",
"entities": [
{
"offset": 0,
"length": 6,
"type": "bot_command"
}
]
}
},
"callback_query": {
"update_id": 123456791,
"callback_query": {
"id": "callback123",
"from": {
"id": 987654321,
"is_bot": false,
"first_name": "John",
"username": "johndoe"
},
"message": {
"message_id": 3,
"chat": {
"id": 987654321,
"type": "private"
},
"date": 1709000002,
"text": "Choose option:"
},
"chat_instance": "instance123",
"data": "opt_a"
}
},
"group_message": {
"update_id": 123456792,
"message": {
"message_id": 100,
"from": {
"id": 987654321,
"is_bot": false,
"first_name": "John"
},
"chat": {
"id": -1001234567890,
"title": "My Group",
"type": "supergroup"
},
"date": 1709000003,
"text": "Hello group!"
}
},
"photo_message": {
"update_id": 123456793,
"message": {
"message_id": 101,
"from": {
"id": 987654321,
"is_bot": false,
"first_name": "John"
},
"chat": {
"id": 987654321,
"type": "private"
},
"date": 1709000004,
"photo": [
{
"file_id": "AgACAgIAA..._small",
"file_unique_id": "AQADAgATq...",
"file_size": 5000,
"width": 90,
"height": 90
},
{
"file_id": "AgACAgIAA..._medium",
"file_unique_id": "AQADAgATr...",
"file_size": 25000,
"width": 320,
"height": 320
},
{
"file_id": "AgACAgIAA..._large",
"file_unique_id": "AQADAgATs...",
"file_size": 80000,
"width": 800,
"height": 800
}
],
"caption": "Check this photo!"
}
},
"new_chat_member": {
"update_id": 123456794,
"message": {
"message_id": 102,
"from": {
"id": 987654321,
"is_bot": false,
"first_name": "John"
},
"chat": {
"id": -1001234567890,
"title": "My Group",
"type": "supergroup"
},
"date": 1709000005,
"new_chat_members": [
{
"id": 111222333,
"is_bot": false,
"first_name": "New",
"last_name": "Member"
}
]
}
}
}
}