← Back to Skills Marketplace
sodiasm

Coin Collection Truck 香港收銀車

by sodiasm · GitHub ↗ · v0.1.0 · MIT-0
cross-platform ✓ Security Clean
146
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install coin-collection-truck
Description
Agent skill to search for the Hong Kong Coin Cart (收銀車) locations and schedules. Use this skill when a user asks about the location, schedule, or availabilit...
README (SKILL.md)

Hong Kong Coin Collection Truck (收銀車) Skill

This skill provides the ability to query the official schedule and locations of the Hong Kong Monetary Authority's Coin Collection Fleet (收銀車). The fleet consists of two trucks ("收銀車1號" and "收銀車2號") that travel across different districts in Hong Kong to collect coins from the public.

How to Use This Skill

To answer user queries about the coin truck locations, you must use the provided Python script to query the local database.

The Query Script

Execute the following script using the shell tool:

python3 /home/ubuntu/skills/coin-collection-truck/scripts/query_coin_truck.py [OPTIONS]

Available Arguments

  • --date \x3CDATE>: Query the active locations for a specific date.
    • Accepts today, tomorrow, or an ISO date string YYYY-MM-DD.
    • Example: --date today or --date 2026-03-20
  • --district \x3CDISTRICT>: Filter the results by district name (partial match, Chinese or English).
    • Example: --district 沙田區 or --district "Sha Tin"
  • --truck \x3CTRUCK_NAME>: Filter by a specific truck.
    • Example: --truck 收銀車1號
  • --upcoming: Show the upcoming schedule from a specific date (or today if --date is omitted).
    • Example: --upcoming --days 7 (shows the schedule for the next 7 days)
  • --list-districts: List all available districts in the database.

Handling Natural Language Queries

  1. "Where are the coin trucks today?"
    • Run: python3 /home/ubuntu/skills/coin-collection-truck/scripts/query_coin_truck.py --date today
  2. "When will the coin truck come to Sha Tin?"
    • Run: python3 /home/ubuntu/skills/coin-collection-truck/scripts/query_coin_truck.py --district "Sha Tin"
  3. "What is the schedule for the next 3 days?"
    • Run: python3 /home/ubuntu/skills/coin-collection-truck/scripts/query_coin_truck.py --upcoming --days 3
  4. "Where is truck 1 on March 20th?"
    • Run: python3 /home/ubuntu/skills/coin-collection-truck/scripts/query_coin_truck.py --truck 收銀車1號 --date 2026-03-20

Output Formatting Guidelines

When presenting the results to the user, follow these guidelines:

  1. Be Clear and Concise: Present the information clearly, ideally using bullet points or a small table if there are multiple results.
  2. Include Key Details: Always include the Truck Name, District, Address (Chinese and English), and the Schedule (Start and End dates).
  3. Highlight Suspensions: Pay special attention to the ⚠️ warnings in the script output. If a service is suspended on a specific day, you must mention it clearly to the user.
  4. Provide Maps: Include the Google Maps link provided by the script so the user can easily find the location.
  5. Branding (Optional): If appropriate, you can attach the official logo from /home/ubuntu/skills/coin-collection-truck/assets/logo_with chinese.png when delivering the final result.

Example Response Format

Hong Kong Coin Cart Locations for Today (2026-03-20)

🚌 收銀車1號 (Truck 1) — 元朗區 (Yuen Long)

  • Address: 元朗元朗文化康樂大樓對面路旁停車處(近馬田村口)
  • English Address: Lay-by opposite to Yuen Long Leisure and Cultural Building, Yuen Long
  • Schedule: 3月20日 ~ 3月22日
  • 📍 View on Google Maps

🚌 收銀車2號 (Truck 2) — 沙田區 (Sha Tin)

  • Address: 沙田上禾輋路旁停車處(沙田政府合署外)
  • English Address: Lay-by on Sheung Wo Che Road, Sha Tin
  • Schedule: 3月20日 ~ 3月22日
  • 📍 View on Google Maps
