PluginBench
Skill
Review
Audit score 70

ktx-booking

nomadamas/k-skill

Search, reserve, inspect, and cancel KTX/Korail train tickets in Korea with anti-bot handling.

What is ktx-booking?

Automates KTX and Korail ticket operations in Korea using the korail2 library with Dynapath anti-bot workarounds. Use this when users need to search for trains, check seat availability, make reservations, view booking status, or cancel tickets.

  • Search KTX and other Korean train types (ITX, Mugunghwa, etc.) by route, date, and time
  • Inspect detailed seat maps by car number with power outlet and direction hints
  • Reserve tickets with seat preferences and N-card discount support
  • Check reservation status and cancel existing bookings
  • Query N-card discounts and apply them to reservations

How to install ktx-booking

npx skills add https://github.com/nomadamas/k-skill --skill ktx-booking
Prerequisites
  • Python 3.10 or higher
  • korail2-ncard and pycryptodome packages installed via pip
  • Korail account credentials (ID and password) stored in environment or config
Claude Code
Cursor
Windsurf
Cline

How to use ktx-booking

  1. 1.Ensure KSKILL_KTX_ID and KSKILL_KTX_PASSWORD environment variables are set or stored in ~/.config/k-skill/secrets.env
  2. 2.Run search command with departure station, arrival station, date (YYYYMMDD), and time (HHMMSS)
  3. 3.Review the shortlist including train_id, departure/arrival times, and seat availability
  4. 4.Call seats command with train_id to inspect detailed seat maps if user asks about specific seats or power outlets
  5. 5.Execute reserve command with the chosen train_id and seat preference to complete booking
  6. 6.Use reservations command to list existing bookings, then cancel command with reservation_id to cancel if needed

Use cases

Good for
  • User asks 'Find me a KTX from Seoul to Busan on March 28 morning'
  • User requests 'Show me available seats in car 5 with power outlets'
  • User says 'Book this train and check my reservation'
  • User needs 'Cancel my KTX reservation'
  • User wants 'Apply my N-card discount to this train'
Who it's for
  • Travelers in Korea booking domestic train tickets
  • Users with Korail/KTX accounts and N-card memberships
  • Anyone needing programmatic access to Korean rail bookings

ktx-booking FAQ

What if the search returns trains with no seats?

Use --include-no-seats flag in search to include sold-out trains, or --include-waiting-list to see waiting list options. Then use --try-waiting in reserve to attempt a waiting list booking.

How do I apply N-card discounts?

Run ncard-list to see your cards, then ncard-search with --ncard-index to find discounted trains, and reserve with the same --ncard-index flag.

Does this automate payment?

No. The skill stops after showing reservation confirmation with booking number and payment deadline. You must complete payment manually on the Korail website or app.

What train types does this support?

KTX (default), ITX-Saemaeul, ITX-Cheongchun, Mugunghwa, Nuriro, Tonggeun, Airport Rail, and all types. Specify via --train-type flag.

What if I get a MACRO ERROR or anti-bot failure?

The skill includes Dynapath anti-bot workarounds (x-dynapath-m-token, Sid, app version 250601002). If errors persist, Korail may have changed their anti-bot rules; check for skill updates.

Full instructions (SKILL.md)

Source of truth, from nomadamas/k-skill.


name: ktx-booking description: Search, reserve, inspect, and cancel KTX or Korail tickets in Korea with the korail2 + pycryptodome Python packages. Use when the user asks for KTX seats, Korail bookings, train changes, reservation status, remaining seat numbers, car-by-car seats, or power-outlet/good-seat tips. license: MIT metadata: category: travel locale: ko-KR phase: v1

KTX Booking

What this skill does

korail2 위에 scripts/ktx_booking.py helper 를 얹어 KTX/Korail 조회, 호차별 좌석번호 확인, 예약, 예약 확인, 취소를 처리한다.

최근 Korail 앱의 Dynapath anti-bot 체크 때문에 원본 korail2 0.4.0 예제만으로는 MACRO ERROR 가 날 수 있다. 이 스킬은 helper 가 x-dynapath-m-token, Sid, 최신 app version(250601002)을 붙여 실제 예매 흐름을 복구하는 것을 전제로 한다.

When to use

  • "서울에서 부산 가는 KTX 찾아줘"
  • "코레일 예약 확인해줘"
  • "KTX 취소해줘"
  • "오전 9시 이후 KTX 중 제일 빠른 거 잡아줘"
  • "KTX 남은 좌석 번호 확인해줘"
  • "이 열차 콘센트 있는 꿀팁 좌석부터 보여줘"
  • "KTX 5호차 남은 자리만 봐줘"
  • "예약하기 전에 호차별 좌석 확인해줘"
  • "N카드로 할인 열차 찾아줘"
  • "내 N카드 목록 보여줘"
  • "N카드 할인 적용해서 예약해줘"

