- Add all 21 commands (clawd, ralph, prometheus*, dexto*) - Add all hooks (intelligent-router, clawd-*, prometheus-wrapper, unified-integration-v2) - Add skills (ralph, prometheus master) - Add MCP servers (registry.json, manager.sh) - Add plugins directory with marketplaces - Add health-check.sh and aliases.sh scripts - Complete repository synchronization with local ~/.claude/ Total changes: 100+ new files added All integrations now fully backed up in repository 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
11 lines
371 B
Bash
Executable File
11 lines
371 B
Bash
Executable File
#!/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
|