#!/bin/bash PROMPT=$(cat) COMPLEXITY_INDICATORS=("build.*from scratch" "implement.*complete" "autonomous" "end to end" "full.*feature") for indicator in "${COMPLEXITY_INDICATORS[@]}"; do if echo "$PROMPT" | grep -qiE "$indicator"; then echo "💡 Tip: This task looks complex. Consider using /clawd for autonomous execution." break fi done exit 0