Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

res-price-compare资源价格比较

Agent Skill

res-price-compare 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

838

周安装

36

GitHub Stars

公开资料未说明

下载量

294
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:res-price-compare(资源价格比较)
来源仓库:https://github.com/molechowski/claude-skills
仓库路径:skills/res-price-compare
安装命令:
npx skills add https://github.com/molechowski/claude-skills --skill res-price-compare
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/molechowski/claude-skills --skill res-price-compare

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需确认权限与维护状态。
  • 使用前建议核实是否会触发联网、命令执行或文件读写操作。
  • res-price-compare 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Price Comparison — Polish Market

Iterative 5-round product price research on the Polish e-commerce market with warranty verification, shipping costs, and B2B analysis.

IMPORTANT: Load references/polish-market.md at startup — it contains the shop database, price comparators, and search patterns.

Architecture

ToolPurposeCost
WebSearchSearch for shops, prices, offersFree
WebFetchVerify prices on shop pages (primary)Free
scraplingFallback for sites that block WebFetchFree

No xAI — price comparison doesn't need X/Twitter.

Requirements

No external dependencies required. Skill runs on built-in Claude Code tools.

Optional dependencies:

  • scrapling — fallback for sites that block WebFetch (403, CAPTCHA, empty responses). Install: uv tool install 'scrapling[all]'
  • uv — to run uv run --with openpyxl python3 -c "..." for XLSX export

Workflow Overview

StepActionPurpose
1Parse queryPRODUCT, BUYER_TYPE, CATEGORY
2Round 1: DiscoveryCeneo, Allegro, Amazon.pl, general and specialist shops
3Gap analysisMissing shops, unverified prices, missing data
4Round 2: WebFetch shopsConfirm prices, stock levels, shipping
5Round 3: Warranty and shippingVerify warranty type, delivery costs
6Round 4: B2B and distributorsB2B portals, official distributors, statutory warranty
7Round 5: Final verificationRe-check cheapest, stock, coupons
8SynthesisComparison table, recommendation, summary
9ExportTXT, XLSX, HTML on request
10Expert modeAnswers from cache, no new searches

WebFetch with Scrapling Fallback

Every WebFetch call in this skill follows a two-tier pattern:

  1. Try WebFetch first (fast, no file I/O): WebFetch(url, prompt)
  2. If WebFetch fails (403, empty content, CAPTCHA page, or blocked response), retry using the auto-escalation protocol from cli-web-scrape:

1. scrapling extract get "URL" /tmp/scrapling-fallback.md → Read → validate content 2. If content is thin (JS-only shell, no data, mostly nav links) → scrapling extract fetch "URL" /tmp/scrapling-fallback.md --network-idle --disable-resources → Read → validate 3. If still blocked → scrapling extract stealthy-fetch "URL" /tmp/scrapling-fallback.md --solve-cloudflare 4. All tiers fail → skip shop and label "scrapling blocked"

Detection heuristics for blocked/thin responses:

  • HTTP 403 or "access denied" in response
  • Response body is empty or contains only navigation/cookie banners
  • Response contains CAPTCHA challenge (reCAPTCHA, hCaptcha, Cloudflare challenge page)
  • Response is a "please enable JavaScript" page or JS-disabled warning
  • HTTP 200 but no prices, specs, or product names — only nav links and footer (JS-rendered SPA)

If scrapling is not installed, fall back to the original behavior: skip the shop and label "WebFetch blocked".

Step 1: Parse Query

Extract from user query:

1a. PRODUCT

Product name to search. Include model, variant, part number.

1b. BUYER_TYPE

TypeDetectionConsequences
B2C"for home", "personal", no indicationStatutory warranty 24 mo. + voluntary warranty
B2B"for company", "VAT invoice", "business", "B2B"Statutory warranty may be excluded, manufacturer warranty is critical

Default: B2B (safer assumption — triggers more analysis)

1c. CATEGORY

