← Back to Skills Marketplace
tongtanhieu

FUTA Express package tracking skill (VN)

by tongtanhieu · GitHub ↗ · v1.0.0
cross-platform ✓ Security Clean
865
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install futa-tracker
Description
Track FUTA Express (Phương Trang) package delivery status using their public API. Use when the user wants to track/tra cứu đơn hàng, kiện hàng from FUTA Express, FUTA Express, or Phương Trang Express. Requires a tracking code (mã vận đơn) to query.
README (SKILL.md)

Futa Tracker

Overview

This skill enables tracking of FUTA Express (Phương Trang) package delivery status via their public API.

API Endpoint

https://api.futaexpress.vn/bo-operation/f1/full-bill-by-code-public/\x3Ctracking_code>

Tracking Workflow

  1. Extract tracking code from user input
  2. Use web_fetch to call the API
  3. Parse the JSON response
  4. Present detailed tracking information
  5. CRITICAL: Keep all values in original Vietnamese - DO NOT translate

Response Structure

Key fields in the response:

  • data.barcode - Mã vận đơn
  • data.from_fullname / data.from_phone - Người gửi
  • data.to_fullname / data.to_phone - Người nhận
  • data.from_department_name - Điểm gửi
  • data.to_department_name - Điểm đến
  • data.service_type_name - Loại dịch vụ
  • data.pay_type - Hình thức thanh toán
  • data.package_total - Số kiện
  • data.totalcost - Tổng chi phí
  • data.addcost - Phụ phí
  • data.status_bill - Trạng thái đơn hàng
  • data.note - Ghi chú
  • data.packages[] - Chi tiết từng kiện hàng
    • package_description - Mô tả hàng
    • receive_fullname / receive_phone / receive_identity - Người nhận thực tế
    • receive_time - Thời gian nhận hàng
    • arrival_time - Thời gian đến nơi
    • go_time - Thời gian xuất phát
    • arrival_note - Ghi chú đến nơi
  • data.services[] - Dịch vụ thêm
    • add_service_name - Tên dịch vụ
    • value - Giá dịch vụ
  • data.trackings[] - Lịch sử (thường trùng với packages data)

Output Format

Present information in this order:

📦 FUTA Express - Tra cứu vận đơn: \x3Cbarcode>

👤 Người gửi: \x3Cfrom_fullname>
   📞 \x3Cfrom_phone>
   🏢 Điểm gửi: \x3Cfrom_department_name>

👤 Người nhận: \x3Cto_fullname>
   📞 \x3Cto_phone>
   🏢 Điểm đến: \x3Cto_department_name>

📋 Thông tin đơn hàng:
   • Loại dịch vụ: \x3Cservice_type_name>
   • Hình thức thanh toán: \x3Cpay_type>
   • Số kiện: \x3Cpackage_total>
   • Tổng chi phí: \x3Ctotalcost>đ (cước chính: \x3Ccost_main>đ + phụ: \x3Caddcost>đ)
   • Trạng thái: \x3Cstatus_bill>

📦 Chi tiết hàng hóa:
   • \x3Cpackages[*].package_description>
   Ghi chú vận chuyển: \x3Cpackages[*].arrival_note>

🔐 Người nhận thực tế (nếu đã giao):
   • Tên: \x3Cpackages[*].receive_fullname>
   • SĐT: \x3Cpackages[*].receive_phone>
   • CMND/CCCD: \x3Cpackages[*].receive_identity>
   • Thời gian nhận: \x3Cpackages[*].receive_time>

📝 Ghi chú đơn hàng: \x3Cnote>

📍 Lịch sử vận chuyển:
| Thời gian | Trạng thái | Chi tiết |
|-----------|------------|----------|
| \x3Ctime> | \x3Cstatus> | \x3Cdetails> |

🛎️ Dịch vụ thêm:
   • \x3Cadd_service_name>: \x3Cvalue>đ

