bunjang-cli
星标3
分支1
更新时间2026年3月31日 16:54
번개장터를 CLI로 검색, 상세조회, 찜, 채팅, 대량수집하는 도구를 사용할 때 참고하는 사용 스킬
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
번개장터를 CLI로 검색, 상세조회, 찜, 채팅, 대량수집하는 도구를 사용할 때 참고하는 사용 스킬
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
| name | bunjang-cli |
| description | 번개장터를 CLI로 검색, 상세조회, 찜, 채팅, 대량수집하는 도구를 사용할 때 참고하는 사용 스킬 |
bunjang-cli를 이용해 번개장터에서 다음 작업을 수행한다.
npx bunjang-cli ... 형식으로 실행한다.auth login은 headful 브라우저를 띄운 뒤 현재 터미널이 TTY 상태여야 하고, 로그인 완료 후 터미널에서 Enter를 눌러야 끝난다. 비-TTY 실행에서는 로그인 브라우저만 뜨고 완료 처리가 멈출 수 있으므로 interactive/TTY 세션으로 실행한다.--start-page, --pages, --max-items, --with-detail, --output을 우선 활용한다.--ai --output <directory>를 사용해 items-<n>.toon chunk를 만든다.sourcePage 또는 summary.raw.page 값으로 페이지 기원을 확인한다.searchitem get / item listfavorite listfavorite addfavorite remove--json을 사용해서 구조를 확인한다.remove -> add 또는 add -> remove 식으로 왕복 확인한다.--output 파일이 실제로 생성되었는지와 summary/detail/error 구조를 함께 확인한다.npx bunjang-cli auth login
npx bunjang-cli auth logout
npx bunjang-cli --json auth status
auth login은 브라우저에서 로그인 후 터미널로 돌아와 Enter를 눌러야 성공 처리된다.npx bunjang-cli search "갤럭시 s25 울트라"
npx bunjang-cli search "갤럭시 s25 울트라" --price-min 900000 --price-max 1100000
npx bunjang-cli search "갤럭시 s25 울트라" --sort price_asc
npx bunjang-cli search "갤럭시 s25 울트라" \
--start-page 1 \
--pages 30 \
--max-items 300 \
--with-detail \
--concurrency 8 \
--output artifacts/galaxy-s25-ultra-300-with-detail.json
npx bunjang-cli search "갤럭시 s25 울트라" \
--start-page 1 \
--pages 30 \
--max-items 300 \
--with-detail \
--ai \
--output artifacts/galaxy-s25-ultra-ai
--ai는 items-1.toon ... items-n.toon chunk 파일을 만든다.--ai에서는 --output이 파일이 아니라 디렉토리여야 한다.@toon-format/toon, 토큰 수 계산은 gpt-tokenizer의 gpt-5 tokenizer 기준이다.npx bunjang-cli item get 396049093
npx bunjang-cli --json item list --ids 396049093,395641230,394447826
npx bunjang-cli favorite add 396049093
npx bunjang-cli favorite remove 396049093
npx bunjang-cli --json favorite list
npx bunjang-cli --json chat list
npx bunjang-cli --json chat start 396049093 --message "안녕하세요"
npx bunjang-cli --json chat send 84191651 --message "상품 상태 괜찮을까요?"
npx bunjang-cli --json purchase prepare 396049093
npx bunjang-cli --json purchase start 396049093
npx bunjang-cli search "갤럭시 s24 울트라" \
--sort date \
--start-page 1 \
--pages 30 \
--max-items 300 \
--with-detail \
--concurrency 8 \
--output artifacts/galaxy-s24-ultra-300-with-detail.json
그 다음:
auth login으로 로그인search로 후보 수집item get 또는 --with-detail로 본문 확보favorite add로 저장chat start 또는 chat send로 판매자 문의npx bunjang-cli --json auth statusnpx bunjang-cli --json search "<검색어>" --max-items 5id 하나를 골라 npx bunjang-cli --json item get <id>npx bunjang-cli --json favorite listid에 대해 favorite add / favorite remove를 왕복 실행transportUsed, 핵심 필드, before/after 변화를 확인sourcePage가 여러 페이지에 걸쳐 섞여 있는지 확인chat start는 상품 페이지에서 새 대화를 여는 용도이고, chat send는 기존 threadId가 있을 때 사용한다.purchase start는 최종 자동 구매확정까지 가지 않도록 설계되어 있다.