Watch for design requests from clawd-eyes web UI
Monitors for design requests from the clawd-eyes web UI and alerts when found.
/plugin marketplace add arevlo/claude-code-workflows/plugin install clawd-eyes@claude-code-workflowsMonitor for incoming design requests from the clawd-eyes web UI.
Check if clawd-eyes is running first
lsof -i :4000 2>/dev/null | grep LISTEN
If not running, tell user to run /clawd-eyes:start first.
Find the clawd-eyes data directory:
data/pending-request.json:
./data/pending-request.json~/clawd-eyes/data/pending-request.json~/projects/clawd-eyes/data/pending-request.jsonfind ~ -maxdepth 5 -path "*/clawd-eyes/data/pending-request.json" 2>/dev/null | head -1Check for pending request
cat <clawd-eyes-path>/data/pending-request.json 2>/dev/null || echo "No pending request"
If request exists:
get_design_context MCP tool to get full details with screenshotIf no request:
{
"selector": "div.example",
"instruction": "User's design instruction",
"css": { "width": "100px", ... },
"boundingBox": { "x": 0, "y": 0, "width": 100, "height": 50 },
"url": "https://example.com",
"timestamp": 1234567890
}