Commit all workspace changes from current session
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
#!/bin/bash
|
||||
|
||||
echo "=== Web Applications Status Report ==="
|
||||
echo
|
||||
|
||||
echo "Currently Running Applications:"
|
||||
echo "--------------------------------"
|
||||
ps aux | grep python | grep -v grep | while read line; do
|
||||
echo "$line"
|
||||
done
|
||||
echo
|
||||
|
||||
echo "Application Directories:"
|
||||
echo "------------------------"
|
||||
echo "Main Projects Manager: /home/jcbeasley/projects-manager"
|
||||
echo "Client Onboarding: /home/jcbeasley/.openclaw/workspace/Projects/client-onboarding"
|
||||
echo "Site Survey AI: /home/jcbeasley/.openclaw/workspace/Projects/site-survey-ai"
|
||||
echo "Shorts Analyzer: /home/jcbeasley/Projects/shorts-analyzer"
|
||||
echo "Dark Web Monitor: /home/jcbeasley/Projects/dark-web-monitor"
|
||||
echo "IT Assessment: /home/jcbeasley/it-assessment"
|
||||
echo
|
||||
|
||||
echo "Suggested Organization:"
|
||||
echo "----------------------"
|
||||
echo "Active (running): projects-manager, client-onboarding, site-survey-ai"
|
||||
echo "Development: shorts-analyzer, dark-web-monitor, it-assessment"
|
||||
Reference in New Issue
Block a user