ai-image-creator
Generate PNG images using AI (multiple models via OpenRouter including Gemini, FLUX.2, Riverflow, SeedDream, GPT-5 Image, proxied through Cloudflare AI Gateway…
Omie ERP integration via API. Manage clients, products, orders, invoices (NF-e), financials (accounts receivable/payable), and stock. Use when users ask about ERP data, financials, orders, invoices, stock, or clients from Omie. Also handles webhooks for real-time events.
$ npx -y skills add evolution-foundation/evo-nexus --skill int-omie --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/int-omieContext preview
The summary Claude sees to decide when to auto-load this skill.
Omie ERP integration via API. Manage clients, products, orders, invoices (NF-e), financials (accounts receivable/payable), and stock. Use when users ask about ERP data, financials, orders, invoices, stock, or clients from Omie. Also handles webhooks for real-time events.
name: int-omie description: "Omie ERP integration via API. Manage clients, products, orders, invoices (NF-e), financials (accounts receivable/payable), and stock. Use when users ask about ERP data, financials, orders, invoices, stock, or clients from Omie. Also handles webhooks for real-time events."
Integration with Omie ERP via REST API.
Requires environment variables:
export OMIE_APP_KEY="your_app_key_here" export OMIE_APP_SECRET="your_app_secret_here"
Use the Python script for all operations:
python3 skills/omie/scripts/omie_client.py <command> [args]
python3 scripts/omie_client.py clientes_listar [pagina] [por_pagina] python3 scripts/omie_client.py clientes_buscar cnpj_cpf=00.000.000/0001-00 python3 scripts/omie_client.py clientes_buscar codigo=1234567 python3 scripts/omie_client.py clientes_detalhar codigo=1234567
python3 scripts/omie_client.py produtos_listar [pagina] [por_pagina] python3 scripts/omie_client.py produtos_detalhar codigo=1234567
python3 scripts/omie_client.py pedidos_listar [pagina] [por_pagina] python3 scripts/omie_client.py pedidos_detalhar numero=1234 python3 scripts/omie_client.py pedidos_status numero=1234
python3 scripts/omie_client.py contas_receber [pagina] [por_pagina] python3 scripts/omie_client.py contas_pagar [pagina] [por_pagina] python3 scripts/omie_client.py resumo_financeiro
python3 scripts/omie_client.py nfe_listar [pagina] [por_pagina] python3 scripts/omie_client.py nfe_detalhar numero=1234
python3 scripts/omie_client.py estoque_posicao [pagina] [por_pagina] python3 scripts/omie_client.py estoque_produto codigo=1234567
Omie can send events to an HTTP endpoint. Configure at: Omie → Settings → Integrations → Webhooks
Supported events:
To start the webhook receiver:
python3 scripts/omie_webhook.py --port 8089
Generate PNG images using AI (multiple models via OpenRouter including Gemini, FLUX.2, Riverflow, SeedDream, GPT-5 Image, proxied through Cloudflare AI Gateway…
Create a new custom agent for the workspace. Guides the user through defining agent name, domain, personality, skills, model, and memory folder. Use when the…
Create a new slash command for Claude Code. Guides the user through defining the command name, what it does, and generates the markdown file in…
Create a Mission, Project, or Goal (Mission → Project → Goal → Task hierarchy) in EvoNexus. Guides the user through picking a mission, choosing or creating a…
Create a new heartbeat (proactive agent scheduled with a decision prompt) for EvoNexus. Guides the user through picking an agent, setting interval, wake…
Create a new custom integration (API/service wrapper) for the workspace. Guides the user through defining the integration's slug, display name, description,…