Auto-detect based on product name. Load the appropriate specialist shop list from references/polish-market.md:

CategoryDetection PatternsExamples
VoIP/TelephonyYealink, Grandstream, Fanvil, SIP, DECT, VoIPYealink W76P
IT/NetworkingMikroTik, Ubiquiti, switch, router, AP, firewallMikroTik hAP ax3
Electronicsmonitor, laptop, computer, printer, tabletDell U2723QE
Officechair, desk, shredder, projectorErgohuman Elite
General(no match)Nespresso Vertuo

Step 2: Round 1 — Discovery

Query Generation

Generate 6-8 parallel queries:

  1. Ceneo: site:ceneo.pl "{PRODUCT}"
  2. Allegro: site:allegro.pl "{PRODUCT}"
  3. Amazon.pl: site:amazon.pl "{PRODUCT}"
  4. General prices: "{PRODUCT}" cena kupić
  5. Specialist shops: "{PRODUCT}" sklep (from category list)
  6. Price comparator: "{PRODUCT}" porównanie cen
  7. Reviews: "{PRODUCT}" opinie recenzje
  8. B2B: "{PRODUCT}" dystrybutor hurtownia (if BUYER_TYPE = B2B)

Parallel Execution

Run all WebSearch queries simultaneously (parallel tool calls).

Internal Notes After Round 1

Record (internally, NOT in output):

SHOPS_FOUND: [list of shops with prices]
SHOPS_MISSING: [from references/polish-market.md, not found]
PRICES_TO_VERIFY: [prices from snippets — need WebFetch]
WARRANTY_TO_CHECK: [shops without warranty type info]
LEADS: [URLs worth checking via WebFetch in Round 2]

Step 3: Gap Analysis

After Round 1, perform gap analysis:

GapCheckAction
No comparator dataDo we have Ceneo data?If not → WebFetch ceneo.pl
No specialist shopsHow many shops from category in polish-market.md?Search for missing ones
Prices from snippets onlyAny price confirmed via WebFetch?Plan WebFetch for top 10
No warranty dataHow many shops have warranty type info?Plan verification
No shipping dataHow many shops have delivery costs?Plan WebFetch of shipping pages
No marketplace dataWere Allegro / Amazon checked?Additional queries

Plan Round 2

Select top 8-12 URLs for WebFetch verification. Priority:

  1. Cheapest offers (price verification)
  2. Ceneo (lists many shops at once)
  3. Specialist shops without price
  4. Pages with warranty information

Step 4: Round 2 — WebFetch Shops

Rules

  1. Never repeat queries from Round 1
  2. WebFetch specific product pages — not homepages
  3. In parallel — run 4-6 WebFetch simultaneously
  4. Maximum 8-12 WebFetch in this round

Execution

For each URL from the list, apply the WebFetch with Scrapling Fallback pattern:

WebFetch(url, "Podaj: 1) dokładną cenę brutto, 2) dostępność/stan magazynowy,
  3) koszty wysyłki, 4) informacje o gwarancji (producenta czy sprzedawcy)")

If WebFetch returns 403, empty content, CAPTCHA, or a blocked response, follow the auto-escalation protocol (HTTP → validate content → Dynamic → Stealthy). Extract the same data points from the scrapling output.

If Ceneo is available, WebFetch the Ceneo page first — it provides a list of many shops at once.

Confidence Update

SourcePrice Confidence
WebSearch snippetLOW — price may be outdated
Ceneo listingMEDIUM — aggregator, but delays
WebFetch of shop pageHIGH — directly confirmed
Scrapling fallback of shop pageHIGH — directly confirmed (same as WebFetch)

Step 5: Round 3 — Warranty and Shipping

Goal

For each shop, establish:

  1. Warranty type: manufacturer / distributor / seller / unknown
  2. Shipping costs: courier, Paczkomat, free shipping (threshold)
  3. Delivery time: 24h, 48h, on order

