cooldown状態のモデルがあることが前提です。
以下のコマンドで確認できます。
openclaw models status --json | jq '.auth.unusableProfiles[] | select(.kind == "cooldown")'
{
"profileId": "openai:hoge@example.com",
"provider": "openai",
"kind": "cooldown",
"recoveryHint": "Wait for cooldown or switch provider.",
"until": 1788750314263,
"remainingMs": 147365944
}
openai/gpt-5.6-solのクールダウン終了時刻と残り時間だけ見る場合:
openclaw models status --json | jq -r ' .auth.unusableProfiles[] | select(.kind == "cooldown") | "終了予定UTC: \((.until / 1000) | todate)\n残り: \((.remainingMs / 3600000) | floor)時間 \((((.remainingMs % 3600000) / 60000) | floor))分" '
終了予定UTC: 2026-09-07T03:05:14Z 残り: 40時間 55分
主モデルとフォールバック設定も同時に確認するなら:
openclaw models status --json | jq '{
defaultModel,
fallbacks,
cooldowns: .auth.unusableProfiles
}'
