Commit all workspace changes from current session

This commit is contained in:
JC Beasley
2026-07-05 12:50:33 -07:00
parent 93b21a8164
commit 3d855cfd11
74 changed files with 2204 additions and 2491 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/bin/bash
# Get vault token
VAULT_RESP=$(curl -sk -X POST \
-d '{"role_id":"75d2dcfb-9c65-7f60-59b4-eee8c7f8dc0e","secret_id":"6202b465-2f25-547c-ec07-f47cfc4dda3e"}' \
"https://beavault.beawit.net:8200/v1/auth/approle/login")
VAULT_TOKEN=$(echo "$VAULT_RESP" | jq -r '.auth.client_token')
# Get nocodb token
NOCODB_TOKEN=$(curl -sk -H "X-Vault-Token: $VAULT_TOKEN" \
"https://beavault.beawit.net:8200/v1/kv/data/api/infrastructure" | \
jq -r '.data.data["nocodb-token"]')
echo "Token: ${NOCODB_TOKEN:0:20}..."
# Check tables in Agent base
echo "=== Tables in Agent base ==="
curl -s "http://192.168.25.5:8080/api/v2/meta/bases/pedwxnsn51vxdq2/tables" \
-H "xc-token: $NOCODB_TOKEN" | jq '.list[] | "\(.id): \(.title)"'
+26
View File
@@ -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"
+19
View File
@@ -0,0 +1,19 @@
#!/bin/bash
# Get vault token
VAULT_RESP=$(curl -sk -X POST \
-d '{"role_id":"75d2dcfb-9c65-7f60-59b4-eee8c7f8dc0e","secret_id":"6202b465-2f25-547c-ec07-f47cfc4dda3e"}' \
"https://beavault.beawit.net:8200/v1/auth/approle/login")
VAULT_TOKEN=$(echo "$VAULT_RESP" | jq -r '.auth.client_token')
# Get nocodb token
NOCODB_TOKEN=$(curl -sk -H "X-Vault-Token: $VAULT_TOKEN" \
"https://beavault.beawit.net:8200/v1/kv/data/api/infrastructure" | \
jq -r '.data.data["nocodb-token"]')
echo "Token: ${NOCODB_TOKEN:0:20}..."
# Test ai_data_Memory table
echo "=== Test ai_data_Memory table (mx149yctebfwvys) ==="
curl -s "http://192.168.25.5:8080/api/v2/tables/mx149yctebfwvys/records" \
-H "xc-token: $NOCODB_TOKEN"