When not to use

  • SRT 예매인 경우
  • 실결제 확정까지 자동화해야 하는 경우
  • credential 을 평문으로 넣으려는 경우

Prerequisites

  • Python 3.10+
  • python3 -m pip install korail2-ncard pycryptodome

Required environment variables

  • KSKILL_KTX_ID
  • KSKILL_KTX_PASSWORD

Credential resolution order

  1. 이미 환경변수에 있으면 그대로 사용한다.
  2. 에이전트가 자체 secret vault(1Password CLI, Bitwarden CLI, macOS Keychain 등)를 사용 중이면 거기서 꺼내 환경변수로 주입해도 된다.
  3. ~/.config/k-skill/secrets.env (기본 fallback) — plain dotenv 파일, 퍼미션 0600.
  4. 아무것도 없으면 유저에게 물어서 2 또는 3에 저장한다.

기본 경로에 저장하는 것은 fallback일 뿐, 강제가 아니다.

Inputs

  • 출발역
  • 도착역
  • 날짜: YYYYMMDD
  • 희망 시작 시각: HHMMSS
  • 인원 수와 승객 유형
  • 좌석 선호
  • 좌석 상세 조건: 객실 등급, 호차 번호, 남은 좌석만 보기, 콘센트 꿀팁 좌석 우선
  • 조회 결과에서 복사한 train_id

Workflow

0. Install the package globally when missing

python3 -c 'import korail2, Crypto' 가 실패하면 다른 구현으로 우회하지 말고 전역 Python 패키지 설치를 먼저 시도한다.

python3 -m pip install korail2-ncard pycryptodome

1. Ensure credentials are available

KSKILL_KTX_ID, KSKILL_KTX_PASSWORD 환경변수가 설정되어 있는지 확인한다. 없으면 위 credential resolution order에 따라 확보한다.

시크릿이 없다는 이유로 웹사이트를 직접 긁거나 다른 비공식 경로를 찾지 않는다.

2. Search first via the helper

항상 helper 를 통해 조회한다.

python3 scripts/ktx_booking.py search 서울 부산 20260328 090000 --limit 5

기본 --train-typektx 다. ITX-청춘(예: 남춘천↔용산)·ITX-새마을·무궁화호처럼 KTX 외 노선을 잡으려면 --train-type 으로 지정한다.

python3 scripts/ktx_booking.py search 남춘천 용산 20260503 150000 --train-type itx-cheongchun

선택지: ktx, itx-saemaeul, mugunghwa, nuriro, tonggeun, itx-cheongchun, airport, all.

예약 단계(reserve)에서도 같은 --train-type 값을 그대로 넘겨야 stable train_id 매칭이 깨지지 않는다.

좌석이 없는 열차도 후보에 포함하려면 --include-no-seats, 예약 대기 가능한 열차도 같이 보고 싶으면 --include-waiting-list 를 붙인다.

3. Present the shortlist

예매 전에 항상 아래를 확인한다.

  • index
  • train_id
  • 출발/도착 시각
  • 열차 종류 (train_type)
  • 일반실/특실 가능 여부
  • 예약 대기 가능 여부

4. Inspect detailed seats when the user asks for good seats

search 의 좌석 가능 여부는 열차 단위 플래그다. 사용자가 "남은 좌석 번호", "호차별 좌석", "콘센트", "꿀팁 좌석", "창측/순방향 자리", "예약 전에 자리 확인"처럼 구체적인 좌석을 물으면 예약 전에 seats 를 호출한다.

기본 상세 좌석 조회:

python3 scripts/ktx_booking.py seats 서울 부산 20260328 090000 --train-id <train_id>

일반실/특실은 --room 으로 나눈다.

python3 scripts/ktx_booking.py seats 서울 부산 20260328 090000 --train-id <train_id> --room special

남은 좌석번호만 보고 싶으면 --available-only 를 쓴다.

python3 scripts/ktx_booking.py seats 서울 부산 20260328 090000 --train-id <train_id> --available-only

특정 호차를 지정하지 않으면 seats 는 승강장 이동 거리가 짧은 가운데 호차부터 탐색한다. 각 호차 안의 좌석은 콘센트 힌트가 있는 좌석(direct, adjacent)을 먼저, 같은 조건에서는 순방향 좌석을 먼저 보여준다.

