Pulls Korean Lotto draw results using the k-lotto npm package. You can check the latest round, look up historical draws by number, get detailed payout breakdowns, and validate your ticket against winning numbers. It's read-only and doesn't store anything. The workflow is straightforward: install the package globally, set NODE_PATH, then run one-liners to fetch results or check matches. Aimed at Korean users who want quick lottery lookups without manually scraping the Donghang Lottery site. One thing to watch: it depends on upstream HTML parsing for latest rounds, so schema changes could break it.
npx -y skills add nomadamas/k-skill --skill lotto-results --agent claude-codeInstalls into .claude/skills of the current project.
k-lotto 패키지로 동행복권 로또 최신 회차, 특정 회차, 상세 당첨 결과, 번호 대조를 처리한다.
npm install -g k-lottoexport NODE_PATH="$(npm root -g)"npm installnode -e 'require("k-lotto")' 가 실패하면 다른 구현으로 우회하지 말고 전역 Node 패키지 설치를 먼저 시도한다.
npm install -g k-lotto
export NODE_PATH="$(npm root -g)"
패키지가 없다는 이유로 HTML 파서를 다시 짜거나 다른 비공식 소스를 찾지 않는다.
NODE_PATH="$(npm root -g)" node - <<'JS'
const lotto = require("k-lotto");
lotto.getLatestRound().then((round) => console.log(round));
JS
NODE_PATH="$(npm root -g)" node - <<'JS'
const lotto = require("k-lotto");
lotto.getDetailResult(1216).then((result) => console.log(JSON.stringify(result, null, 2)));
JS
NODE_PATH="$(npm root -g)" node - <<'JS'
const lotto = require("k-lotto");
lotto.checkNumber(1216, ["3", "10", "14", "15", "23", "24"])
.then((result) => console.log(JSON.stringify(result, null, 2)));
JS
juliusbrussee/caveman
mattpocock/skills
shadcn/improve
obra/superpowers
forrestchang/andrej-karpathy-skills
vercel-labs/skills