Some checks failed
Build and Deploy Docs / build-and-deploy (push) Has been cancelled
- Created logs/ structure (sessions, operations, incidents) - Added session-start/log/end scripts - Installed Git hooks for auto-logging commits/pushes - Added shell integration for zsh - Created CHANGELOG.md - Documented today's session (2026-01-10)
11 lines
323 B
Bash
Executable File
11 lines
323 B
Bash
Executable File
#!/bin/bash
|
|
# Sofia Agent - Швидкий запуск
|
|
# Usage: ./run_sofia.sh [message]
|
|
|
|
# Перейти в директорію проекту
|
|
cd "$(dirname "$0")"
|
|
|
|
# Активувати віртуальне середовище та запустити Sofia
|
|
source sofia_venv/bin/activate
|
|
python3 sofia_agent.py "$@"
|