feat: full plugin integration + cross-agent rules

This commit is contained in:
Emeriko
2026-06-12 03:25:15 +02:00
parent 2c8c175b4f
commit 7a3475c0f4
18 changed files with 673 additions and 14 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/env bash
flag="$HOME/.claude/.ponytail-active"
[ -f "$flag" ] || exit 0
mode=$(head -n1 "$flag" | tr -d '[:space:]')
if [ -z "$mode" ] || [ "$mode" = "full" ]; then
printf '\033[38;5;108m[PONYTAIL]\033[0m'
else
printf '\033[38;5;108m[PONYTAIL:%s]\033[0m' "$(printf '%s' "$mode" | tr '[:lower:]' '[:upper:]')"
fi