app/holiday/SKILL.md
When a user asks whether today is a public holiday in mainland China → return holiday status/name.
npx skillsauth add davidkk/vercel-openapi holidayInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
GET /api/holiday. If the user asks about another day, explain this API is today-only and do not invent a date parameter for this path.GET /api/holiday.GET /api/holiday already succeeded in this conversation and the user repeats the same question, reuse the last data (still “today” in the same session).GET /api/holiday.{ code, message, data }.data.isHoliday, data.name (or fields as returned).GET /api/holiday — read-only, latest today status per API semantics.
Envelope: HTTP 200 with { code: 0, message: "ok", data: { … } } (standard success shape).
data.isHoliday (boolean) — whether today is treated as a public holiday for this service.data.name (string) — holiday or special-day name; may be empty when there is no named entry (still a valid 200).Trust HTTP status first, then read data for fields above.
name if present and relevant./api/holiday → answer from data.Single GET; no body; follow Steps.
| Status | Agent behavior |
| ------- | --------------------------------------------------------------------------------------------- |
| 200 | Success — use data.isHoliday / data.name even if name is empty. |
| 500 | Server-side error — report briefly; one retry later is acceptable; do not loop. |
| 4xx | Unusual for this GET — if seen, do not blind retry; relay message from JSON if present. |
tools
When a user asks for weather or short forecast at a latitude/longitude → return current conditions or forecast.
data-ai
When a user asks whether today is a public holiday in mainland China → return holiday status/name.
development
When a user provides China latitude/longitude → reverse geocode to province/city/district.
tools
When a user asks for China Fuel Price by province or a recharge promo → return current/previous prices or promo result.