18 lines
862 B
Bash
Executable File
18 lines
862 B
Bash
Executable File
#!/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
|