PluginBench
Skill
Review
Audit score 70

kbo-results

nomadamas/k-skill

Fetch KBO game schedules and results for any date using the kbo-game package.

What is kbo-results?

Retrieves Korean Baseball Organization (KBO) game schedules, scores, and match status for a specific date. Use this when users ask for today's KBO games, yesterday's scores, or a date-specific scoreboard.

  • Fetches KBO game schedules and results for a given date in YYYY-MM-DD format
  • Normalizes raw game data into human-readable summaries with home/away teams, scores, and match status
  • Filters results by specific team name when requested
  • Converts relative dates (today, yesterday) to absolute dates automatically
  • Returns compact one-line summaries per game by default

How to install kbo-results

npx skills add https://github.com/nomadamas/k-skill --skill kbo-results
Prerequisites
  • Node.js 18 or higher
  • kbo-game npm package (installed globally via npm install -g kbo-game)
Claude Code
Cursor
Windsurf
Cline

How to use kbo-results

  1. 1.Install kbo-game globally if not already present: npm install -g kbo-game
  2. 2.Provide the date in YYYY-MM-DD format (e.g., 2026-03-25)
  3. 3.Optionally specify a team name to filter results
  4. 4.The skill fetches games for that date and returns a normalized summary
  5. 5.Review the compact one-line summaries per game, or request raw JSON if needed

Use cases

Good for
  • Show today's KBO game results and schedules
  • Display yesterday's game scores for a specific team like Hanhwa Eagles
  • Retrieve the full KBO scoreboard for a specific date like 2026-04-01
  • Filter KBO games to show only matches for a particular team
  • Get match status and scores during live KBO games
Who it's for
  • Baseball fans following KBO
  • Sports analysts tracking Korean baseball
  • Users in Korean locale seeking KBO information
  • Developers building KBO-integrated applications

kbo-results FAQ

What date format should I use?

Use YYYY-MM-DD format (e.g., 2026-03-25). The skill automatically converts relative dates like 'today' or 'yesterday' to absolute dates.

Can I filter results by team?

Yes, you can optionally specify a team name and the skill will return only games involving that team.

What happens if there are no games on a given date?

Off-season dates or dates with no scheduled games will return empty results.

Will the skill work if the KBO website changes?

If the kbo-game package breaks due to KBO website changes, the skill may fail. It will not fall back to unofficial scoreboard sources.

Can I get raw JSON data?

Yes, you can request raw JSON output in addition to or instead of the human-readable summary.

Full instructions (SKILL.md)

Source of truth, from nomadamas/k-skill.


name: kbo-results description: Fetch KBO game schedules and results for a specific date with the kbo-game npm package. Use when the user asks for today's KBO games, yesterday's scores, or a date-specific scoreboard. license: MIT metadata: category: sports locale: ko-KR phase: v1

KBO Results

What this skill does

kbo-game 패키지로 특정 날짜 KBO 경기 정보를 가져와 경기 일정, 스코어, 상태를 요약한다.

When to use

  • "오늘 KBO 경기 결과 알려줘"
  • "어제 한화 경기 스코어 보여줘"
  • "2026-04-01 KBO 일정 정리해줘"

Prerequisites

  • Node.js 18+
  • npm install -g kbo-game

Inputs

  • 날짜: YYYY-MM-DD
  • 선택 사항: 특정 팀명

Workflow

0. Install the package globally when missing

npm root -g 아래에 kbo-game 이 없으면 다른 구현으로 우회하지 말고 전역 Node 패키지 설치를 먼저 시도한다.

npm install -g kbo-game

패키지가 없다는 이유로 다른 비공식 scoreboard 소스를 자동 채택하지 않는다.

1. Fetch the date

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, "kbo-game", "dist", "index.js"),
).href;
const { getGame } = await import(entry);

const date = "2026-03-25";
const games = await getGame(new Date(`${date}T00:00:00+09:00`));
console.log(JSON.stringify(games, null, 2));
JS

kbo-game@0.0.2 기준 실제 export는 getGame 하나이며, 문자열 날짜("2026-03-25")를 직접 넘기면 실패한다. 항상 Date 객체로 변환해서 호출한다. 전역 설치를 기본으로 쓰므로 inline snippet에서는 전역 npm root 아래 entry file을 직접 import 한다.

2. Normalize for humans

원본 데이터를 그대로 던지지 말고 아래 기준으로 정리한다.

  • 홈팀 vs 원정팀
  • 진행 상태 또는 경기 종료 여부
  • 스코어
  • 필요한 경우 특정 팀만 필터링

3. Keep the answer compact

사용자가 scoreboard를 원하면 경기별 한 줄 요약부터 준다.

Done when

  • 날짜 기준 전체 경기 요약이 있다
  • 팀 필터 요청이면 해당 팀 경기만 남아 있다
  • raw JSON이 필요하면 별도로 제공할 수 있다

Failure modes

  • KBO 사이트 변경으로 패키지 응답이 깨질 수 있다
  • 비시즌 날짜는 빈 결과가 올 수 있다

Notes

  • 이 스킬은 조회 전용이다
  • 사용자 기준 "오늘/어제" 같은 상대 날짜는 항상 절대 날짜로 변환해서 실행한다