| name | instagram |
| description | Integracao completa com Instagram via Graph API. Publicacao, analytics, comentarios, DMs, hashtags, agendamento, templates e gestao de contas Business/Creator. |
| category | Business & Marketing |
| source | antigravity |
| tags | ["python","api","claude","ai","template","image","rag","cro","marketing"] |
| url | https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/instagram |
Skill: Instagram Integration
Overview
Integracao completa com Instagram via Graph API. Publicacao, analytics, comentarios, DMs, hashtags, agendamento, templates e gestao de contas Business/Creator.
When to Use This Skill
- When the user mentions "instagram" or related topics
- When the user mentions "ig" or related topics
- When the user mentions "post instagram" or related topics
- When the user mentions "publicar instagram" or related topics
- When the user mentions "reels instagram" or related topics
- When the user mentions "stories instagram" or related topics
Do Not Use This Skill When
- The task is unrelated to instagram
- A simpler, more specific tool can handle the request
- The user needs general-purpose assistance without domain expertise
How It Works
Controle completo da conta Instagram via Graph API. Publicação, comunidade, analytics,
DMs, hashtags, templates e dashboard â tudo gerido com governança (rate limits, audit log,
confirmaçÔes antes de açÔes pĂșblicas).
Resumo RĂĄpido
| Ărea | Scripts | O que faz |
|---|
| Setup | account_setup.py, auth.py | Configurar conta, OAuth, token |
| Publicação | publish.py, schedule.py | Publicar foto/vĂdeo/reel/story/carrossel, agendar |
| Comunidade | comments.py, messages.py | Comentårios, DMs, mençÔes |
| Analytics | insights.py, analyze.py | Métricas, melhores horårios, top posts |
| Hashtags | hashtags.py | Pesquisa e tracking |
| InteligĂȘncia | templates.py, analyze.py | Templates de conteĂșdo, tendĂȘncias |
| Infra | export.py, serve_api.py, run_all.py | Exportar, dashboard, sync |
| Leitura | profile.py, media.py | Perfil, listar mĂdia |
Localização
C:\Users\renat\skills\instagram\
âââ SKILL.md
âââ scripts/
â âââ requirements.txt
â â # ââ CORE ââ
â âââ config.py # Paths, constantes, specs de mĂdia
â âââ db.py # SQLite: accounts, posts, comments, insights
â âââ auth.py # OAuth 2.0, token storage/refresh
â âââ api_client.py # Instagram Graph API wrapper + retry
â âââ governance.py # Rate limits, audit log, confirmaçÔes
â â # ââ FEATURES ââ
â âââ account_setup.py # Detecção conta, migração, verificação
â âââ publish.py # Publicar + upload local via Imgur
â âââ schedule.py # Orquestrador: approved â published
â âââ comments.py # Ler/responder/deletar comentĂĄrios
â âââ messages.py # DMs (enviar/receber/listar)
â âââ insights.py # Fetch + store mĂ©tricas
â âââ hashtags.py # Pesquisa + tracking
â âââ profile.py # Ver/atualizar perfil
â âââ media.py # Listar mĂdia, detalhes
â â # ââ INTELIGĂNCIA ââ
â âââ templates.py # Templates de caption/hashtags
â âââ analyze.py # Melhores horĂĄrios, top posts
â â # ââ INFRA ââ
â âââ export.py # Exportar JSON/CSV/JSONL
â âââ serve_api.py # FastAPI + dashboard
â âââ run_all.py # Sync completo
âââ references/
â âââ graph_api.md # Endpoints e parĂąmetros
â âââ permissions.md # Scopes OAuth por feature
â âââ rate_limits.md # Limites 2025
â âââ account_types.md # Business vs Creator
â âââ publishing_guide.md # Specs de mĂdia
â âââ setup_walkthrough.md # Guia Meta App
â âââ schema.md # ER diagram
âââ static/
â âââ dashboard.html # Dashboard Chart.js
âââ data/
## Instalação (Uma Vez)
```bash
pip install -r C:\Users\renat\skills\instagram\scripts\requirements.txt
Configuração Inicial
python C:\Users\renat\skills\instagram\scripts\account_setup.py --check
python C:\Users\renat\skills\instagram\scripts\auth.py --setup
python C:\Users\renat\skills\instagram\scripts\profile.py --view
Se a conta for pessoal, o script account_setup.py --guide då instruçÔes de migração
para Business ou Creator.
Foto (Aceita Arquivo Local â Faz Upload AutomĂĄtico Via Imgur)
python C:\Users\renat\skills\instagram\scripts\publish.py --type photo --image caminho/foto.jpg --caption "Texto do post"
VĂdeo
python C:\Users\renat\skills\instagram\scripts\publish.py --type video --video caminho/video.mp4 --caption "Meu vĂdeo"
Reel
python C:\Users\renat\skills\instagram\scripts\publish.py --type reel --video caminho/reel.mp4 --caption "Novo reel!"
Story
python C:\Users\renat\skills\instagram\scripts\publish.py --type story --image caminho/story.jpg
Carrossel (2-10 Imagens)
python C:\Users\renat\skills\instagram\scripts\publish.py