# Send Omie ERP to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "omie",
    "name": "Omie ERP",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/JAMESBOT-AGNT/omie",
    "canonicalUrl": "https://clawhub.ai/JAMESBOT-AGNT/omie",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/omie",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=omie",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "CHANGELOG.md",
      "SKILL.md",
      "scripts/omie_client.py",
      "scripts/omie_webhook.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "omie",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T08:23:13.003Z",
      "expiresAt": "2026-05-13T08:23:13.003Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=omie",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=omie",
        "contentDisposition": "attachment; filename=\"omie-1.0.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "omie"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/omie"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/omie",
    "downloadUrl": "https://openagent3.xyz/downloads/omie",
    "agentUrl": "https://openagent3.xyz/skills/omie/agent",
    "manifestUrl": "https://openagent3.xyz/skills/omie/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/omie/agent.md"
  }
}
```
## Documentation

### Omie ERP Skill

Integração com o Omie ERP via API REST.

### Setup

Requer variáveis de ambiente:

export OMIE_APP_KEY="your_app_key_here"
export OMIE_APP_SECRET="your_app_secret_here"

### API Client

Use o script Python para todas as operações:

python3 skills/omie/scripts/omie_client.py <command> [args]

### Comandos disponíveis

Clientes

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

Produtos

python3 scripts/omie_client.py produtos_listar [pagina] [por_pagina]
python3 scripts/omie_client.py produtos_detalhar codigo=1234567

Pedidos de Venda

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

Financeiro

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

Notas Fiscais

python3 scripts/omie_client.py nfe_listar [pagina] [por_pagina]
python3 scripts/omie_client.py nfe_detalhar numero=1234

Estoque

python3 scripts/omie_client.py estoque_posicao [pagina] [por_pagina]
python3 scripts/omie_client.py estoque_produto codigo=1234567

### Webhook

O Omie pode enviar eventos para um endpoint HTTP. Configurar em:
Omie → Configurações → Integrações → Webhooks

Eventos suportados:

pedido.incluido / pedido.alterado
nfe.emitida / nfe.cancelada
financas.recebido / financas.pago
cliente.incluido / cliente.alterado

Para iniciar o receptor de webhooks:

python3 scripts/omie_webhook.py --port 8089

### Limites da API

Rate limit: 3 requisições/segundo por app
Paginação: máximo 500 registros por página
Timeout: 30 segundos
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: JAMESBOT-AGNT
- Version: 1.0.3
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-06T08:23:13.003Z
- Expires at: 2026-05-13T08:23:13.003Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/omie)
- [Send to Agent page](https://openagent3.xyz/skills/omie/agent)
- [JSON manifest](https://openagent3.xyz/skills/omie/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/omie/agent.md)
- [Download page](https://openagent3.xyz/downloads/omie)