Where to Look for Warranty

  1. Product page — "Gwarancja" (Warranty) or "Informacje dodatkowe" (Additional info) section
  2. Shop terms of service — search for "gwarancja", "gwarant", "rękojmia"
  3. Warranty card — PDF or description in specs
  4. WebSearch: site:{shop} gwarancja or site:{shop} regulamin

Warranty Classification

IndicatorType
"gwarancja producenta", "producent: [brand]"MANUFACTURER
"gwarancja dystrybutora", distributor name as guarantorDISTRIBUTOR
"gwarantem jest [shop name]", "gwarancja [shop]"SELLER
No informationUNKNOWN

Load references/warranty-guide.md if deeper B2B or statutory warranty analysis is needed.

Shipping Costs

WebFetch the "Dostawa" (Delivery) or "Wysyłka" (Shipping) page for top 10 shops, using the WebFetch with Scrapling Fallback pattern:

WebFetch(shipping_url, "Podaj wszystkie opcje dostawy z cenami:
  kurier, Paczkomat, Poczta Polska, odbiór osobisty, darmowa wysyłka (od jakiej kwoty)")

On blocked response, follow the auto-escalation protocol (HTTP → validate content → Dynamic → Stealthy) and extract delivery options from the scrapling output.

Step 6: Round 4 — B2B and Distributors

Goal

  1. Identify official distributors of the brand in Poland
  2. B2B portals — wholesale prices, business terms
  3. B2B statutory warranty — do shops exclude statutory warranty for businesses

Queries

WebSearch: "{BRAND} dystrybutor Polska"
WebSearch: "{BRAND} importer Polska"
WebSearch: "{BRAND} autoryzowany sprzedawca"
WebSearch: "{PRODUCT}" site:ab.pl OR site:action.pl OR site:also.pl

B2B Statutory Warranty Verification

For top 5 cheapest shops, apply the WebFetch with Scrapling Fallback pattern:

WebFetch(terms_url, "Czy regulamin wyłącza rękojmię dla przedsiębiorców?
  Szukaj: Art. 558 KC, wyłączenie rękojmi, przedsiębiorca, firma")

On blocked response, follow the auto-escalation protocol (HTTP → validate content → Dynamic → Stealthy) and search the scrapling output for statutory warranty exclusion clauses.

Distribution Chain

Establish the chain: Manufacturer → PL Importer → Distributor → Reseller → Customer

For each distributor record:

  • Company name
  • Role (importer / distributor / authorized reseller)
  • Website
  • Service contact details (if available)

Step 7: Round 5 — Final Verification

Goal

Final verification before synthesis. Verification only, no discovering new shops.

Checklist

  1. Re-check top 3 cheapest — WebFetch again, price may have changed
  2. Stock — is the product in stock (not "on order")
  3. Coupons/promotions"{PRODUCT}" kupon zniżka promocja
  4. Alternative offers on Allegro — check 2-3 offers from different sellers
  5. Compare Allegro vs direct shop — price, warranty, safety

Budget

Maximum 6-8 WebFetch in this round.

Step 8: Synthesis

Main Table

Sort by total price (price + cheapest shipping):

# | Shop               | Gross Price | Shipping (cheapest) | Price+Shipping | Mfr. Warranty     | Availability
--+--------------------+-------------+---------------------+----------------+-------------------+------------------
1 | shop.pl            | 489.00 PLN  | InPost courier 12   | 501.00 PLN     | YES — service.pl  | Yes (1987 pcs)
2 | morele.net         | 496.30 PLN  | FREE from 399 PLN   | 496.30 PLN     | YES — "Manufacturer" | Yes (11 pcs)

Warranty Legend

YES  = confirmed manufacturer warranty (verification source)
NO   = seller's own warranty (not manufacturer)
?    = not verified at source
n/a  = no data

Report Sections

  1. TOP 3 — with confirmed manufacturer warranty

- Table: Shop, Price incl. shipping, Warranty, Notes

  1. Full comparison table

- All found shops, sorted by price+shipping

  1. Allegro — offers

- Seller, Price, Manufacturer warranty, Link

  1. Warranty — key findings

- Manufacturer policy (global) - PL Distributor (extended warranty?) - Service center in Poland - Manufacturer vs seller warranty (shop list) - B2B: statutory warranty and its exclusion

  1. Official distributors in Poland

- Table: Company, Role, Website

  1. Product specifications

- Key technical parameters

  1. Purchase recommendation

- For B2C: top 3 with price, warranty, reasoning - For B2B: top 3 considering statutory warranty and manufacturer warranty - What to avoid and why

Confidence Indicators

Label each piece of information:

ConfidenceWhen
[HIGH]Confirmed via WebFetch or scrapling from shop page
[MEDIUM]From Ceneo/comparator or single source
[LOW]From WebSearch snippets only

Step 9: Export

Generate files on user request:

TXT

Fixed-width column file, same format as synthesis tables.

XLSX

Load references/export-formats.md and generate an Excel spreadsheet with:

  • Conditional coloring (green=manufacturer warranty, red=seller)
  • Filters and frozen headers
  • Multiple sheets (comparison, warranty, distributors, specifications)

HTML

Load references/export-formats.md and generate standalone HTML with:

  • Dark theme, embedded CSS
  • Tabs for report sections
  • Colored badges for warranty types
  • Responsive layout

Step 10: Expert Mode

After delivering the report, switch to Expert Mode:

  • Answer questions from collected data
  • No new searches unless user requests
  • Compare offers, advise

New search triggers (exit Expert Mode):

  • "Search again..."
  • "Find more about..."
  • "Update the data..."
  • "Check also..."

Parameters

Always deep mode — 5 rounds, 25-40 shops, 20-30 WebFetch.

ParameterValue
Rounds5
Shops25-40
WebFetch20-30

Constraints (DO/DON'T)

DO:

  • Always start from Ceneo.pl — best price comparator in PL
  • WebFetch to verify prices — search snippets are unreliable
  • Distinguish manufacturer warranty from seller warranty — this is critical
  • Include shipping costs in ranking — price without shipping is incomplete
  • Search for official brand distributors in Poland
  • For B2B: check statutory warranty exclusion in terms of service
  • Run WebSearch in parallel (parallel tool calls)
  • Cite the source of each piece of information (shop URL)
  • Load references/polish-market.md at startup

DON'T:

  • Don't trust snippet prices without WebFetch verification
  • Don't skip shipping costs in comparison
  • Don't assume "24 months warranty" = manufacturer warranty
  • Don't repeat queries from previous rounds
  • Don't discover new shops in Round 5 — verification only
  • Don't quote more than 125 characters from a single source
  • Don't run queries sequentially when they can be parallel

Error Handling

ErrorResolution
WebFetch 403/CAPTCHA/emptyFollow auto-escalation protocol from cli-web-scrape: HTTP tier → validate content → Dynamic tier → Stealthy tier. If scrapling unavailable or all tiers fail, skip shop and label "blocked"
Ceneo returns no resultsSearch directly in shops from polish-market.md
Allegro blocks scrapingUse WebSearch site:allegro.pl, not WebFetch
No price on pageLabel "n/a", skip in ranking
Conflicting prices (snippet vs WebFetch)Always trust WebFetch (or scrapling if WebFetch was blocked)

References

  • references/polish-market.md — Shop and comparator database (loaded ALWAYS)
  • references/warranty-guide.md — Statutory vs voluntary warranty, Polish law, B2B checklist
  • references/export-formats.md — TXT/XLSX/HTML templates with generation instructions

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.59%
按下载量换算108

Claude

28.04%
按下载量换算82

Cursor

18.41%
按下载量换算54

Gemini CLI

8.34%
按下载量换算25

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/molechowski/claude-skills --skill res-price-compare 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills