- All SKILL.md files now <500 lines (avg reduction 69%) - Detailed content extracted to references/ subdirectories - Frontmatter standardised: only name + description (Anthropic standard) - New skills: brand-guidelines, spec-coauthor, report-templates, skill-creator - Design skills: anti-slop guidelines, premium-proposals reference - Removed non-standard frontmatter fields (triggers, version, author, category) Plugins affected: infraestrutura, marketing, dev-tools, crm-ops, gestao, core-tools, negocio, perfex-dev, wordpress, design-media Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
115 lines
2.2 KiB
Markdown
115 lines
2.2 KiB
Markdown
---
|
|
name: n8n-health
|
|
description: Diagnóstico de conectividade e estado da instância n8n. Verificação de saúde do sistema.
|
|
---
|
|
|
|
# /n8n-health - Diagnóstico n8n
|
|
|
|
Verificar conectividade e estado da instância n8n.
|
|
|
|
## Contexto NotebookLM
|
|
|
|
ANTES de executar, consultar notebooks para contexto especializado:
|
|
|
|
| Notebook | ID | Consultar quando |
|
|
|----------|-----|-----------------|
|
|
| n8n Deep Research | f2c809b8-1cb5-4dd0-aa7e-be2cfb6704d1 | Sempre |
|
|
|
|
```
|
|
mcp__notebooklm__notebook_query({
|
|
notebook_id: "f2c809b8-1cb5-4dd0-aa7e-be2cfb6704d1",
|
|
query: "<adaptar ao contexto do pedido do utilizador>"
|
|
})
|
|
```
|
|
|
|
Integrar insights do NotebookLM nas recomendações e decisões.
|
|
|
|
---
|
|
|
|
## Uso
|
|
|
|
```
|
|
/n8n-health # Status rápido
|
|
/n8n-health verbose # Diagnóstico completo
|
|
```
|
|
|
|
---
|
|
|
|
## Instância
|
|
|
|
| Aspecto | Valor |
|
|
|---------|-------|
|
|
| URL | `https://automator.descomplicar.pt` |
|
|
| MCP | `mcp__n8n__*` |
|
|
|
|
---
|
|
|
|
## Execução
|
|
|
|
### Status Rápido (default)
|
|
|
|
```
|
|
1. mcp__n8n__n8n_health_check({ mode: "status" })
|
|
2. Reportar: status, URL, versão, response time
|
|
```
|
|
|
|
### Diagnóstico Completo (verbose)
|
|
|
|
```
|
|
1. mcp__n8n__n8n_health_check({ mode: "diagnostic", verbose: true })
|
|
2. Reportar: env vars, tool status, cache, erros
|
|
```
|
|
|
|
---
|
|
|
|
## Output Esperado
|
|
|
|
```
|
|
n8n Health Check
|
|
----------------
|
|
Status: OK | ERRO
|
|
URL: https://automator.descomplicar.pt
|
|
MCP: 2.33.x
|
|
Response: XXXms
|
|
Workflows: XX activos
|
|
```
|
|
|
|
---
|
|
|
|
## Se Falhar
|
|
|
|
| Erro | Causa | Solução |
|
|
|------|-------|---------|
|
|
| Connection refused | n8n offline | Verificar servidor |
|
|
| 401 Unauthorized | API key inválida | Regenerar no n8n |
|
|
| Timeout | Rede lenta | Verificar latência |
|
|
|
|
### Diagnóstico Manual
|
|
|
|
```bash
|
|
# Verificar se n8n responde
|
|
curl -I https://automator.descomplicar.pt
|
|
|
|
# Verificar API
|
|
curl -H "X-N8N-API-KEY: $KEY" https://automator.descomplicar.pt/api/v1/workflows
|
|
|
|
# Logs MCP
|
|
~/.claude/logs/mcp-n8n.log
|
|
```
|
|
|
|
---
|
|
|
|
## Skills Relacionadas
|
|
|
|
| Skill | Quando Usar |
|
|
|-------|-------------|
|
|
| `/n8n-webhook` | Criar webhooks |
|
|
| `/n8n-schedule` | Automações cron |
|
|
| `/n8n-sync` | Sincronização dados |
|
|
| `/n8n-notify` | Alertas |
|
|
| `/n8n-chatbot` | AI/Chatbots |
|
|
|
|
---
|
|
|
|
*Skill v1.0 | Descomplicar®*
|