mirror of
https://github.com/Alkatrazz24/Funk-lab.git
synced 2026-07-08 17:04:42 +02:00
Pipeline complet dans feature/hermes-auto-improve : - auto-improve.py : analyse admin/ avec hermes --profile funk-ai, applique les améliorations, committe dans la branche, ré-ingère dans Qdrant - trigger-server.py : HTTP 9095 (POST /trigger, /trigger/all, /trigger/subdir, /trigger/dry-run) pour déclenchement depuis n8n ou manuellement - Ansible role hermes_auto_improve : déploie scripts + service systemd sur s01 - n8n workflow "Hermes Auto-Improve" (ID: CX72UUOempE1YtNL) : schedule hebdo dimanche 09h + webhook manuel → analyse → résumé LLM → email Tout reste dans cette branche — rien ne touche main avant review. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
19 lines
859 B
YAML
19 lines
859 B
YAML
---
|
|
- name: Configure storage-01
|
|
hosts: gateway
|
|
roles:
|
|
- { role: hermes_user, tags: [hermes_user] }
|
|
- { role: common, tags: [common] }
|
|
- { role: gateway, tags: [gateway] }
|
|
- { role: dnsmasq, tags: [dnsmasq] }
|
|
- { role: nfs_server, tags: [nfs_server] }
|
|
- { role: qdrant, tags: [qdrant] }
|
|
- { role: postgresql, tags: [postgresql] }
|
|
- { role: minio, tags: [minio] }
|
|
- { role: litellm, tags: [litellm] }
|
|
- { role: hermes_agent, tags: [hermes_agent] }
|
|
- { role: rag, tags: [rag] }
|
|
- { role: node_exporter, tags: [node_exporter] }
|
|
- { role: alertmanager_webhook, tags: [alertmanager_webhook] }
|
|
- { role: postfix_relay, tags: [postfix_relay] }
|
|
- { role: hermes_auto_improve, tags: [hermes_auto_improve] }
|