接送站助手

WarnAudited by ClawScan on May 10, 2026.

Overview

This skill looks like a car-booking assistant, but the provided code simulates prices, drivers, and orders while the user-facing instructions claim it must use a real car-service platform.

Treat this as a demo unless the publisher provides a real verified car-service API integration. Before installing for actual travel, require clear disclosure of whether bookings are real, explicit confirmation before placing or canceling rides, and a safe failure mode when no real provider is connected.

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.

What this means

A user could believe a real ride, airport transfer, or driver assignment was completed when the artifact-backed implementation only creates local mock results.

Why it was flagged

The code openly uses simulated driver data and random distance calculations, which contradicts the SKILL.md requirement to call a real car-service platform API and not invent prices or vehicle information.

Skill content
# 司机数据库(模拟) ... # 实际应该调用地图API ... # 这里使用随机值模拟
Recommendation

Do not rely on this skill for real transportation until it is either clearly labeled as a demo/mock skill or replaced with a real, verified platform integration that fails safely when no real booking occurs.

What this means

If later connected to a real account, the agent could place or cancel rides with cost or travel consequences unless the workflow confirms details first.

Why it was flagged

The adapter exposes ride-request and order-cancellation functions. These are purpose-aligned for a car-service skill, but they are high-impact user actions that should require clear confirmation if connected to a real provider.

Skill content
"request_ride": ... "即时叫车,发起用车请求" ... "cancel_order": ... "取消用车订单"
Recommendation

Require explicit user confirmation of pickup, destination, time, price estimate, cancellation terms, and provider before any real booking or cancellation call.