← 返回 Skills 市场
tongtanhieu

FUTA Express package tracking skill (VN)

作者 tongtanhieu · GitHub ↗ · v1.0.0
cross-platform ✓ 安全检测通过
865
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install futa-tracker
功能描述
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.
使用说明 (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
安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install futa-tracker
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /futa-tracker 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
Slug futa-tracker
版本 1.0.0
许可证
累计安装 0
当前安装数 0
历史版本数 1
常见问题

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. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 865 次。

如何安装 FUTA Express package tracking skill (VN)?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install futa-tracker」即可一键安装,无需额外配置。

FUTA Express package tracking skill (VN) 是免费的吗?

是的,FUTA Express package tracking skill (VN) 完全免费(开源免费),可自由下载、安装和使用。

FUTA Express package tracking skill (VN) 支持哪些平台?

FUTA Express package tracking skill (VN) 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 FUTA Express package tracking skill (VN)?

由 tongtanhieu(@tongtanhieu)开发并维护,当前版本 v1.0.0。

💬 留言讨论