Tempomusic/OpenClaw Workspace
Multi-agent support system for Tempo Music, featuring specialized agents that process customer support tickets through a workflow pipeline.
Summary
A support agent workspace containing 7 specialized Python agents, a Mission Control dashboard, and a Support Dashboard for monitoring ticket data. Agents include budget monitoring (Börje), documentation/file management (Kalle), social media adaptation (Sami), research/news monitoring (Taina), QA verification (Tero), and architecture/monitoring (Ari).
Included Assets
Core Configuration
SOUL.md— Agent identity and operating principlesAGENTS.md— Session startup and memory managementTOOLS.md— Environment-specific tool notesconfig/varianx-shared-roots.json— Google Drive folder mappings
Agent APIs (Python/Flask)
agents/arki/arki-api.py— Monitoring agent with auto-restart capabilities (port 5056)agents/borje/borje-api.py— Token usage and budget tracking (port 5056)agents/kalle/kalle-api.py— Documentation and file management (port 5055)agents/sami/sami-api.py— Social media content adaptation (port 5053)agents/taina/taina-api.py— RSS feed monitoring and research tasks (port 5054)agents/tero/tero-api.py— QA verification and approval workflow (port 5052)
Dashboards
scripts/— Mission Control dashboard for task managementsupport-app/— Support Dashboard for ticket monitoring (port 5080)
How to Use
Agent APIs
# Start individual agents (each has venv/bin/python)
cd agents/<agent-name>
./venv/bin/python <agent-name>-api.py
Mission Control
cd ~/.openclaw/workspace/scripts
python3 dashboard-v7.py &
Support Dashboard
# Production (port 5080)
python3 support-app/server.py
# Development (port 5081)
python3 support-app/server-dev.py
OpenClaw Gateway
openclaw gateway restart
Notes
- All agents use Flask with CORS enabled
- Integration points: Telegram notifications, OpenAI GPT-4 API, Google Drive via
gog - Mission Control runs on port 5050
- Support Dashboard data stored in
support-app/data/tickets.json - Budget tracking uses SQLite at
mission-control/monitoring.db
Aucun commentaire pour le moment.