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

17
resume_natiris.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
# Natiris Auto-Recovery Script
# Generated by Recovery Agent
echo "╭────────────────────────────────────────────────────────────╮"
echo "│ NATIRIS PROJECT RESUMER │"
echo "╰────────────────────────────────────────────────────────────╯"
echo ""
# Check if state exists
if [ -f ~/natiris/agent_state.json ]; then
echo "📋 Found existing state - loading progress..."
python3 ~/natiris/agents/natiris_recovery_agent.py --resume
else
echo "⚠️ No state found - starting fresh..."
python3 ~/natiris/agents/natiris_recovery_agent.py --init
fi