Hong Kong Supermarket Shopping
PassAudited by ClawScan on May 1, 2026.
Overview
This skill appears to do what it advertises: look up Hong Kong supermarket prices from a public CSV source, with only minor setup and caching notes.
This appears safe for normal use. Be aware that it needs Python, downloads a public pricewatch CSV over HTTPS, and stores short-lived cached data in the skill folder.
Findings (2)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Installation or invocation may depend on Python being available even though the registry metadata does not declare it.
The skill documents a Python runtime requirement, while the registry requirements section says no required binaries. This is an under-declared runtime dependency, but it is purpose-aligned and uses only the standard library.
requirements:\n - command: python3\n description: Python 3.8+ runtime (standard library only; no external binaries required)
Confirm python3 is available and consider updating the registry metadata to declare the runtime requirement.
Using the skill may make a network request to the Consumer Council pricewatch service and cache the downloaded CSV locally.
The tool automatically downloads price data from a fixed external HTTPS source when needed. This is disclosed in the skill documentation and directly supports the price-lookup purpose.
DATA_URL = "https://online-price-watch.consumer.org.hk/opw/opendata/pricewatch_en.csv" ... with urllib.request.urlopen(req, timeout=30) as resp:
Install only if this public data download and local caching behavior matches your expectations.
