OpenClaw
Deploy a managed OpenClaw agent in 60 seconds
Launch on Hostinger →
Hermes Agent
Run your Hermes agent, fully managed
Launch on Hostinger →
Apify
6,000+ web scrapers for your agent, free to start
Try Apify free →
Firecrawl
Crawl and scrape any site into clean data
Try Firecrawl free →
Context.dev
One API to scrape, enrich, and extract the web
Start building free →
SetupClaw
Done-for-you OpenClaw for founders and teams
Get it set up for you →
DataForSEO
SEO data APIs for your agent, $1 free credit
Try DataForSEO free →
Your product here
Reach thousands of AI builders a month
Learn more →
Claude Market
Menu
SkillsMCPPluginsSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Claude Market
SkillsMCPPluginsSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Skills/nomadamas/k-skill/hipass-receipt
hipass-receipt logo

hipass-receipt

nomadamas/k-skill
2K installs6K stars
Run it on Hostinger, 20% off →Your friend gets 20% off too, using this linkFree API →|View on GitHub|Create your own skill →

Installation

npx skills add https://github.com/nomadamas/k-skill --skill hipass-receipt

Summary

공식 하이패스 홈페이지에서 사용자가 직접 로그인한 Chrome 세션을 재사용해 사용내역 조회와 영수증 팝업 진입을 돕는다.

SKILL.md

하이패스 영수증 발급

What this skill does

