website-builder-backend / 32_build_dolor3v_runtime.sh
David Prince
fix: add all missing local module stubs (remote_mcp_registry, mcp_auth, mcp_transport, etc)
cce8120
Raw
History Blame Contribute Delete
770 Bytes
#!/usr/bin/env bash
set -euo pipefail
ROOT=/root/projects/website-builder-backend-clean
cd "$ROOT"
echo "========================================"
echo "Inspect Dolor3V Runtime Dependencies"
echo "========================================"
echo
echo "[1/5] AgentMemoryStore"
grep -RIn "AgentMemoryStore(" backend | grep -v "__pycache__" || true
echo
echo "[2/5] MessageBus"
grep -RIn "MessageBus(" backend | grep -v "__pycache__" || true
echo
echo "[3/5] agent_factory"
grep -RIn "def .*agent_factory" backend || true
grep -RIn "agent_factory =" backend || true
echo
echo "[4/5] BaseAgent"
grep -RIn "BaseAgent" backend/agents || true
echo
echo "[5/5] Runtime builders"
grep -RIn "Orchestrator(" backend | grep -v main.py || true
echo
echo "Inspection complete."