특정 호차만 확인하려면 --car-no 를 쓴다.

python3 scripts/ktx_booking.py seats 서울 부산 20260328 090000 --train-id <train_id> --car-no 5 --available-only

콘센트 꿀팁 자리부터 확인하려면 --power-only 를 붙인다. 응답의 power_outletdirect, adjacent, none 중 하나다.

python3 scripts/ktx_booking.py seats 서울 부산 20260328 090000 --train-id <train_id> --available-only --power-only

seatssearch 와 같은 --train-type 을 넘겨야 한다. ITX-청춘 등 KTX 외 열차를 조회했다면 상세 좌석 조회에도 같은 값을 사용한다.

python3 scripts/ktx_booking.py seats 남춘천 용산 20260503 150000 \
  --train-id <train_id> \
  --train-type itx-cheongchun \
  --available-only

상세 좌석 응답을 보여줄 때는 사용자 의도에 맞춰 아래를 우선 요약한다.

  • 호차별 remaining_seats, available_seat_count
  • 남은 좌석 번호 (available_seats)
  • 좌석별 direction, position, seat_type
  • 콘센트 힌트 (power_outlet)
  • 문 근처 여부 (near_door)

이 기능은 좌석을 선택/선점하지 않는다. 실제 예약은 다음 단계의 reserve 로만 진행한다.

5. Reserve only after the target train is unambiguous

조회 결과의 train_id 를 고른 뒤에만 예약한다. 이 값은 helper 가 열차 번호/운행일/시각/역 코드를 묶어 만든 stable selector 이므로, 재조회 시 같은 열차가 아직 있으면 그대로 잡고 없으면 실패한다.

python3 scripts/ktx_booking.py reserve 서울 부산 20260328 090000 --train-id <train_id> --seat-option general-first

ITX 등 KTX 외 노선을 search 단계에서 골랐다면 reserve 에도 똑같이 --train-type 을 넘긴다.

python3 scripts/ktx_booking.py reserve 남춘천 용산 20260503 150000 --train-id <train_id> --train-type itx-cheongchun --seat-option general-first

응답에는 예약번호, 운임, 구입기한이 포함된다. 결제는 자동화하지 않는다. 좌석이 없을 때는 조회 단계에서 --include-waiting-list 를 켜고 예약 단계에서 --try-waiting 으로 예약 대기까지 시도할 수 있다.

5-1. N-card discounted reservation

N카드 할인을 적용하려면 먼저 보유 N카드 목록을 조회해 카드 번호를 확인한다.

python3 scripts/ktx_booking.py ncard-list

N카드로 할인 열차를 조회한다 (--ncard-indexncard-list 결과의 순번). ncard-list 는 로그/셸 노출을 줄이기 위해 카드 번호를 마스킹해 출력한다.

python3 scripts/ktx_booking.py ncard-search 대전 서울 20260512 100000 --ncard-index 1 --train-type ktx

응답의 train_id 를 복사해 reserve 에 같은 --ncard-index 를 붙여 예약한다.

python3 scripts/ktx_booking.py reserve 대전 서울 20260512 100000 \
  --train-id <train_id> \
  --ncard-index 1

--ncard-index 를 지정하면 --adults 등 승객 옵션은 무시되고 N카드 승객 1명으로 처리된다. --ncard-no 직접 입력도 지원하지만 셸 히스토리에 남을 수 있어 권장하지 않는다. 결제는 자동화하지 않는다.

N카드 기능은 korail2-ncard 패키지가 필요하다. 없으면 해당 커맨드 실행 시 설치 안내가 출력된다.

6. Inspect or cancel

취소는 대상 예약을 다시 조회해 식별한 뒤에만 진행한다.

python3 scripts/ktx_booking.py reservations
python3 scripts/ktx_booking.py cancel <reservation_id>

Done when

  • 조회면 열차 후보가 정리되어 있다
  • 좌석 상세 확인이면 호차별 남은 좌석번호와 필요한 꿀팁 조건이 정리되어 있다
  • 예약이면 예약 결과와 제한 시간이 확인되어 있다
  • 취소면 어떤 예약을 취소했는지 남아 있다

Failure modes

  • 로그인 실패
  • 매진
  • Korail anti-bot 규칙 변경

Notes

  • scripts/ktx_booking.py 는 upstream korail2 anti-bot 회귀를 보완하는 helper 다
  • korail2 는 KTX/Korail 전용 표면이라 train type 과 passenger model 이 분명하다
  • 결제 완료까지는 자동화하지 않는다
  • aggressive polling 은 피한다