feat: amélioration routing ask-agent + identité SOUL.md profils

- 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>
This commit is contained in:
alkatrazz 2026-05-13 18:59:48 +02:00
parent ed963180f2
commit 00d10234f9
7 changed files with 140 additions and 10 deletions

View file

@ -1,4 +1,5 @@
---
admin_user: alkatrazz
dns_domain: lab.local
ntp_servers:
- 0.fr.pool.ntp.org

View file

@ -58,6 +58,13 @@
key: "{{ lookup('file', '~/.ssh/id_ed25519.pub') }}"
state: present
- name: Add admin user to systemd-journal group
ansible.builtin.user:
name: "{{ admin_user }}"
groups: systemd-journal
append: true
when: admin_user is defined
- name: Harden sshd
ansible.builtin.lineinfile:
path: /etc/ssh/sshd_config

View file

@ -6,6 +6,7 @@ Wants=network-online.target
[Service]
User={{ hermes_user }}
Group={{ hermes_user }}
SupplementaryGroups=systemd-journal
Environment=HOME={{ hermes_home }}
Environment=HERMES_HOME={{ hermes_data_dir }}