공식 하이패스 홈페이지(https://www.hipass.co.kr)에서 이미 로그인된 브라우저 세션을 재사용해:

  • 사용내역 조회
  • 특정 행 선택
  • 영수증 팝업/출력 화면 진입
  • 세션 만료 감지 후 재로그인 안내

까지를 반자동으로 돕는다.

Hard limits

  • 로그인은 반드시 사용자가 직접 해야 한다.
  • 이 스킬은 로그인된 세션에서만 동작한다.
  • ID/PW, 인증코드, OTP, 공동인증서 절차를 자동 입력하지 않는다.
  • JSESSIONID 쿠키만 저장해 장시간 재사용하는 방식은 지원하지 않는다.
  • 권장 세션 형태는 Playwright persistent context 또는 Chrome user-data-dir / remote-debugging 재사용이다.
  • 세션이 만료되면 즉시 중단하고 다시 로그인해야 한다.

Why this design

현재 공개 페이지 기준으로:

  • 로그인 페이지와 메인 페이지에 session_time=1200 이 노출된다.
  • 세션 연장은 /comm/sessionCheck.do
  • 세션 종료는 /comm//sessionout.do
  • 미로그인/세션 종료 보호 응답은 mgs_type 11/12 후 /comm/lginpg.do 로 이동한다.
  • 사용내역 조회는 /usepculr/InitUsePculrTabSearch.do → hpForm submit → /usepculr/UsePculrTabSearchList.do 흐름이다.
  • 영수증은 /usepculr/UsePculrReceiptPrint.do 팝업 진입으로 이어진다.

즉 v1은 “로그인된 Chrome 세션 재사용” 이 가장 현실적이다.

Prerequisites

  • macOS 또는 Chrome 실행 가능한 환경
  • npm install hipass-receipt 또는 이 레포에서 npm install (playwright-core 포함)
  • Chrome 원격 디버깅 포트 사용 가능
  • 사용자가 직접 하이패스 로그인 가능

Workflow

1. 전용 Chrome 프로필로 로그인 브라우저를 띄운다

hipass-receipt chrome-command --profile-dir "$HOME/.cache/k-skill/hipass-chrome" --debugging-port 9222

위 명령이 출력한 Chrome 실행문으로 브라우저를 띄운 뒤, 사용자가 직접 https://www.hipass.co.kr/comm/lginpg.do 에 로그인한다.

2. 사용내역을 조회한다

hipass-receipt list \
  --cdp-url http://127.0.0.1:9222 \
  --start-date 2026-04-01 \
  --end-date 2026-04-07 \
  --page-size 30
  • 카드사/암호화 카드번호를 알고 있으면 --encrypted-card-number 등으로 더 좁힐 수 있다.
  • --encrypted-card-number 는 CLI의 기존 --ecd-no 별칭이다.
  • 결과 JSON에서 rowIndex 를 확인한다.

3. 특정 row의 영수증 팝업을 연다

hipass-receipt receipt \
  --cdp-url http://127.0.0.1:9222 \
  --start-date 2026-04-01 \
  --end-date 2026-04-07 \
  --row-index 1
  • 선택한 행의 영수증/출력 control 을 클릭한다.
  • 팝업이 열리면 URL/title 을 반환한다.

Response policy

  • “로그인 필수”, “세션 만료 시 재로그인 필요”를 항상 명확히 적는다.
  • 하이패스 계정 비밀번호를 받아 저장하거나 새 env var를 만들지 않는다.
  • 세션이 만료됐으면 즉시 실패시키고 /comm/lginpg.do 재로그인만 안내한다.
  • v1 범위를 넘어서는 완전 무인 로그인 유지/백그라운드 재인증은 약속하지 않는다.

Verification

  • 자동 검증: fixture 기반 query/parser/session-detection 테스트
  • smoke 검증: hipass-receipt fixture-demo --fixture ...
  • 최종 실서비스 검증: 로그인된 세션으로 수동 smoke test

Done when

  • 로그인된 세션으로 사용내역 조회가 가능하다.
  • 특정 row를 선택해 영수증 팝업 진입을 시도할 수 있다.
  • 세션 종료 응답을 감지하면 재로그인을 요구한다.

Score

0–100
65/ 100

Grade

C

Popularity17/30

2,323 installs — growing adoption. Source repo has 5,589 GitHub stars.

Completeness27/30

Documented: full SKILL.md body, description, one-line install. Missing: category/license metadata.

Trust15/25

Community skill with a public GitHub source repository you can review.

Freshness6/15

No update timestamp is tracked for this skill in our catalog.

Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Hipass Receipt skill score badge previewScore badge

Markdown

[![Hipass Receipt skill](https://www.claudemarket.ai/skills/nomadamas/k-skill/hipass-receipt/badges/score.svg)](https://www.claudemarket.ai/skills/nomadamas/k-skill/hipass-receipt)

HTML

<a href="https://www.claudemarket.ai/skills/nomadamas/k-skill/hipass-receipt"><img src="https://www.claudemarket.ai/skills/nomadamas/k-skill/hipass-receipt/badges/score.svg" alt="Hipass Receipt skill"/></a>

Hipass Receipt FAQ

How do I install the Hipass Receipt skill?

Run “npx skills add https://github.com/nomadamas/k-skill --skill hipass-receipt” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.

What does the Hipass Receipt skill do?

공식 하이패스 홈페이지에서 사용자가 직접 로그인한 Chrome 세션을 재사용해 사용내역 조회와 영수증 팝업 진입을 돕는다. The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Hipass Receipt skill free?

Yes. Hipass Receipt is a free, open-source skill published from nomadamas/k-skill. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Hipass Receipt work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Hipass Receipt works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Recommended skills

Browse all →
find-skills logo

find-skills

vercel-labs/skills

2.8M installsInstall
grill-me logo

grill-me

mattpocock/skills

753K installsInstall
frontend-design logo

frontend-design

anthropics/skills

741K installsInstall
grill-with-docs logo

grill-with-docs

mattpocock/skills

639K installsInstall
agent-browser logo

agent-browser

vercel-labs/agent-browser

628K installsInstall
improve-codebase-architecture logo

improve-codebase-architecture

mattpocock/skills

615K installsInstall

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

GuideBest Openclaw Skills 2026GuideHow To Evaluate Openclaw Skill Before InstallingGuideOpenclaw Skills Complete Guide

Skills by category

FrontendBackend & APIsTesting & QASecurityDevOps & CI/CDMCP & ToolingAutomationData & Analysis+20 more

MCP servers by category

AI & MLDeveloper ToolsVector & MemoryFiles & DocsDatabasesFinance & PaymentsBrowser & ScrapingCommunication+8 more

Plugins by category

developmentproductivitycommunicationdesignsecuritydatabaseworkflowcompliance+34 more

The Agent Stack

Weekly Claude Code, Agent SDK, and MCP moves worth your time — free.

Claude Market

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

Independent project, not affiliated with Anthropic.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Plugins

More

  • Submit a Tool
  • Create a Skill
  • Advertise
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy
© 2026 Claude Market · Not affiliated with Anthropic
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed