Initial commit: Natiris AI Agent Orchestration System

This commit is contained in:
Arch Agent
2026-03-01 14:28:26 +01:00
commit 3b5f6ba83d
3127 changed files with 86184 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#!/usr/bin/env python3
"""Fügt Pets-Config in Hauptconfig ein"""
import json
with open(os.path.expanduser("~/natiris/config/pets_config.json")) as f:
pets = json.load(f)
with open(os.path.expanduser("~/natiris/config/character_genesis.json")) as f:
config = json.load(f)
# Update pets section
config["pets"] = pets
with open(os.path.expanduser("~/natiris/config/character_genesis.json"), "w") as f:
json.dump(config, f, indent=2, ensure_ascii=False)
print("✅ Config mit Pets aktualisiert")
print(json.dumps({"partner": config["pets"]["partner"], "katzen_count": len(config["pets"]["katzen"])}, indent=2))