Initial commit: Natiris AI Agent Orchestration System
This commit is contained in:
17
resume_natiris.sh
Executable file
17
resume_natiris.sh
Executable 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
|
||||
Reference in New Issue
Block a user