npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

court-payment-order-assistant

v0.2.3

Published

Korean court payment order application intake, drafting, and browser handoff helpers for k-skill

Downloads

218

Readme

court-payment-order-assistant

Korean electronic litigation payment-order intake, draft, and browser handoff helpers for the court-payment-order-assistant k-skill.

Scope

This package helps an agent ask for required party/claim/evidence information, prepare a reviewable 지급명령 draft checklist, and hand off reversible browser-entry steps for the official court e-filing portal.

It does not provide legal advice and does not perform login, certificate authentication, electronic signature, payment, or final submission.

Usage

const { buildPaymentOrderDraft, buildBrowserHandoff } = require("court-payment-order-assistant")

const input = {
  creditor: { name: "홍길동", address: "서울특별시 강남구 테헤란로 1" },
  debtor: { name: "김채무", address: "서울특별시 서초구 반포대로 2" },
  claim: {
    amount: "3500000",
    cause: "2026-05-01 물품대금 미지급",
    dueDate: "2026-06-01",
    demand: "채무자는 채권자에게 3,500,000원 및 지연손해금을 지급하라."
  },
  evidence: [{ title: "계약서" }, { title: "송금내역" }]
}

const draft = buildPaymentOrderDraft(input)

console.log(draft.reviewChecklist)
console.log(buildBrowserHandoff(input).stopRules)

Public access path

  • Official portal: https://ecfs.scourt.go.kr/psp/index.on
  • Observed public surface: login/register, 서류제출, 민사 서류, and login-required document drafting boundary.
  • Primary browser: BrowserOS/runtime CDP, attached to the user-launched BrowserOS GUI session (default http://127.0.0.1:9100). The skill never launches BrowserOS and never runs headless.
  • Fallback: manual browser handoff with exact field values when BrowserOS CDP is unavailable or authentication/security modules appear.

Boundaries

  • Stop before electronic signature, filing-fee/payment screens, and final submit.
  • User handles all login, certificate, CAPTCHA/security module, payment, and final review steps.
  • The package returns drafts/checklists; it does not decide whether filing is legally appropriate.
  • BrowserOS is used as a GUI/session browser over CDP, not as a headless backend, login solver, CAPTCHA bypass, payment solver, or stealth scraping browser.
  • Handoff may describe reversible field entry only and must stop before irreversible steps.