Initial commit : agent2_deploy - déploiement interactif via XMPP/SSH

- agent2_deploy.py : bot XMPP avec machine à états pour le déploiement guidé
- deployer.py : logique SSH partagée (paramiko)
- deploy.py : script CLI standalone (après git clone)
- agents_catalog.json : catalogue des agents déployables
- README.md : documentation complète

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
root
2026-03-07 16:46:03 +00:00
commit e4ec487287
6 changed files with 968 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{
"xmpp_jid" : "agent2_deploy@xmpp.ovh",
"xmpp_pass" : "Matador3721",
"admin_jid" : "sylvain@xmpp.ovh",
"mqtt_host" : "localhost",
"mqtt_port" : 1883,
"mqtt_client_id": "agent2_deploy",
"mqtt_inbox" : "agents/agent2_deploy/inbox",
"mqtt_outbox" : "agents/agent1/inbox",
"agent1_inbox" : "agents/agent1/inbox",
"ollama_url" : "http://192.168.7.119:11434/api/chat",
"model" : "qwen3:8b"
}