| name | health-check |
| description | Quick GT health status without full update workflow |
| disable-model-invocation | true |
| allowed-tools | Bash, Read |
Quick Health Check
Fast health status check without syncing upstream or running fixes.
Workflow
-
Check GT version
gt version
-
Run doctor (no fix)
sudo -u gtuser bash -c 'cd /home/gtuser/gt && gt doctor 2>&1'
-
Check active agents via gt-user terminal
sudo -u gtuser tmux send-keys -t gt-user:main.0 'gt agents' Enter
sleep 2
sudo -u gtuser tmux capture-pane -t gt-user:main.0 -p -S -30
-
Check daemon status
sudo -u gtuser bash -c 'cd /home/gtuser/gt && gt daemon status 2>&1'
-
Report summary
Provide a quick status table:
| Check | Result |
|---|
| GT Version | (version string) |
| Doctor Passed | (count) |
| Doctor Warnings | (count + list) |
| Doctor Failed | (count + list) |
| Active Agents | (count) |
| Daemon | (status) |
When to Use
- Quick status check before starting work
- Verifying GT is healthy after changes
- When you don't need to sync upstream
When to Use /gt-update Instead
- Starting a new day/session
- Need to sync with upstream
- Want to run auto-fixes
- Need full dashboard initialization