com um clique
system-health
Run system health check, reads system-notes for known deviations
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Run system health check, reads system-notes for known deviations
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Communicate with other abtars agents — delegate tasks, ask questions
Full browser capability — managed Browsie session or emergency Main direct mode
Fetch web content — 4-level escalation chain from curl to full browser
Find the best free cloud models and update models.json from OpenRouter leaderboard
When to use skill_create (procedures) vs memory_store (facts)
Fetch Twitter/X content — single tweets (no auth) or feeds (cookies)
| name | system-health |
| description | Run system health check, reads system-notes for known deviations |
| user-invocable | true |
Run a comprehensive health check and report only real issues — not known/accepted deviations.
read docs/system-notes.md
Parse this file first. Any item described here is expected and must NOT be reported as an issue. Mention them briefly as "known & accepted" if relevant.
~/.abtars/scripts/doctor.sh
cat ~/.abtars/memory/.heartbeat # epoch ms — if >10 min old, stalled
# Use /tasks command or:
cat ~/.abtars/memory/cron-state.json
ls -lt ~/.abtars/memory/sleep/ | head -5 # last audit — if >2 days, broken
ls -la ~/.abtars/memory/sleep/*.lock 2>/dev/null # stale locks
sqlite3 ~/.abtars/memory/memory.db "SELECT 'messages', COUNT(*) FROM messages UNION ALL SELECT 'extracted', COUNT(*) FROM extracted_memories;"
sqlite3 ~/.abtars/memory/memory.db "SELECT datetime(timestamp/1000, 'unixepoch', 'localtime'), substr(content,1,60) FROM messages ORDER BY timestamp DESC LIMIT 3;"
ls -lt ~/.abtars/memory/daily/ 2>/dev/null | head -3 # if >3 days, broken
ls -lt ~/.abtars/memory/weekly/ 2>/dev/null | head -3
grep -i "error\|fail\|crash\|WARN" ~/.abtars/logs/bridge.log 2>/dev/null | tail -20
ls -lt ~/.backup-abtars/ 2>/dev/null | head -5 # should be <2 days old
ps aux | grep -E "abtars|kiro-cli|ollama" | grep -v grep
top -l 1 -n 0 | head -10
df -h /
uptime
# Check configured models from transport.json
python3 ~/.abtars/scripts/scout-ollama.py
Produce a concise report:
Keep it short. If everything is fine, say so in 3-4 lines.
If issues found, suggest doctor.sh --fix or doctor.sh --fix-full.