mirror of
https://github.com/Alkatrazz24/Funk-lab.git
synced 2026-07-11 22:54:42 +02:00
- SOUL.md funk-ai : tableaux détaillés system vs monitor (quand appeler chaque agent avec exemples concrets), section delegate_task vs ask-agent - SOUL.md system : rôle clarifié (traitement texte, PAS analyse santé), format de réponse explicite (verdict direct, pas de préambule) - hermes-agent.service : SupplementaryGroups=systemd-journal pour que journalctl fonctionne sans sudo depuis le Terminal de Hermes - Ansible common : admin_user (alkatrazz) ajouté au groupe systemd-journal - admin/hermes.md : section SOUL.md complète (déploiement, contenu, profils) - admin/ask-agent.md : distinction system vs monitor documentée avec tableau et exemples, note /no_think, monitor réservé supervision Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
27 lines
666 B
Django/Jinja
27 lines
666 B
Django/Jinja
[Unit]
|
|
Description=Hermes Agent Gateway
|
|
After=network-online.target
|
|
Wants=network-online.target
|
|
|
|
[Service]
|
|
User={{ hermes_user }}
|
|
Group={{ hermes_user }}
|
|
SupplementaryGroups=systemd-journal
|
|
|
|
Environment=HOME={{ hermes_home }}
|
|
Environment=HERMES_HOME={{ hermes_data_dir }}
|
|
Environment=LM_BASE_URL={{ hermes_lm_base_url }}
|
|
Environment=LM_API_KEY={{ hermes_lm_api_key }}
|
|
Environment=PATH={{ hermes_data_dir }}/hermes-agent/venv/bin:/usr/local/bin:/usr/bin:/bin
|
|
|
|
ExecStart={{ hermes_home }}/.local/bin/hermes gateway run
|
|
|
|
Restart=on-failure
|
|
RestartSec=10s
|
|
|
|
StandardOutput=journal
|
|
StandardError=journal
|
|
SyslogIdentifier=hermes-agent
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|