37 lines
1.1 KiB
Bash
37 lines
1.1 KiB
Bash
# Allegro Profile Environment
|
|
# Loaded when running with --profile allegro
|
|
|
|
HERMES_HOME=/root/wizards/allegro/home
|
|
HERMES_PROFILE=allegro
|
|
|
|
# Provider configuration
|
|
# KIMI_API_KEY is set at system level (not stored here)
|
|
# OPENROUTER_API_KEY is set at system level
|
|
|
|
# Platform tokens (Telegram to be transferred after verification)
|
|
# TELEGRAM_TOKEN=...
|
|
# GITEA_TOKEN=...
|
|
|
|
# Work directory
|
|
ALLEGRO_WORK_DIR=/root/wizards/allegro
|
|
ALLEGRO Lane=tempo-and-dispatch
|
|
|
|
# Cron schedule (15-minute heartbeat)
|
|
ALLEGRO_CRON_HEARTBEAT=*/15
|
|
|
|
# Identity markers
|
|
ALLEGRO_IDENTITY_VERSION=2.0
|
|
ALLEGRO_MIGRATION_DATE=2026-04-01
|
|
|
|
# TRANSFERRED TOKEN — April 1, 2026
|
|
# Original Allegro has verified the copy and transferred control
|
|
TELEGRAM_BOT_TOKEN=${TELEGRAM_BOT_TOKEN:-${TELEGRAM_TOKEN:-}}
|
|
|
|
# CUTOVER ADDITIONS — Ensures profile can access all legacy paths
|
|
ALLEGRO_LEGACY_HOME=/root/wizards/allegro/home
|
|
ALLEGRO_WORKING_DIR=/root/wizards/allegro
|
|
ALLEGRO_LEGACY_SKILLS=/root/wizards/allegro/home/skills
|
|
|
|
# Path sync — profile can access original working directories
|
|
PATH="${ALLEGRO_WORKING_DIR}/bin:${PATH}"
|