25 lines
589 B
Bash
Executable File
25 lines
589 B
Bash
Executable File
#!/bin/bash
|
|
# Activate Allegro Harness Profile
|
|
# Run this to switch to the new Allegro
|
|
|
|
echo "=== ACTIVATING ALLEGRO HARNESS PROFILE ==="
|
|
echo ""
|
|
|
|
# Source profile environment
|
|
source /root/.allegro_profile_env
|
|
|
|
# Run state sync
|
|
bash ~/.hermes/profiles/allegro/home/sync_bridge.sh
|
|
|
|
echo ""
|
|
echo "Environment configured:"
|
|
echo " HERMES_PROFILE=$HERMES_PROFILE"
|
|
echo " HERMES_HOME=$HERMES_HOME"
|
|
echo ""
|
|
echo "To start Allegro with the profile:"
|
|
echo " cd /root/wizards/allegro/hermes-agent"
|
|
echo " source .venv/bin/activate"
|
|
echo " hermes --profile allegro"
|
|
echo ""
|
|
echo "=== READY ==="
|