Help us improve
Share bugs, ideas, or general feedback.
From k-skill
Guides users through Bunjang marketplace tasks: search, detail view, bulk collection, and AI TOON export via the bunjang-cli CLI tool.
npx claudepluginhub nomadamas/k-skill --plugin k-skillHow this skill is triggered — by the user, by Claude, or both
Slash command
/k-skill:bunjang-searchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
upstream [`bunjang-cli`](https://www.npmjs.com/package/bunjang-cli) / [`pinion05/bunjangcli`](https://github.com/pinion05/bunjangcli) 를 사용해 번개장터에서 아래 흐름을 처리한다.
Searches and retrieves listings from Daangn (당근) used-goods marketplace using public Remix _data routes. Supports keyword and region-based search, detail view, and region ID resolution. Read-only, no login or transaction automation.
Orchestrates a 7-step C2C resale pipeline: photo recognition, price research, platform auth, listing card generation, auto-publish, schedule repricing, and auto-delist on sale. Activates when user wants to sell second-hand items.
Scrapes Facebook Marketplace listings (titles, prices, locations, seller info) via camoufox/camofox-browser with cookie injection and Playwright session management.
Share bugs, ideas, or general feedback.
upstream bunjang-cli / pinion05/bunjangcli 를 사용해 번개장터에서 아래 흐름을 처리한다.
npx --yes bunjang-cli ... 형식을 쓴다.auth login 은 headful 브라우저 + TTY / interactive 터미널이 필요하다.favorite / chat / purchase 는 선택적 로그인 플로우로만 안내한다.--start-page, --pages, --max-items, --with-detail, --output 조합을 우선 쓴다.--ai --output <directory> 로 .toon chunk 를 만든다.npx --yes bunjang-cli --help
npx --yes bunjang-cli --json auth status
npx --yes bunjang-cli --json search "아이폰" --max-items 3 --sort date
npx --yes bunjang-cli --json item get 354957625
npx --yes bunjang-cli auth login
npx --yes bunjang-cli auth logout
npx --yes bunjang-cli --json auth status
auth login 은 브라우저에서 로그인한 뒤 터미널로 돌아와 Enter 를 눌러야 완료된다.npx --yes bunjang-cli search "아이폰"
npx --yes bunjang-cli search "아이폰" --price-min 500000 --price-max 1200000
npx --yes bunjang-cli search "아이폰" --sort date
npx --yes bunjang-cli --json search "아이폰" --max-items 5
검색 결과는 광고/매입글/악세서리 노이즈가 섞이고, search summary 의 location 이 noisy 하거나 description / status 가 비어 있을 수 있다. 그래서 검색 단계는 제목/가격 중심 1차 triage 로만 쓴다.
description, status, 깔끔한 location 이 필요하면 반드시 item get 또는 --with-detail 이후 에만 판단한다.
npx --yes bunjang-cli item get 354957625
npx --yes bunjang-cli --json item get 354957625
npx --yes bunjang-cli --json item list --ids 354957625,354801707
상세조회에서는 아래 필드를 먼저 읽는다.
pricedescriptionlocationcategorystatussellerNamesellerItemCountsellerFollowerCountsellerReviewCountfavoriteCounttransportUsednpx --yes bunjang-cli search "아이폰" \
--start-page 1 \
--pages 5 \
--max-items 50 \
--sort date \
--with-detail \
--output artifacts/bunjang-iphone.json
검증할 때는 export 파일 생성 여부와 top-level items[] 안의 summary / detail / optional error 구조, 그리고 각 item 의 sourcePage 또는 summary.raw.page 를 같이 확인한다.
npx --yes bunjang-cli search "아이폰" \
--start-page 1 \
--pages 5 \
--max-items 50 \
--with-detail \
--ai \
--output artifacts/bunjang-iphone-ai
--ai 에서는 --output 이 파일이 아니라 디렉토리 여야 한다.items-1.toon 형태 chunk 로 저장된다.로그인된 interactive 세션에서만 아래 액션을 진행한다.
npx --yes bunjang-cli --json favorite list
npx --yes bunjang-cli --json favorite add 354957625
npx --yes bunjang-cli --json favorite remove 354957625
npx --yes bunjang-cli --json chat list
npx --yes bunjang-cli --json chat start 354957625 --message "안녕하세요"
npx --yes bunjang-cli --json chat send 84191651 --message "상품 상태 괜찮을까요?"
favorite list 로 세션을 먼저 확인하고, 같은 상품에 대해 favorite add / favorite remove 를 왕복 실행한다.chat start 는 상품 페이지에서 새 대화를 열 때, chat send 는 기존 thread 에 메시지를 보낼 때 쓴다.description / status / location 판단이 필요하면 item get 또는 --with-detail 로 상세를 먼저 읽는다.auth login 후 다시 진행" 이라고 분명히 말한다.