Adds foundational workspace documentation: - Core identity and operating principles (SOUL.md, IDENTITY.md, AGENTS.md, USER.md) - Memory management system specification (MEMORY.md) - Development team context and workflow (CONTEXT.md, PROJECTS.md) - Environment notes template (TOOLS.md) - Heartbeat task template (HEARTBEAT.md) Includes super-enhanced memory system: - JavaScript memory engine implementation - Memory initialization and test scripts - Daily memory logs for 2026-07-03, 2026-07-04 - Project-level memory structure for site-survey-ai Adds project templates: - Standard Python Flask application template
1.4 KiB
1.4 KiB
IT Site Survey AI - Operations Runbook
Application Management
Check Application Status
ssh jcbeasley@192.168.50.11 "ps aux | grep python | grep app.py"
Check Application Port
ssh jcbeasley@192.168.50.11 "ss -tulpn | grep 3003"
View Application Logs
ssh jcbeasley@192.168.50.11 "tail -f /home/jcbeasley/.openclaw/workspace/Projects/site-survey-ai/app.log"
Restart Application
ssh jcbeasley@192.168.50.11 "pkill -f 'python3 app.py' && cd /home/jcbeasley/.openclaw/workspace/Projects/site-survey-ai && source venv/bin/activate && nohup python3 app.py > app.log 2>&1 &"
Testing Endpoints
Test Main Application
curl -s http://192.168.50.11:3003/
Test API Endpoint
curl -s http://192.168.50.11:3003/api/surveys/responses | jq '.'
Test Dashboard
curl -s http://192.168.50.11:3003/dashboard.html
File Locations
- Main application:
/home/jcbeasley/.openclaw/workspace/Projects/site-survey-ai/app.py - HTML files:
/home/jcbeasley/.openclaw/workspace/Projects/site-survey-ai/index.htmlanddashboard.html - Memory files:
/home/jcbeasley/.openclaw/workspace/Projects/site-survey-ai/memory/ - Logs:
/home/jcbeasley/.openclaw/workspace/Projects/site-survey-ai/app.log - Virtual environment:
/home/jcbeasley/.openclaw/workspace/Projects/site-survey-ai/venv/