Initial: Claude config with agents, skills, commands, rules and scripts

This commit is contained in:
2026-02-16 20:21:30 -03:00
commit 8779f3a0a4
153 changed files with 27484 additions and 0 deletions

36
scripts/glm-quota Normal file
View File

@@ -0,0 +1,36 @@
#!/bin/bash
echo "╔══════════════════════════════════════════════════════╗"
echo "║ 📊 GLM CODING PLAN QUOTA ║"
echo "╚══════════════════════════════════════════════════════╝"
response=$(curl -s -X GET "https://api.z.ai/api/monitor/usage/quota/limit" \
-H "Authorization: Bearer $GLM_API_KEY" \
-H "Content-Type: application/json")
if echo "$response" | grep -q "error"; then
echo "❌ Error: $response"
exit 1
fi
echo "$response" | python3 -c "
import json, sys
data = json.load(sys.stdin)
limits = data.get('data', {}).get('limits', [])
for l in limits:
ltype = l.get('type', 'Unknown')
pct = l.get('percentage', 0)
remaining = l.get('remaining', 0)
total = l.get('number', 0)
if ltype == 'TIME_LIMIT':
print(f\"\n⏱ Límite de tiempo: {remaining/1000/60:.1f} minutos restantes\")
elif ltype == 'TOKENS_LIMIT':
print(f\"\n🔢 Límite de tokens: {remaining/1001000:.1f}M restantes\")
print(f\"📊 Usado: {pct:.1f}%\")
"
echo ""
echo "═══════════════════════════════════════════════════════"