
Market Kurly Search
Look up Market Kurly product prices, discounts, stock, and product links without logging in when you need quick Korean grocery retail checks.
Overview
Market Kurly Search is an agent skill for the Validate phase that queries Market Kurly’s public search and product surfaces to return prices, discounts, stock status, and links without login.
Install
npx skills add https://github.com/nomadamas/k-skill --skill market-kurly-searchWhat is this skill?
- Uses Kurly’s non-login search and normal-search API surfaces for keyword product lookup
- Returns current price, discount flag, sold-out status, delivery type, and product URLs
- Clarifies ambiguous queries by showing top 2–3 candidates and asking which item to price
- Explicitly read-only: no cart, order, or payment automation
- Documents official search list, count, and goods detail URL patterns
- Uses 3 documented official surfaces: normal-search, search count, and goods detail URLs
Adoption & trust: 1.8k installs on skills.sh; 5.4k GitHub stars; 3/3 security scanners passed (skills.sh audits).
What problem does it solve?
You need current 마켓컬리 prices and stock for a product keyword but don’t want to log in, automate checkout, or guess which SKU matches a vague query.
Who is it for?
Korean-locale agents answering quick grocery price and availability questions from builders or users comparing Kurly shelf offers.
Skip if: Automating orders, carts, or payments; confirming address-specific delivery eligibility; or member-only personalized pricing and wishlists.
When should I use this skill?
User asks 마켓컬리 prices, searches 컬리 for a product, wants sold-out status with a link, or needs a fast non-login price check.
What do I get? / Deliverables
You get confirmed product candidates with current price, discount and sold-out flags, delivery type, and kurly.com goods links suitable for sharing or further manual purchase.
- Ranked product candidates with current price and discount state
- Sold-out and delivery-type fields plus kurly.com goods links
Recommended Skills
Journey fit
Canonical shelf is Validate because the skill answers “what does it cost right now?” and stock status before purchase decisions—not full competitive research or checkout. Pricing subphase fits read-only price, discount, and availability queries that inform whether an offer is worth building or buying around.
How it compares
Use for read-only Kurly API lookup instead of brittle browser scraping or full retail checkout bots.
Common Questions / FAQ
Who is market-kurly-search for?
Solo builders and agent authors who serve Korean retail shoppers or internal tools that need Kurly list prices and stock signals without account sessions.
When should I use market-kurly-search?
Use it in Validate when checking pricing before a purchase or offer decision, and in Idea when sanity-checking market shelf prices for a product keyword; also anytime a user asks “how much on 컬리?” with a search term.
Is market-kurly-search safe to install?
Review the Security Audits panel on this Prism page and treat network calls to Kurly APIs as third-party data access; the skill avoids cart and payment actions by design.
SKILL.md
READMESKILL.md - Market Kurly Search
# Market Kurly Search ## What this skill does 마켓컬리 웹앱이 실제로 사용하는 **비로그인 검색/상품 상세 표면**을 사용해 아래 흐름을 처리한다. - 키워드로 상품 후보를 검색한다. - 현재 가격과 할인 여부를 확인한다. - 품절 여부와 배송 타입을 확인한다. - 상품 링크를 함께 반환한다. - **주문/장바구니 같은 액션은 하지 않는다. 조회형으로만 답한다.** ## When to use - "마켓컬리에서 우유 얼마야?" - "컬리에서 딸기 검색해줘" - "이 상품 품절인지 보고 링크도 줘" - "지금 컬리 가격만 빠르게 보고 싶어" ## When not to use - 주문/장바구니/결제까지 자동화해야 하는 경우 - 주소 기반 배송 가능 여부나 회원 전용 가격을 확정해야 하는 경우 - 로그인 세션이 필요한 개인화 추천/찜 정보를 조회해야 하는 경우 ## Prerequisites - 인터넷 연결 - `node` 18+ - 이 저장소의 `market-kurly-search` package 또는 동일 로직 ## Required inputs ### 1. Ask for a product keyword if it is missing 상품명 또는 검색어가 없으면 먼저 물어본다. - 권장 질문: `찾을 마켓컬리 상품명이나 검색어를 알려주세요. 예: 우유, 딸기, 닭가슴살` - 너무 넓으면: `검색어가 너무 넓어요. 브랜드나 용량까지 같이 알려주시면 가격 후보를 더 정확히 추릴 수 있어요.` ### 2. Confirm which candidate they want when the query is ambiguous 검색 결과가 여러 개면 상위 2~3개만 보여주고 다시 확인받는다. - 권장 질문: `후보가 여러 개예요. 아래 상품 중 어떤 상품 가격을 볼까요?` - 응답에는 상품명 + 현재 가격 + 품절 여부 + 링크를 같이 붙인다. ## Official Market Kurly surfaces - search list: `https://api.kurly.com/search/v4/sites/market/normal-search?keyword=<keyword>&page=1` - search count: `https://api.kurly.com/search/v3/sites/market/normal-search/count?keyword=<keyword>&filters=&allow_replace=true` - product detail page: `https://www.kurly.com/goods/<productNo>` ## Workflow ### 1. Search by keyword first ```js const { searchProducts } = require("market-kurly-search") const result = await searchProducts("우유") console.log(result.items.slice(0, 3)) ``` 검색 결과에서는 아래 필드를 우선 본다. - 상품명 - 현재 가격 (`discountedPrice` 우선, 없으면 `salesPrice`) - 할인율 - 품절 여부 - 배송 타입 - 상품 링크 ### 2. Use the count endpoint when the result set is broad ```js const { countProducts } = require("market-kurly-search") const count = await countProducts("우유") console.log(count) ``` 후보가 너무 많으면 `count` 를 먼저 보여 주고 검색어를 좁히라고 안내한다. ### 3. Use the goods page detail as a fallback or follow-up lookup ```js const { getProductDetail } = require("market-kurly-search") const detail = await getProductDetail(5063110) console.log(detail) ``` `goods/<productNo>` HTML 안의 `__NEXT_DATA__` 에서 상품명, 가격, 품절 여부, 배송 타입을 추출한다. ### 4. Respond conservatively 응답은 짧고 보수적으로 정리한다. - 상품명 - 현재 가격 - 필요하면 원가/할인가 여부 - 품절 여부 또는 판매 가능 여부 - 상품 링크 - **가격/품절/노출 정보는 시점에 따라 달라질 수 있으니 조회 시각 기준 참고값이라고 분명히 말한다.** ## Done when - 상품 키워드를 확인했다. - 검색 결과에서 후보와 현재 가격을 최소 1개 이상 반환했다. - 필요하면 상품 상세 페이지로 보조 확인했다. - 주문/장바구니 같은 범위 밖 액션은 하지 않았다. ## Failure modes - 검색어가 너무 넓으면 후보가 과도하게 많아질 수 있다. - 가격/품절/배송 문구는 시점에 따라 달라질 수 있다. - 현재 확인한 표면은 **공식 개발자 Open API가 아니라 웹이 쓰는 공개 표면** 이므로 스키마가 바뀌면 깨질 수 있다. - 회원 전용/주소 전용 정보는 비로그인 조회만으로 확정할 수 없다. ## Notes - 조회형 스킬이다. - 비로그인 공개 표면 우선 원칙을 유지한다. - 주문/장바구니/로그인 요구 기능은 시도하지 않는다.