智能打车

WarnAudited by ClawScan on May 10, 2026.

Overview

This skill claims it can book real rides, but the provided code appears to generate simulated prices, drivers, and orders instead.

Review carefully before installing. This appears more like a demo or simulator than a real car-service integration, despite wording that says it must use real platform APIs. Do not treat its booking confirmations, prices, drivers, or order status as real unless the publisher provides a verified provider integration and explicit confirmation controls.

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 rely on a displayed driver, price, or booking confirmation that was only simulated, potentially missing transportation or making bad travel decisions.

Why it was flagged

The skill promises real platform data and forbids fabricated prices or vehicles, but scripts/car_service_api.py visibly uses mocked data such as “# 司机数据库(模拟)” and “# 这里使用随机值模拟”.

Skill content
必须调用真实用车平台API获取价格和可用车辆
- 禁止自行编造价格或车辆信息
Recommendation

Do not rely on this skill for real ride booking unless it is changed to use a real, authenticated provider API and clearly labels any demo or simulated output.

What this means

If connected to a real provider later, the agent could create or cancel ride orders without a clearly documented confirmation flow.

Why it was flagged

The adapter exposes direct booking, scheduling, and cancellation actions, and the provided artifacts do not show an approval step, payment/account boundary, or final user confirmation before these high-impact actions.

Skill content
"request_ride": lambda **kwargs: car_service.request_ride(...), "schedule_ride": lambda **kwargs: car_service.schedule_ride(...), "cancel_order": lambda **kwargs: car_service.cancel_order(...)
Recommendation

Require explicit user confirmation before any booking or cancellation, show the provider, price, route, timing, and cancellation terms, and separate estimates from order submission.