Stats
Actions
Tags
From claude-colab
Check Colab environment status, GPU info, and Drive mount
How this command is triggered — by the user, by Claude, or both
Slash command
/claude-colab:colab-statusThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
Check the Colab environment status: 1. **GPU Status** 2. **Drive Mount** 3. **Workspace** 4. **Claude Code** 5. **Plugin Status** Summarize the status in a clear report.
Check the Colab environment status:
GPU Status
python3 -c "import torch; print(f'CUDA: {torch.cuda.is_available()}'); print(f'Device: {torch.cuda.get_device_name(0) if torch.cuda.is_available() else \"N/A\"}'); print(f'Memory: {torch.cuda.get_device_properties(0).total_memory / 1e9:.1f}GB' if torch.cuda.is_available() else '')"
Drive Mount
ls -la /content/drive/ 2>/dev/null || echo "Drive not mounted"
Workspace
ls -la /content/claude-workspaces/ 2>/dev/null
cat /content/claude-workspaces/*/ENVIRONMENT.json 2>/dev/null | head -50
Claude Code
which claude && claude --version
Plugin Status
cat ~/.claude/settings.json 2>/dev/null | python3 -c "import sys,json; d=json.load(sys.stdin); print('Plugins:', d.get('enabledPlugins', []))"
Summarize the status in a clear report.
npx claudepluginhub ali/claude-colab/preflightVerifies Codex CLI connectivity, authentication status, and lists available models with their availability.
/doctorRuns a diagnostic script to verify CodeSensei plugin health and display local storage footprint, including installed tools, configuration validity, profile data, and pending lessons.