Install
openclaw skills install reg-limitedVehicle restriction query and reminder tool for Chinese cities. Query daily restrictions and set scheduled reminders.
openclaw skills install reg-limitedA tool to help you query vehicle restrictions and set reminders for Chinese cities.
# Query today's restricted digits for a city
reg-limited query --city beijing
# Check if a plate is restricted
reg-limited check --city beijing --plate 京A12345
# Basic usage
reg-limited add --city beijing --plate 京A12345 --time "07:00"
# Full parameters
reg-limited add --city beijing --plate 京A12345 --time "07:00" --notify-channel feishu
reg-limited list
reg-limited remove --id <reminder_id>
Queries real-time restriction data from Beijing Traffic Management Bureau:
| Day | Restricted |
|---|---|
| Monday | 3, 8 |
| Tuesday | 4, 9 |
| Wednesday | 5, 0 |
| Thursday | 1, 6 |
| Friday | 2, 7 |
JSON format for program processing:
{
"success": true,
"data": {
"city": "北京",
"date": "2026-03-03",
"restricted": ["4", "9"],
"isRestricted": true,
"plate": "京A12345",
"lastDigit": "4"
}
}
User: What's today's vehicle restriction in Beijing?
Bot: Today's restriction digits: 4, 9 (Your plate 4 is restricted!)
User: Is my car 京A12345 restricted today?
Bot: Yes! Today (Tuesday) Beijing restricts digits 4 and 9. Your plate ends with 4, so it's restricted.
User: Set a reminder for 7am tomorrow about restrictions
Bot: Done! You'll receive a restriction reminder at 7am tomorrow.
More cities coming soon...