Important Rules

  • NEVER translate Vietnamese values - status names, department names, everything stays in Vietnamese
  • Format currency with periods (e.g., 350.000đ)
  • Hide partial phone/ID info if present (masked with X or shown as is from API)
  • Show timestamps in readable format (YYYY-MM-DD HH:MM)
  • Display all meaningful data from the response

Error Handling

  • If data.bill_id is 0: Tracking code not found
  • If data.packages is empty: No package details available
  • Always show the full response data even if some fields are empty
Usage Guidance
This skill appears to do what it says: it queries a FUTA Express public API and formats the response. Before installing or using it, be aware that the API response can include sensitive personal data (recipient phone numbers and national ID numbers). Consider these precautions: only query tracking codes you are authorized to check; prefer that the skill mask or redact ID/phone values by default (show only last 2–4 digits); require explicit user confirmation before displaying full PII; and verify the API endpoint and TLS certificate if you need to rely on it in production. Also note the skill has no listed homepage or source — if provenance is important, ask the publisher for more information before deploying widely.
Capability Analysis
Type: OpenClaw Skill Name: futa-tracker Version: 1.0.0 The skill is designed to track FUTA Express packages using their public API. All instructions in SKILL.md are directly related to this stated purpose, guiding the agent on API interaction, data parsing, and output formatting. There is no evidence of prompt injection attempting to subvert the agent's behavior for malicious ends, nor any instructions for data exfiltration, unauthorized command execution, or persistence mechanisms. The use of `web_fetch` to `api.futaexpress.vn` is consistent with the skill's function, and instructions like 'Hide partial phone/ID info' are privacy-preserving.
Capability Assessment
Purpose & Capability
Name/description match the SKILL.md: it calls a public FUTA Express API endpoint to fetch tracking info and formats the response. There are no unrelated environment variables, binaries, or install steps requested.
Instruction Scope
Instructions stay within tracking scope (extract tracking code, call API, parse JSON, present fields). However the skill mandates showing full response data and may display sensitive recipient PII (phone numbers, ID numbers) returned by the API. The guidance to 'always show the full response' and the explicit inclusion of receive_identity/receive_phone increases privacy exposure; consider limiting or masking by default.
Install Mechanism
Instruction-only skill with no install spec and no code files — lowest-risk install footprint. The runtime uses a web_fetch call as expected.
Credentials
No environment variables, credentials, or config paths are requested. Requested data (tracking code) is appropriate for the purpose. The only proportionality concern is data returned by the API (third-party PII) but that is a function of the API response, not extra credentials requested by the skill.
Persistence & Privilege
Skill does not request always:true or system-wide configuration changes. It is user-invocable and can be invoked autonomously (platform default), which is normal for skills.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install futa-tracker
  3. After installation, invoke the skill by name or use /futa-tracker
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
FUTA Express package tracking skill initial release. - Enables tracking of FUTA Express (Phương Trang) deliveries using their public API. - Extracts tracking code from user input and provides detailed配送 status, sender/receiver info, fees, and shipment history. - Presents all response data in Vietnamese, preserving original wording and formats. - Includes clear error handling for missing or invalid tracking codes. - Displays results in a structured, user-friendly format with support for multiple packages and service details.
Metadata
Slug futa-tracker
Version 1.0.0
License
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is FUTA Express package tracking skill (VN)?

Track FUTA Express (Phương Trang) package delivery status using their public API. Use when the user wants to track/tra cứu đơn hàng, kiện hàng from FUTA Express, FUTA Express, or Phương Trang Express. Requires a tracking code (mã vận đơn) to query. It is an AI Agent Skill for Claude Code / OpenClaw, with 865 downloads so far.

How do I install FUTA Express package tracking skill (VN)?

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

Is FUTA Express package tracking skill (VN) free?

Yes, FUTA Express package tracking skill (VN) is completely free (open-source). You can download, install and use it at no cost.

Which platforms does FUTA Express package tracking skill (VN) support?

FUTA Express package tracking skill (VN) is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created FUTA Express package tracking skill (VN)?

It is built and maintained by tongtanhieu (@tongtanhieu); the current version is v1.0.0.

💬 Comments