kleague-results
nomadamas/k-skill
Query K League match results and standings by date or team using official JSON endpoints.
What is kleague-results?
Fetches Korean K League (K리그1/K리그2) match results and current standings from official JSON endpoints. Use this when you need to look up game scores, schedules, or league standings for a specific date or team.
- Retrieve K League match results by date (YYYY-MM-DD format)
- Filter results by team name, full name, or team code (e.g., FC서울, K09)
- Fetch current league standings alongside match results
- Support both K리그1 and K리그2 queries
- Normalize raw JSON into human-readable summaries
- Handle pre-match schedules and completed matches
How to install kleague-results
npx skills add https://github.com/nomadamas/k-skill --skill kleague-results- Node.js 18 or higher
- kleague-results npm package (installed globally via npm install -g kleague-results)
How to use kleague-results
- 1.Install the package globally if not already present: npm install -g kleague-results
- 2.Call getKLeagueSummary() with a date in YYYY-MM-DD format
- 3.Optionally specify league (K리그1 or K리그2, defaults to K리그1) and team filter
- 4.Optionally set includeStandings: true to fetch current standings
- 5.Parse the returned JSON summary with normalized match results and standings
Use cases
- Check today's K League 1 match results and current standings
- Look up a specific team's game on a given date with league position
- Query K League 2 results for a particular date
- Filter match results by team to see only relevant games
- Get scoreboard summary for multiple matches on one date
- K League fans and analysts
- Sports journalists covering Korean football
- Developers building K League data applications
- Anyone tracking specific team performance
kleague-results FAQ
Use YYYY-MM-DD format (e.g., 2026-03-22). Convert relative dates like 'today' or 'yesterday' to absolute dates before querying.
Yes. Provide a team name (서울), full name (FC서울), or team code (K09) to filter results to only that team's matches.
The skill will return scheduled match information instead of results. Once matches are completed, scores will be included.
Use the full team name (FC서울 vs 서울 이랜드) or team code (K09) to avoid ambiguity when short names could match multiple teams.
The kleague-results package will need to be updated to handle structural changes in the official endpoints.
Full instructions (SKILL.md)
Source of truth, from nomadamas/k-skill.
name: kleague-results description: 케이리그 경기 결과와 현재 순위를 날짜/팀 기준으로 조회한다. 공식 JSON 엔드포인트와 kleague-results npm 패키지를 사용한다. license: MIT metadata: category: sports locale: ko-KR phase: v1
K League Results
What this skill does
공식 K리그 JSON 표면으로 특정 날짜의 K리그1/K리그2 경기 결과를 조회하고, 필요하면 특정 팀(예: FC서울, 서울 이랜드, 팀 코드 K09)만 필터링한 뒤 현재 순위까지 함께 정리한다.
When to use
- "오늘 K리그1 경기 결과 알려줘"
- "2026-03-22 FC서울 경기 결과랑 현재 순위 보여줘"
- "2026-03-22 K리그2 결과 정리해줘"
Prerequisites
- Node.js 18+
npm install -g kleague-results
Inputs
- 날짜:
YYYY-MM-DD - 리그:
K리그1또는K리그2(기본값은K리그1) - 선택 사항: 팀명, 풀네임, 팀 코드 (
서울,FC서울,K09등)
Workflow
0. Install the package globally when missing
npm root -g 아래에 kleague-results 가 없으면 HTML scraping 으로 우회하지 말고 먼저 전역 Node 패키지 설치를 시도한다.
npm install -g kleague-results
1. Fetch the official K League JSON
이 스킬은 HTML 크롤링 대신 아래 공식 JSON 엔드포인트를 사용한다.
- 일정/결과:
https://www.kleague.com/getScheduleList.do - 팀 순위:
https://www.kleague.com/record/teamRank.do
GLOBAL_NPM_ROOT="$(npm root -g)" node --input-type=module - <<'JS'
import path from "node:path";
import { pathToFileURL } from "node:url";
const entry = pathToFileURL(
path.join(process.env.GLOBAL_NPM_ROOT, "kleague-results", "src", "index.js"),
).href;
const { getKLeagueSummary } = await import(entry);
const summary = await getKLeagueSummary("2026-03-22", {
leagueId: "K리그1",
team: "FC서울",
includeStandings: true,
});
console.log(JSON.stringify(summary, null, 2));
JS
2. Normalize for humans
원본 JSON을 그대로 던지지 말고 아래 기준으로 정리한다.
- 홈팀 vs 원정팀
- 경기 시간 / 경기 종료 여부
- 스코어
- 현재 순위
- 요청 팀이 있으면 해당 팀 경기만 필터링
3. Keep the answer compact
요청이 scoreboard 면 경기별 한 줄 요약부터 준다. 특정 팀 요청이면 그 팀 경기와 현재 순위만 먼저 보여준다.
Done when
- 날짜 기준 경기 요약이 있다
- 팀 요청이면 해당 팀 경기만 남아 있다
- 현재 순위가 같이 정리되어 있다
Failure modes
- K리그 사이트가
getScheduleList.do또는teamRank.do응답 구조를 바꾸면 패키지 수정이 필요하다 - 경기 전 날짜면 결과 대신 예정 상태가 반환될 수 있다
서울처럼 짧은 이름만 주면 리그에 따라FC서울/서울 이랜드구분이 필요할 수 있다
Notes
- 이 스킬은 조회 전용이다
- 사용자의 "오늘/어제" 요청은 항상 절대 날짜(
YYYY-MM-DD)로 변환해서 실행한다 - 패키지를 새로 추가한 상태라면 머지 후 npm publish(Changesets 기반)를 진행해야 전역 설치 흐름이 살아난다
- 자세한 사용 예시는
docs/features/kleague-results.md와packages/kleague-results/README.md를 따른다
Related skills
More from nomadamas/k-skill and the wider catalog.

korea-weather
Query South Korea weather forecasts via KMA API proxy without managing API keys directly.

korean-character-count
Deterministic Korean text character, line, and byte counting for form limits and self-introductions.

korean-cinema-search
CGV, 메가박스, 롯데시네마 영화관 검색, 상영작, 시간표, 잔여석 조회가 필요할 때 사용한다.

korean-jangbu-for
Korean business ledger automation for startups, freelancers, and sole proprietors—import, tag, and generate tax reports.

korean-law-search
Search Korean statutes, articles, precedents, interpretations, and local ordinances via proxy—no API key needed.

korean-marathon-schedule
고러닝과 대한철인3종협회 공개 표면으로 한국 마라톤·철인3종 경기 일정, 장소, 신청 마감일, 종목을 조회한다.