Usage Guidance
This skill appears to do what it says: it queries a bundled JSON schedule with a local Python script and returns human-friendly results. Before installing, consider: 1) The SKILL.md uses an absolute path (/home/ubuntu/...) and references an assets/logo file that is not in the package — verify and adjust paths after installation so the agent can run the script correctly. 2) Review the bundled JSON if you want to confirm data origin and freshness (it appears to be static schedule entries). 3) Because the skill runs a local script via the shell tool, run it in a sandbox or test environment first if you are cautious; the script currently performs only local parsing and printing and does not make network calls or access secrets. 4) If you expect automatic periodic updates, confirm how data will be refreshed — there is no network/update mechanism in the package.
Capability Analysis
Type: OpenClaw Skill Name: coin-collection-truck Version: 0.1.0 The skill bundle is a legitimate utility for querying the Hong Kong Monetary Authority's coin collection truck schedules. The Python script (query_coin_truck.py) safely processes a local JSON database (coin_collection_truck_hk.json) using standard libraries, and the instructions in SKILL.md are strictly aligned with the stated purpose without any signs of prompt injection or malicious intent.
Capability Assessment
Purpose & Capability
The name/description, README, SKILL.md, bundled JSON, and Python script align: the skill provides queries over a local schedule database. Minor incoherences: SKILL.md instructs running the script at an absolute path (/home/ubuntu/skills/coin-collection-truck/...) whereas the repository layout shows a relative scripts/ path; SKILL.md and README reference an assets/logo file that is not present in the provided file manifest. These are implementation/packaging issues rather than indicators of malicious behavior.
Instruction Scope
Runtime instructions direct the agent to run the included Python script (via the shell tool) and to present results. The script reads only the provided local JSON reference file and formats output (including Google Maps links). It does not attempt to read other system files, environment variables, or contact external endpoints (beyond producing hyperlinks). The only scope oddity is the hardcoded absolute path and a suggestion to attach an assets file at /home/ubuntu/..., which could cause a failing lookup or require the agent to access that path if present; the asset file is not provided.
Install Mechanism
No install specification or external downloads are present (instruction-only skill with bundled files). This is the lower-risk case: nothing is written to disk by an installer and no third-party packages are fetched.
Credentials
The skill does not request any environment variables, credentials, or configuration paths. The Python script operates on a local JSON file included in the bundle; no secrets or unrelated credentials are required.
Persistence & Privilege
The skill is not marked always:true and does not request or modify other skills or global agent settings. It has no elevated persistence or privileged behavior.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install coin-collection-truck
  3. After installation, invoke the skill by name or use /coin-collection-truck
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.1.0
coin-collection-truck 0.1.0 — initial release - Provides a skill to query the Hong Kong Coin Collection Truck (收銀車) locations and schedules. - Includes instructions to use a Python script for searching by date, district, or truck. - Supports natural language queries for truck availability and schedules. - Specifies user response formatting, including key details and Google Maps links. - Highlights how to handle service suspensions and optional use of the official logo.
Metadata
Slug coin-collection-truck
Version 0.1.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Coin Collection Truck 香港收銀車?

Agent skill to search for the Hong Kong Coin Cart (收銀車) locations and schedules. Use this skill when a user asks about the location, schedule, or availabilit... It is an AI Agent Skill for Claude Code / OpenClaw, with 146 downloads so far.

How do I install Coin Collection Truck 香港收銀車?

Run "/install coin-collection-truck" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Coin Collection Truck 香港收銀車 free?

Yes, Coin Collection Truck 香港收銀車 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Coin Collection Truck 香港收銀車 support?

Coin Collection Truck 香港收銀車 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Coin Collection Truck 香港收銀車?

It is built and maintained by sodiasm (@sodiasm); the current version is v0.1.0.

💬 Comments