Korail Manager
Skill by lonehades
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/lonehades/korail-managername: korail-manager version: 1.1.4 description: "Korail(KTX) & SRT reservation automation skill. Search, reserve, and watch for tickets. Supports Telegram and Slack notifications. (English/Korean supported)" tools:
── KTX ──
-
name: korail_search description: "Search for KTX trains between two stations." parameters: type: object properties: dep: { type: string, description: "Departure station (e.g. 서울, 대전)" } arr: { type: string, description: "Arrival station (e.g. 부산, 동대구)" } date: { type: string, description: "YYYYMMDD format (default: today)" } time: { type: string, description: "HHMMSS format (default: now)" } required: [dep, arr] command: ["python3", "scripts/search.py"]
-
name: korail_watch description: "Watch for available KTX seats and reserve automatically. Sends Telegram/Slack alert on success." parameters: type: object properties: dep: { type: string, description: "Departure station" } arr: { type: string, description: "Arrival station" } date: { type: string, description: "YYYYMMDD" } start_time: { type: number, description: "Start hour (0-23)" } end_time: { type: number, description: "End hour (0-23)" } interval: { type: number, description: "Check interval in seconds (default: 300)" } required: [dep, arr, date, start_time, end_time] command: ["python3", "scripts/watch.py"]
-
name: korail_cancel description: "Cancel KTX reservations. If --date is specified, only cancels reservations on that date." parameters: type: object properties: date: { type: string, description: "Target date to cancel (YYYYMMDD). If omitted, cancels all." } command: ["python3", "scripts/cancel.py"]
── SRT ──
- name: srt_search description: "Search for SRT trains between two stations." parameters: type: object properties: dep: { type: string, description: "Departure station (e.g. 수서, 오송, 대전)" } arr: { type: string, description: "Arrival station (e.g. 부산, 대전, 동대구)" } date: { type: string, description: "YYYYMMDD format (default: today)" } time: { type: string, description: "HHMMSS format (default: now)" } required: [dep, arr] command: ["python3", "scripts/srt_search.py"]
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-lonehades-korail-manager": {
"enabled": true,
"auto_update": true
}
}
}